cPanel :: Change Website’s IP
Posted by blackonsole on May 22nd, 2013 08:03 AM | No Comment
:: How to change web site ip for user in cPanel using command line
:: Change website's ip via WHM
:: Links
+ Google
+ ThecPanelAdmin
CentOS :: /etc/bashrc read-only
Posted by blackonsole on November 23rd, 2012 01:56 AM | No Comment
:: How to fix /etc/bashrc read only issue on CentOS
+ error permission denied
+ check and change attribute file
+ edit the file
+ checking the file
:: Links
+ Google
chown :: Change User / Group Only
Posted by blackonsole on November 13th, 2012 04:37 AM | No Comment
:: How to change user owner only using chown
:: How to change group owner only using chown
:: Link
+ Google
+ man chown
:: Sudo without password
Posted by blackonsole on May 21st, 2012 07:57 AM | No Comment
:: How to setup sudo without password prompt
add this line for setup sudoer without password
:: Links
+ Google
+ Maestic
:: Cron: Auto restart daemon if it down
Posted by blackonsole on May 7th, 2012 04:20 AM | 1 Comment
:: How to create script for auto restart daemon if it down
+ create auto restart daemon script (nginx)
add the script, like these:
#!/bin/bash
alwaysup=ps aux | grep -v grep | grep -c nginx
if
then
/etc/init.d/nginx ...