linux下允許外部ip訪問你到mysql資料庫

2021-12-30 08:48:06 字數 466 閱讀 5864

linux下允許外部ip訪問你到mysql資料庫

1:設定mysql 的配置檔案

/etc/mysql/my.cnf

找到 bind-address  =127.0.0.1  將其注釋掉;//作用是使得不再只允許本地訪問;

重啟mysql:/etc/init.d/mysql restart;  www.2cto.com  

2:進入mysql 資料庫

mysql -u  root -p

mysql>grand all privileges on  *.*  to root@'%'  identifies  by ' ***x';

其中 第乙個*表示資料庫名;第二個*表示該資料庫的表名;如果像上面那樣 *.*的話表示所有到資料庫下到所有表都允許訪問;  www.2cto.com  

後面到『***x』為root 使用者的password;  

作者 xc635960736

linux下允許外部ip訪問mysql資料庫

1.首先通過telnet檢測防火牆是否已關閉。2.設定mysql 的配置檔案 etc mysql my.cnf 找到 bind address 127.0.0.1 將其注釋掉 不再只允許本地訪問 重啟mysql etc init.d mysql restart 3.使所有使用者都能使用root連線到...

mysql允許外部IP訪問

預設情況下linux內的mysql資料庫mysql,user表內的使用者許可權只是對localhost即本機才能登陸。需要更改許可權 mysql grant all privileges on to root identified by password with grant option 表示是所...

MySQL允許外部訪問

進入mysql資料庫 use mysql 更新域屬性,表示允許外部訪問 update user set host where user root 注意,這裡可以select檢視一下user root 的主機都有那些,如果有localhost以及127.0.0.1的話,最好delete掉,只保留主機為...