程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> ubuntu 16.04下mysql5.7.17開放近程3306端口

ubuntu 16.04下mysql5.7.17開放近程3306端口

編輯:MySQL綜合教程

ubuntu 16.04下mysql5.7.17開放近程3306端口。本站提示廣大學習愛好者:(ubuntu 16.04下mysql5.7.17開放近程3306端口)文章只能為提供參考,不一定能成為您想要的結果。以下是ubuntu 16.04下mysql5.7.17開放近程3306端口正文


開啟MySQL的近程訪問權限

默許mysql的用戶是沒有近程訪問的權限的,因而當順序跟數據庫不在同一台服務器上時,我們需求開啟mysql的近程訪問權限。

主流的有兩種辦法,改表法和受權法。

絕對而言,改表法比擬容易一點,團體也是比擬傾向於運用這種辦法,因而,這裡只貼出改表法

1、登陸mysql

mysql -u root -p 

2、修正mysql庫的user表,將host項,從localhost改為%。%這裡表示的是允許恣意host訪問,假如只允許某一個ip訪問,則可改為相應的ip,比方可以將localhost改為192.168.1.123,這表示只允許局域網的192.168.1.123這個ip近程訪問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; 

首先檢查端口能否翻開 netstat -an|grep 3306

翻開mysql配置文件vim /etc/mysql/mysql.conf.d/mysqld.cnf
將bind-address = 127.0.0.1登記​
重啟動ubuntu
再次檢查端口能否翻開 netstat -an|grep 3306

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

將root用戶受權給所以銜接:grant all privileges on *.* to 'root'@'%' identified by 'xxxxxx';
最後一個為mysql密碼​
讓權限立刻失效:flush privileges;​

到此所以操作完成,可以在任何主機銜接此mysql數據庫服務器了。

MySQL近程銜接不上的處理:

Centos7.1防火牆開放端口:

CentOS 7開放端口:

ubuntu 15.04 mysql開放近程3306端口:

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) 

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支持。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved