Linux系統下安裝Mysql資料庫

2021-08-19 13:38:34 字數 2082 閱讀 8579

大概就下面幾個步驟:

1.掛載磁碟

說明已經掛載了

2. 安裝mysql

yum install mysql-server -y

3. 啟動mysql服務

service mysqld start

4. 驗證是否安裝成功

[root@node01 ~]# mysql

welcome to the mysql monitor.  commands end with ; or \g.

your mysql connection id is 2

server version: 5.1.73 source distribution

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mysql>

5.檢視當前資料庫

mysql> show databases

| database           |

| information_schema |

| mysql              |

| test               |

3 rows in set (0.00 sec)

6. 給資料庫設定許可權(為什麼?因為可能mysql單獨在乙個節點上,其他節點需要訪問mysql,就必須設定許可權)

在這裡看到預設的許可權資訊,密碼全部都是空,host都是本機,使用者名為root。這也就是為什麼剛才直接敲mysql就可以登入資料庫的原因了,這種許可權很明顯是不行的,很容易遭到破壞。

設定許可權:

grant all privileges on *.* to 'root'@'%' identified by '123' with grant option;

flush privileges;

7.這個時候再去看user表,發現多了一條許可權,然後把之前的許可權刪除即可。

不這樣做會報錯:

8. 檢驗許可權

退出mysql,後再敲mysql:

發現已經有許可權問題了。

[root@hadoop01 ~]#mysql -u root -p

enter password:

welcome to the mysql monitor.  commands end with ; or \g.

your mysql connection id is 4

server version: 5.1.73 source distribution

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mysql> 

Linux系統下安裝Mysql

這裡我們來演示命令安裝 第二步 輸入指令 1.sudo apt get update 之前安裝程式,要先更新資源庫第三步 mysql uroot p 測試進行命令登入 show databases 展示資料 use mysql 顯示user select user,host from user 第四...

linux系統下mysql安裝

安裝yum倉庫 安裝mysql伺服器 yum y install mysql community server 啟動mysql伺服器 systemctl start mysqld.service 檢視mysql伺服器裝態 檢視mysql設定的密碼 grep password var log mysq...

linux系統下安裝mysql

linux系統下安裝mysql 一.安裝裝包 1.mysql client 5.6.5 m8 1.linux2.6.i386.rpm 2.mysql server 5.6.5 m8 1.linux2.6.i386.rpm 二.開始安裝 1 安裝伺服器端 在有兩個rmp檔案的目錄下執行如下命令 roo...