Find all open socket at your linux with the following command.
sudo find / -type s
It will be helpful when you are using php-fpm, if you want to be sure for socket is open or not. Then simply you can run the following command
sudo find / -type s | grep sock
sometime we might have problem during myslqdump if the mysql.sock is not at default location, in that case we need to provide socket details.
mysqldump -u dbuser --protocol=socket -S /riyazdata/mysql/mysql.sock -p dbname > dbriyaz_20190103.sql
Note: [/riyazdata/mysql/mysql.sock] this information you can get with "sudo find / -type s"
sudo find / -type s
It will be helpful when you are using php-fpm, if you want to be sure for socket is open or not. Then simply you can run the following command
sudo find / -type s | grep sock
sometime we might have problem during myslqdump if the mysql.sock is not at default location, in that case we need to provide socket details.
mysqldump -u dbuser --protocol=socket -S /riyazdata/mysql/mysql.sock -p dbname > dbriyaz_20190103.sql
Note: [/riyazdata/mysql/mysql.sock] this information you can get with "sudo find / -type s"
Comments
Post a Comment