天天看點

MySQL中的pid與socket是什麼?

前言:

不知道你有沒有注意過,MySQL 啟動時需要配置 pid 及 socket 檔案路徑。偶爾還會出現因 pid 檔案找不到而啟動失敗的現象,那麼 pid 與 socket 檔案究竟是幹什麼用的呢?我們一起來看下本篇文章。

1.pid-file介紹

MySQL 中的 pid 檔案記錄的是目前 mysqld 程序的 pid ,pid 亦即 Process ID 。可以通過 pid-file 參數來配置 pid 檔案路徑及檔案名,如果未指定此變量,則 pid 檔案預設名為 host_name.pid ,存放的路徑預設放在 MySQL 的資料目錄。

建議指定 pid 檔案名及路徑,pid 目錄權限要對 mysql 系統使用者放開,具體配置可參考如下:

  1. # my.cnf 配置檔案

  2. [mysqld]

  3. pid-file = /data/mysql/tmp/mysqld.pid

  4. # 檢視mysqld程序

  5. [root@localhost ~]# ps -ef|grep mysqld

  6. root 8670 1 0 Jun09 ? 00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/data/mysql/data --pid-file=/data/mysql/tmp/mysqld.pid

  7. mysql 9353 8670 0 Jun09 ? 00:01:23 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/data/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/data/mysql/logs/error.log --pid-file=/data/mysql/tmp/mysqld.pid --socket=/data/mysql/tmp/mysql.sock

  8. # 檢視pid檔案内容

  9. [root@localhost ~]# cat /data/mysql/tmp/mysqld.pid

  10. 9353

可以看到 pid 檔案内容隻有一行,記錄了 mysqld 程序的 ID 。mysqld 程序啟動後會通過 create_pid_file 函數建立 pid 檔案,通過 getpid() 擷取目前程序号并将程序 ID 寫入 pid 檔案。 程序運作後會給 pid 檔案加一個檔案鎖,隻有獲得 pid 檔案寫入權限的程序才能正常啟動并把自身的 PID 寫入該檔案中,其它同一個程式的多餘程序則自動退出。是以 pid 檔案的作用是防止啟動多個程序副本。

有時候可能會遇到因 pid 檔案問題而啟動失敗的情況,這幾類報錯你可能遇到過:

  • Can‘t start server: can‘t create PID file: No such file or directory
  • ERROR! MySQL server PID file could not be found
  • ERROR! The server quit without updating PID file

上面幾類 pid 相關報錯解決方法其實都是類似的,首先要看下 error log 找到具體報錯,然後檢視配置檔案,確定 pid 檔案目錄路徑正确且有權限有空間,之後可以看下 mysqld 程序是否存在,若存在可手動 kill 掉,若有殘留的 pid 檔案也可以先删掉,一切排查就緒後,再次重新啟動,一般即可成功。

2.socket檔案介紹

socket 即 Unix 套接字檔案,在類 unix 平台,用戶端連接配接 MySQL 服務端的方式有兩種,分别是 TCP/IP 方式與 socket 套接字檔案方式。 Unix 套接字檔案連接配接的速度比 TCP/IP 快,但是隻能連接配接到同一台計算機上的伺服器使用。

通過設定 socket 變量可配置套接字檔案路徑及名稱,預設值為 /tmp/mysql.sock (對于某些發行格式,目錄可能有所不同)。參考配置如下:

  1. # my.cnf 配置檔案

  2. [mysqld]

  3. socket = /data/mysql/tmp/mysql.sock

  4. [client]

  5. socket = /data/mysql/tmp/mysql.sock

  6. # 檢視對應目錄下的socket檔案

  7. root@localhost tmp]# ls -lh

  8. total 8.0K

  9. srwxrwxrwx 1 mysql mysql 0 Jun 10 15:19 mysql.sock

  10. -rw------- 1 mysql mysql 6 Jun 10 15:19 mysql.sock.lock

  11. # 通過 -S 指令指定socket登入

  12. [root@localhost ~]# mysql -uroot -pxxxx -S /data/mysql/tmp/mysql.sock

  13. mysql: [Warning] Using a password on the command line interface can be insecure.

  14. Welcome to the MySQL monitor. Commands end with ; or \g.

  15. Your MySQL connection id is 12

  16. Server version: 8.0.22 MySQL Community Server - GPL

  17. Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

  18. Oracle is a registered trademark of Oracle Corporation and/or its

  19. affiliates. Other names may be trademarks of their respective

  20. owners.

  21. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

  22. mysql> status

  23. --------------

  24. mysql Ver 8.0.22 for Linux on x86_64 (MySQL Community Server - GPL)

  25. Connection id: 12

  26. Current database:

  27. Current user: root@localhost

  28. SSL: Not in use

  29. Current pager: stdout

  30. Using outfile: ''

  31. Using delimiter: ;

  32. Server version: 8.0.22 MySQL Community Server - GPL

  33. Protocol version: 10

  34. Connection: Localhost via UNIX socket

  35. Server characterset: utf8mb4

  36. Db characterset: utf8mb4

  37. Client characterset: utf8mb4

  38. Conn. characterset: utf8mb4

  39. UNIX socket: /data/mysql/tmp/mysql.sock

  40. Binary data as: Hexadecimal

  41. Uptime: 1 hour 27 min 31 sec

  42. Threads: 3 Questions: 27 Slow queries: 0 Opens: 135 Flush tables: 3 Open tables: 56 Queries per second avg: 0.005