When you have 2 MySQL server which is not running in replication or cluster, is recommended to have MySQL backup running daily. This will help you on fast restoration, reliable data backup and disaster recovery. I have created a bash script to run daily and make sure the data is save into local disk and Full Article…
Viewing 1 to 2 of 2 items
4 Ways to Kill a Process – kill, killall, pkill, xkill
Kill command is use to send signal to a process or to kill a process. We typically use kill -SIGNAL PID, where you know the PID of the process. There are other ways to effectively kill a process — killing a process by name, killing a process by specifying part of the name, killing a process by Full Article…