linux---mysql遠程訪問

一、遠程鏈接上Linux系統,確保Linux系統已經安裝上了MySQL數據庫。html

登錄數據庫。mysql -uroot -p(密碼)。mysql

二、建立用戶用來遠程鏈接sql

GRANT ALL PRIVILEGES ON *.* TO 'itoffice'@'%' IDENTIFIED BY 'itoffice' WITH GRANT OPTION;數據庫

(第一個itoffice表示用戶名,%表示全部的電腦均可以鏈接,也能夠設置某個ip地址運行鏈接,第二個itoffice表示密碼)。vim

三、執行 flush privileges;windows

命令當即生效spa

四、查詢數據庫的用戶(看到以下內容表示建立新用戶成功了)日誌

 SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query FROM mysql.user;htm

五、使用exit命令退出MySQLblog

而後打開vim  /etc/mysql/my.cnf

將bind-address    = 127.0.0.1

 設置成bind-address    = 0.0.0.0(設備地址)

從新啓動(命令以下):

/etc/init.d/mysql stop

/etc/init.d/mysql start

六、查看端口號

 show global variables like 'port';  

七、若是以上步驟仍是不能夠,那麼可能系統有防火牆存在,能夠參照「iptables」相關的文章,將3306端口開放給外網。

好比這一篇:《http://www.cnblogs.com/JemBai/archive/2009/03/19/1416364.html》

windows版本:

一、使用mysql默認安裝的控制檯客戶端登陸;

二、輸入如下命令:

use mysql;

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;

 八、啓用查詢語句日誌記錄

show variables where Variable_name="general_log";

set global general_log=on;

show global variables like 'general_log_file';   

相關文章
相關標籤/搜索