Skip to main content

Find all open socket at your linux with the following command. #centos #linux #socket

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"

Comments

Popular posts from this blog

upload file type rocket chat #Accepted file upload. Can not send .xlsx

Enabling File format for upload at ROCKET CHAT application/msword   - for .doc application/vnd.openxmlformats-officedocument.wordprocessingml.document   - for .docx application/vnd.ms-excel   - for xls application/vnd.openxmlformats-officedocument.spreadsheetml.sheet   - for .xlsx application/vnd.ms-powerpoint   - for .ppt application/vnd.openxmlformats-officedocument.presentationml.presentation   - for .pptx image/*,audio/*,video/*,application/zip,application/x-rar-compressed,application/pdf,text/plain,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet