Nagios SSL/Connection Issue Solved
Wednesday, May 26th, 2010 Posted in Linux, Technical Issues | No Comments »On /etc/nagios/nrpe.cfg, (remote server) comment out the following line: #allowed_hosts= They say it ignores this config line if you use xinet.d, but they are totally wrong. I used to get the "Host <blah> is not allowed to talk to us!" error because ...
Linux Commands and Paths for a Plesk Server
Thursday, March 4th, 2010 Posted in Linux | No Comments »This is my on-going cheat sheet of Linux commands for my Plesk server running on CentOS 5. I will keep updating this as I go on. Read more to see the list:
SMARTd Commands for SATA Drives
Friday, February 26th, 2010 Posted in Linux | No Comments »Show all SMART information [code]smartctl -d ata -a /dev/sda1[/code] -a = Show all SMART information for device. -d = Specify the device type to one of: ata, scsi, marvell, 3ware (ata is selected above). /dev/sda1 = The drive. Run a self-test [code]smartctl -d ata -t offline /dev/sda1[/code] [code]smartctl ...