Ubuntu Mysql開通外網訪問許可權

2022-01-23 07:17:27 字數 1356 閱讀 8912

sudo vi /etc/mysql/my.cnf

2、將繫結位址行注釋掉或者修改為指定 ip

#bind-address = 127.0.0.1

3、登入 mysql:

mysql -uroot -p密碼

4、新增 root 使用者訪問許可權

grant all privileges on *.* to 'root'@'%' identified by '密碼';

flush privileges;

5、檢視 user 許可權,成功修改許可權為 %:

select host,user from mysql.user;

+------------+----------------+

| host         | user             |

+------------+----------------+

| %             | root             |

| 127.0.0.1 | root             |

| localhost  | root             |

+------------+----------------+

6、重啟 mysql:

sudo /etc/init.d/mysql restart

分類: 資料庫

sudo vi /etc/mysql/my.cnf

2、將繫結位址行注釋掉或者修改為指定 ip

#bind-address = 127.0.0.1

3、登入 mysql:

mysql -uroot -p密碼

4、新增 root 使用者訪問許可權

grant all privileges on *.* to 'root'@'%' identified by '密碼';

flush privileges;

5、檢視 user 許可權,成功修改許可權為 %:

select host,user from mysql.user;

+------------+----------------+

| host         | user             |

+------------+----------------+

| %             | root             |

| 127.0.0.1 | root             |

| localhost  | root             |

+------------+----------------+

6、重啟 mysql:

sudo /etc/init.d/mysql restart

ubuntu mysql 安裝和外網訪問配置

1.輸入 sudo apt get install mysql server 安裝過程中會讓你輸入密碼,這個密碼是root的密碼。安裝完畢後,就可以正常使用了,如果你需要外網使用者能夠連線繼續下面的步驟。2.在終端輸入mysql u root p 回車 輸入您的密碼 回車 進入mysql 輸入use...

ubuntu MySQL安裝指南

安裝 mysql,可以在終端提示符後執行下列命令 sudo apt get install mysql server sudo apt get install mysql client sudo apt get install php5 mysql 安裝php5 mysql 是將php和mysql連...

ubuntu MySQL安裝指南

要安裝 mysql,可以在終端提示符後執行下列命令 sudo apt get install mysql server sudo apt get install mysql client sudo apt get install php5 mysql 安裝php5 mysql 是將php和mysql...