溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Linux系統(tǒng)中mysql數(shù)據(jù)庫(kù)服務(wù)的示例分析

發(fā)布時(shí)間:2021-06-15 15:21:03 來(lái)源:億速云 閱讀:163 作者:小新 欄目:大數(shù)據(jù)

這篇文章將為大家詳細(xì)講解有關(guān)Linux系統(tǒng)中mysql數(shù)據(jù)庫(kù)服務(wù)的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

首先是安裝

CentOS7 安裝mysql(YUM源方式)1.下載mysql源安裝包$ wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm2.安裝mysql源$ yum localinstall mysql57-community-release-el7-8.noarch.rpm 


3.檢查mysql源是否安裝成功$ yum repolist enabled | grep "mysql.*-community.*"4.修改yum源 【可跳過】

$ vim /etc/yum.repos.d/mysql-community.repo

改變默認(rèn)安裝的mysql版本。比如要安裝5.6版本,將5.7源的enabled=1改成enabled=0。然后再將5.6源的enabled=0改成enabled=1即可。

備注:enabled=1表示即將要安裝的mysql版本,這個(gè)文件也可以不修改,默認(rèn)安裝mysql最高版本5.安裝MySQL 這一步才是真正安裝mysql

$ yum install mysql-community-server6.啟動(dòng)MySQL服務(wù)并設(shè)置開機(jī)啟動(dòng)$ systemctl start mysqld

$ systemctl enable mysqld

$ systemctl daemon-reload7.端口開放$ firewall-cmd --zone=public --add-port=3306/tcp --permanent

$ firewall-cmd --reload8.修改root本地登錄密碼
 注意 如果安裝的是5.6版本,默認(rèn)密碼為空?。。。。。。。。。。。?

 1)查看mysql密碼

$ grep 'temporary password' /var/log/mysqld.log2)連接mysql

$ mysql -uroot -p

3)修改密碼【注意:后面的分號(hào)一定要跟上】

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';

或者:

mysql> set password for 'root'@'localhost'=password('MyNewPass4!'); 


mysql> show variables like '%password%';安裝成功之后  需要設(shè)置 一下host 才可以遠(yuǎn)程訪問

-----選擇mysql庫(kù)
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
-----查詢host
mysql> select host from user;
+-----------+
| host      |
+-----------+
| %         |
| 127.0.0.1 |
| ::1       |
| localhost |
| monkey    |
| monkey    |
+-----------+
6 rows in set (0.00 sec)
-------更新 host 為 通用
mysql> update user set host '%' where user ='root';
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''%' where user ='root'' at line 1
mysql> quit
Bye
-------重啟服務(wù)
[root@monkey /]# service mysqld restart
Redirecting to /bin/systemctl restart mysqld.service

關(guān)于“Linux系統(tǒng)中mysql數(shù)據(jù)庫(kù)服務(wù)的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI