Where are my mysql database and table files are stored in UNIX or Linux operating systems?
{ 0 comments }
Q. How do I login over ssh without using password less RSA / DSA public keys? How do I use ssh in a shell script? How do I login non-interactivly performing password authentication with SSH and shell scripts?
{ 24 comments }
Q. How to tell if my Linux server is using xinetd or inetd service?
{ 4 comments }
Q. I’d like to find out if httpd / mysqld or sshd process is running or not under CentOS Linux server. How do I determine whether a process is running or not? A. You need to use following commands: [a] ps – It report a snapshot of the current processes [b] grep – Filter out [...]
{ 2 comments }
Q. Sometime I need to stop a command or task under UNIX. I also noticed that some process will ignore my keystroke-generated signals such as CTRL + C or CTRL+D, so my question is – How do I kill process in UNIX? A. You need to use a command called kill. The kill utility sends [...]
{ 7 comments }
Q. How do I find out my process is running? How do I get pid number for particular process? A. The easiest way to find out is run ps aux command and grep process name. If you got output along with process name/pid, your process is running. Task: Find out process pid Simply use ps [...]
{ 17 comments }