Innodb disabled – MySQL
First check for any disable options for innodb in /etc/my.cnf like skip-innodb and remove them if there is any. Then restart mysql: If that doesn’t work, try # /etc/init.d/mysql stop…
First check for any disable options for innodb in /etc/my.cnf like skip-innodb and remove them if there is any. Then restart mysql: If that doesn’t work, try # /etc/init.d/mysql stop…
To check if an IP is blocked in iptables, use the command : # iptables -nL | grep IP Sample output : DROP all — x.x.x.x 0.0.0.0/0If the IP…
To add a new user :net user /add usernameEg : net user /add tomTo delete a user :net user /delete usernameEg : net user /delete tomTo change password of a…
I came across a situation this week where a client wanted to install Zend Optimizer on his VPS as his website needed it. But the default PHP version installed on…
Here is a simple script that is tested on CentOS and Ubuntu. It will work on all other UNIX like platforms. You can make modifications to this script to restart…