mysql更改資料目錄步驟與錯誤(ERROR 2002 (HY000))處理方法

來源:互聯網
上載者:User

標籤:error 2002 hy000   mysql更改資料目錄   mysql   資料目錄變更   

1,關閉mysql服務:

service mysqld stop

2,建立建立的目錄
mkdir -p data

3,把以前的目錄轉移到新的資料目錄


mv /var/lib/mysql/ /data/

4,編輯my.cnf

vi /etc/my.cnf

修改其中的datadir和socket到新的路徑

[mysqld]
datadir=/data/mysql
socket=/data/mysql/mysql.sock

5、修改MySQL啟動指令碼/etc/init.d/mysql
最後,需要修改MySQL啟動指令碼/etc/init.d/mysql,把其中datadir=/var/lib/mysql一行中,等號右邊的路徑改成你現在的實際存放路徑:/data/mysql

本以為修改完啟動mysql服務之後就沒問題了。

service mysqld start
/etc/init.d/mysql start
但是儘管啟動服務沒有問題,但是通過mysql用戶端串連的時候卻報錯:

[[email protected] data]# mysql -u root -p
Enter password:
ERROR 2002 (HY000): Can‘t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock‘ (2)



提示說無法通過socket檔案/var/lib/mysql/mysql.sock串連到mysql伺服器,也就是說對於mysql程式來說,儘管我把socket檔案從/var/lib/mysql/mysql.sock轉移到了/data/mysql/mysql.sock我在my.cnf裡指定了mysqld知道了,但是對於mysql還是會從預設的安裝目錄/var/lib/mysql/裡找這個mysql.sock檔案,找不著,就不知道從哪裡啟動了。

解決辦法一:

ln –s /data/mysql/mysql.sock /var/lib/mysql/

做完軟串連,重啟mysql服務,再次通過mysql程式串連,沒有問題,可以連上了。

[[email protected] lib]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.0.77 Source distribution

Copyright (c) 2000, 2013, 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>


那說明就是這裡的問題了。


方法二:其實不做軟連結也是可以的,只需要在/etc/my.cnf裡添加[mysql]欄位指定socket的位置到我們轉移後的位置即可

[mysql]
socket=/data/mysql/mysql.sock

方法三:修改許可權

chown -R mysql:mysql /data/mysql/
chmod 660 /data/mysql/test/*

以上幾種方法經過實驗還是切實可行的,希望對大家更改目錄有協助。





mysql更改資料目錄步驟與錯誤(ERROR 2002 (HY000))處理方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.