欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ubuntu 16.04下mysql5.7.17開(kāi)放遠(yuǎn)程3306端口

 更新時(shí)間:2017年01月21日 09:50:52   作者:_supernatural  
這篇文章主要介紹了ubuntu 16.04下mysql5.7.17開(kāi)放遠(yuǎn)程3306端口的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

開(kāi)啟MySQL的遠(yuǎn)程訪(fǎng)問(wèn)權(quán)限

默認(rèn)mysql的用戶(hù)是沒(méi)有遠(yuǎn)程訪(fǎng)問(wèn)的權(quán)限的,因此當(dāng)程序跟數(shù)據(jù)庫(kù)不在同一臺(tái)服務(wù)器上時(shí),我們需要開(kāi)啟mysql的遠(yuǎn)程訪(fǎng)問(wèn)權(quán)限。

主流的有兩種方法,改表法和授權(quán)法。

相對(duì)而言,改表法比較容易一點(diǎn),個(gè)人也是比較傾向于使用這種方法,因此,這里只貼出改表法

1、登陸mysql

mysql -u root -p 

2、修改mysql庫(kù)的user表,將host項(xiàng),從localhost改為%。%這里表示的是允許任意host訪(fǎng)問(wèn),如果只允許某一個(gè)ip訪(fǎng)問(wèn),則可改為相應(yīng)的ip,比如可以將localhost改為192.168.1.123,這表示只允許局域網(wǎng)的192.168.1.123這個(gè)ip遠(yuǎn)程訪(fǎng)問(wèn)mysql。

mysql> use mysql; 
mysql> select host,user form user; 
mysql>update user set host = '%' where user ='root'; 
mysql>select host,user from user; 
mysql> flush privileges; 
mysql> quit; 

首先查看端口是否打開(kāi) netstat -an|grep 3306

打開(kāi)mysql配置文件vim /etc/mysql/mysql.conf.d/mysqld.cnf
將bind-address = 127.0.0.1注銷(xiāo)​
重啟動(dòng)ubuntu
再次查看端口是否打開(kāi) netstat -an|grep 3306

================================

將root用戶(hù)授權(quán)給所以連接:grant all privileges on *.* to 'root'@'%' identified by 'xxxxxx';
最后一個(gè)為mysql密碼​
讓權(quán)限立即生效:flush privileges;​

到此所以操作完成,可以在任何主機(jī)連接此mysql數(shù)據(jù)庫(kù)服務(wù)器了。

MySQL遠(yuǎn)程連接不上的解決:http://www.dbjr.com.cn/article/103770.htm

Centos7.1防火墻開(kāi)放端口:http://www.dbjr.com.cn/article/103777.htm

CentOS 7開(kāi)放端口:http://www.dbjr.com.cn/article/103773.htm

ubuntu 15.04 mysql開(kāi)放遠(yuǎn)程3306端口http://www.dbjr.com.cn/article/103784.htm

http://www.dbjr.com.cn/article/103766.htm

root@3bc476b7e0d5:~# vim /etc/mysql/mysql.conf.d/mysqld.cnf 
root@3bc476b7e0d5:~# netstat -an | grep 3306 
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 

root@3bc476b7e0d5:/# service mysql enable 
Usage: /etc/init.d/mysql start|stop|restart|reload|force-reload|status 
root@3bc476b7e0d5:/# netstat -an | grep 3306 
tcp6 0 0 :::3306 :::* LISTEN 
root@3bc476b7e0d5:/# mysql --version 
mysql Ver 14.14 Distrib 5.7.16, for Linux (x86_64) using EditLine wrapper 
root@3bc476b7e0d5:/# 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.7.16-0ubuntu0.16.04.1 (Ubuntu) 
 
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. 
 
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> show databases; 
+--------------------+ 
| Database | 
+--------------------+ 
| information_schema | 
| fabric | 
| mysql | 
| performance_schema | 
| sys | 
+--------------------+ 
5 rows in set (0.02 sec) 

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論