本地連線時,通過localhost不能登陸到指定的埠
本地連線時,通過localhost不能登陸到指定的埠
朋友說他的一臺伺服器上,裝了多個mysql,用了不同的埠,通過localhost的方式指定埠時,連上的還是3306的埠
mysql -uroot -hlocalhost -P3307 -p
這樣連的是 3306的庫。
但是通過
mysql -uroot -h127.0.0.1 -P3307 -p
連到的是 3307的庫。
這是為什麼
我在我本地一臺伺服器上建了兩個例項, 3306和3308
mysql -uroot -h127.0.0.1 -P3308
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.5.24 Source distribution
Copyright (c) 2000, 2011, 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> select user,host from mysql.user;
+------+------------+
| user | host |
+------+------------+
| root | 10-4-1-104 |
| root | 127.0.0.1 |
| root | ::1 |
| root | localhost |
+------+------------+
mysql -uroot --host=localhost -P3308
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
這種方式,直接就連不上。
檢視了文件 5.6 p264
On Unix, MySQL programs treat the host name localhost specially, in a way that is likely different from
what you expect compared to other network-based programs. For connections to localhost, MySQL
programs attempt to connect to the local server by using a Unix socket file. This occurs even if a --port
or -P option is given to specify a port number. To ensure that the client makes a TCP/IP connection to the
local server, use --host or -h to specify a host name value of 127.0.0.1, or the IP address or name of
the local server. You can also specify the connection protocol explicitly, even for localhost, by using the
--protocol=TCP option.
當使用localhost的時候,會試著用socket檔案,雖然你指定了埠。
指定--protocol=TCP 可以避免這種情況。
在我的環境中:
mysql -uroot -hlocalhost -P3308 --protocol=TCP
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.5.24 Source distribution
Copyright (c) 2000, 2011, 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 variables like '%port%'
-> ;
+---------------------+-------+
| Variable_name | Value |
+---------------------+-------+
| innodb_support_xa | ON |
| large_files_support | ON |
| port | 3308 |
| report_host | |
| report_password | |
| report_port | 3308 |
| report_user | |
+---------------------+-------+
告訴朋友,讓他加上 --protocol=TCP 之後,也可以正常的連線到想連線的埠
總結:在本地使用localhost登陸庫時,如果需要連線到別的埠需要 加上--protocol=TCP
轉載請註明源出處
QQ 273002188 歡迎一起學習
QQ 群 236941212
QQ 273002188 歡迎一起學習
QQ 群 236941212
oracle,mysql,mongo 相互交流
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25099483/viewspace-1821035/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- nginx 怎麼通過域名訪問8080埠(指定埠)Nginx
- 通過session模擬登陸Session
- java本地連線遠端Hbase可是返回zookeeper的地址是localhostJavalocalhost
- 網頁訪問Localhost本地埠的趕快升級啦網頁localhost
- 如何通過隧道將本地主機連線到公共網際網路上 - Vlad Mihalcea
- grid監聽故障,本地地址不能連線
- 樹莓派已經通過網路連線通過串列埠通訊在串列埠除錯小助手列印與操作樹莓派串列埠除錯
- 怎樣通過驅動程式連線到access
- 通過本地直接連線linux伺服器的mysql資料庫Linux伺服器MySql資料庫
- 使用telnet測試指定埠的連通性
- 求助:關於通過電腦控制安卓手機 連線指定 WIFI安卓WiFi
- EOSCleos連線到非預設主機/埠
- mysql使用者本地登入localhost和127.0.0.1區別MySqllocalhost127.0.0.1
- MYSQL 連線登入過程分析MySql
- MySQL login-path 本地快捷登陸MySql
- Laravel 通過 ODBC 連線 VerticaLaravel
- 通過跳板機連線MySQLMySql
- [Oracle-> MySQL] Oracle通過dblink連線MySQL--Oracle 19c連線到MySQL 5.7OracleMySql
- git 登陸時注意Git
- ssh設定使用者從指定的IP登陸
- 如何通過Python暴力破解網站登陸密碼Python網站密碼
- win10 onedirve onnote不能登陸怎麼解決_win10 onedirve onnote不能登陸修復方法Win10
- Linux 伺服器使用 SSH 連線 實現免登陸Linux伺服器
- 通過驅動建立與MySQL的連線MySql
- 登陸框select繞過
- [提問交流]本地正常 上傳到伺服器後無法登陸伺服器
- linux伺服器本機不能登陸的解決Linux伺服器
- Ubuntu SSH 使用指定私鑰登陸伺服器Ubuntu伺服器
- centos7 遠端連線mongodb時,27017埠連線不上的解決辦法CentOSMongoDB
- 通過串列埠進行通訊 :串列埠
- 通過堡壘機透明連線到雲中任意內網主機內網
- 通過 VGA 介面連線顯示器時解析度不正確
- TCP連線時動態埠的相關問題說明TCP
- Linux下如何通過命令連線wifiLinuxWiFi
- win10系統如何通過登錄檔關閉135埠_win10利用登錄檔關閉135埠的方法Win10
- IDEA 總是提示登入github,登陸後不能push的解決辦法IdeaGithub
- FTP資料埠連線FTP
- 1.6.3.3. 本地連線和安全的遠端連線
- 連線sql server時,不能使用127.0.0.1的解決辦法SQLServer127.0.0.1