91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Ubuntu中如何安裝JDK與Mysql

發布時間:2022-10-26 10:24:33 來源:億速云 閱讀:131 作者:iii 欄目:服務器

這篇文章主要介紹“Ubuntu中如何安裝JDK與Mysql”,在日常操作中,相信很多人在Ubuntu中如何安裝JDK與Mysql問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Ubuntu中如何安裝JDK與Mysql”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一、安裝jdk

step1.下載oraclejdk
step2. 解壓
step3. 加入環境變量

具體操作如下:

lemon@ubuntu:~$ cd ~/download/
lemon@ubuntu:~/download$ wget https://download.oracle.com/otn-pub/java/jdk/13.0.2+8/d4173c853231432d94f001e99d882ca7/jdk-13.0.2_linux-x64_bin.tar.gz

lemon@ubuntu:~/download$ tar vxf jdk-8u191-linux-x64.tar.gz
lemon@ubuntu:~/download$ ls #查看當前目錄下的文件
jdk1.8.0_191 jdk-8u191-linux-x64.tar.gz
lemon@ubuntu:~/download$ sudo mv jdk1.8.0_191/ /usr/local/jdk1.8/ #將jdk1.8.0_191文件夾移動到/usr/local/下并重命名為jdk1.8
lemon@ubuntu:~/download$ sudo vim /etc/profile #編輯環境變量

在環境變量末尾加入如下內容:

export java_home=/usr/local/jdk1.8
export jre_home=${java_home}/jre
export classpath=.:${java_home}/lib:${jre_home}/lib
export path=.:${java_home}/bin:$path

保存后重新加載環境變量,使生效:

lemon@ubuntu:~/download$ source /etc/profile #刷新環境變量,使生效
lemon@ubuntu:~$ java -version#輸入java -version,如顯示以下信息,則jdk安裝成功
java version "1.8.0_191"
java(tm) se runtime environment (build 1.8.0_191-b12)
java hotspot(tm) 64-bit server vm (build 25.191-b12, mixed mode)

二、安裝mysql

step1. 安裝mysql并配置
step2. 創建數據庫與表

由于在安裝ubuntu系統時,本人選擇了安裝lamp服務,所以mysql已安裝完成,僅需設置即可啟用。

測試是否安裝:

lemon@ubuntu:~$ mysql #輸入mysql,如出現以下提示,說明已安裝mysql
error 1045 (28000): access denied for user 'lemon'@'localhost' (using password: no)

如未安裝:

lemon@ubuntu:~$ sudo apt-get install mysql-server
lemon@ubuntu:~$sudo apt isntall mysql-client
lemon@ubuntu:~$sudo apt install libmysqlclient-dev

如已安裝:

lemon@ubuntu:~$ sudo mysql_secure_installation

兩者都會進入mysql設置過程,具體設置內容如下:

#1
validate password plugin can be used to test passwords...
press y|y for yes, any other key for no: n(不啟用弱密碼檢查)

#2
please set the password for root here...
new password: (設置root密碼)
re-enter new password: (重復輸入)

#3
by default, a mysql installation has an anonymous user,
allowing anyone to log into mysql without having to have
a user account created for them...
remove anonymous users? (press y|y for yes, any other key for no) : y(不啟用匿名用戶)

#4
normally, root should only be allowed to connect from
'localhost'. this ensures that someone cannot guess at
the root password from the network...
disallow root login remotely? (press y|y for yes, any other key for no) : y (不允許root遠程登陸)

#5
by default, mysql comes with a database named 'test' that
anyone can access...
remove test database and access to it? (press y|y for yes, any other key for no) : n

#6
reloading the privilege tables will ensure that all changes
made so far will take effect immediately.
reload privilege tables now? (press y|y for yes, any other key for no) : y (立刻刷新權限表)

all done!

接下來進入進入mysql進行操作:

#最新版的mysql安裝之后無法使用密碼進行登陸,需要sudo登錄修改登錄方式
lemon@ubuntu:~$ sudo mysql -uroot -p
enter password: (空密碼)
mysql>
mysql>update mysql.user set authentication_string=password('lemon'), plugin='mysql_native_password' where user='root';
mysql> flush privileges;
mysql>exit

lemon@ubuntu:~$ sudo service mysql restart
lemon@ubuntu:~$ mysql -u root -p
enter password: (上一步設置的密碼,password括號內的)
mysql>create database nutch;
mysql>use nutch
mysql> create table `webpage` (
`id` varchar(767) not null,
`headers` blob,
`text` mediumtext default null,
`status` int(11) default null,
`markers` blob,
`parsestatus` blob,
`modifiedtime` bigint(20) default null,
`score` float default null,
`typ` varchar(32) character set latin1 default null,
`baseurl` varchar(767) default null,
`content` longblob,
`title` varchar(2048) default null,
`reprurl` varchar(767) default null,
`fetchinterval` int(11) default null,
`prevfetchtime` bigint(20) default null,
`inlinks` mediumblob,
`prevsignature` blob,
`outlinks` mediumblob,
`fetchtime` bigint(20) default null,
`retriessincefetch` int(11) default null,
`protocolstatus` blob,
`signature` blob,
`metadata` blob,
`batchid`varchar(767)default null,
primary key (`id`)
) engine=innodb
row_format=compressed
default charset=utf8mb4;
mysql>exit

*最新版本默認情況下,mysql是不允許遠程登錄的,如需遠程訪問需要做一些修改:

lemon@ubuntu:~$sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
#將bind-address = 127.0.0.1注釋掉,重啟mysql服務
lemon@ubuntu:~$sudo service mysqld start

接下來就可以通過navicat等軟件,在其他計算機訪問數據庫了。

Ubuntu中如何安裝JDK與Mysql

到此,關于“Ubuntu中如何安裝JDK與Mysql”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嘉鱼县| 静宁县| 合川市| 平和县| 台安县| 丰都县| 饶平县| 大邑县| 马山县| 黑龙江省| 富阳市| 昌平区| 泸定县| 龙南县| 井陉县| 商河县| 襄垣县| 乐平市| 类乌齐县| 威海市| 贡觉县| 南陵县| 长武县| 房产| 建德市| 南京市| 团风县| 六安市| 胶南市| 连城县| 德惠市| 介休市| 乌兰县| 剑阁县| 黄石市| 宝清县| 正宁县| 池州市| 托克逊县| 都江堰市| 鄱阳县|