防偽碼:沒有相當(dāng)程度的孤獨(dú)是不可能有內(nèi)心的平和。
10年積累的成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有林芝免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
【現(xiàn)象】
MySQL.sock被刪除,導(dǎo)致無法連接數(shù)據(jù)庫。
[root@MySQL-01 ~]#mysql -uroot -p Enter password: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
提示無法通過mysql.sock連接MySQL server。
【解決】
方案一:重啟數(shù)據(jù)庫會(huì)重新創(chuàng)建mysql.sock。
方案二:若暫時(shí)無法重啟數(shù)據(jù)庫,可以通過TCP協(xié)議連接數(shù)據(jù)庫。
MySQL默認(rèn)使用的是UNIX套接字文件連接,而不是TCP/IP從。MySQL4.1開始,可以用--protocol=TCP|SOCKETPIPE|MEMORY指定選項(xiàng)連接數(shù)據(jù)庫。
[root@MySQL-01 ~]#mysql -uroot -p --protocol=TCP Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 16127 Server version: 5.6.36-log MySQL Community Server (GPL) Copyright (c) 2000, 2017, 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>