Yep, It’s very simple to find out your WHM/cPanel version from command-line. Do follow the steps pasted here: Step 1 : Login to your server as root. Step 2 : Run # /usr/local/cpanel/cpanel -V Or # cat /usr/local/cpanel/version Example: [root@server]#…
commands
[Solved] “Ftp connection refused” error in Kloxo
If you are getting “Ftp connection refused” error in Kloxo, then you can follow this post. Error: ftp xxx.xx.xx.xx ftp: connect: Connection refused ftp> # netstat -plan | grep :21 Solution: Make sure you are running pure-ftpd service. If so,…
How to change MySQL root password from Kloxo Panel
You can change MySQL root password from Kloxo panel by following the steps below: Step 1 : Login to Kloxo control panel, Click here for “How to access kloxo control panel” IP.ADDRESS:7778 Step 2 : Do the following steps: Admin…
10+ netstat command’s practical usages with example – Unix/Linux
Hi friends, last day we have discussed about some useful switches of netstat. But, in practical situation, we need to use some combination(Switch combinations) to display custom output. Here I am explaining some practical usages of netstat with example. How…
10+ netstat command switches with example – Unix/Linux
The “netstat” is one of the powerful command/tool to find out the network statics of your server. The “netstat” tool is available in both Unix and Windows OS. The word “netstat” stands for “Network Statics”. The “netstat” print network connections,…
MySQL Create DB, table and Insert contents from command line
We already discussed some basics of MySQL database management. Here is some more command line usages of MySQL with example. 1. To connect to MySQL we can use the command # mysql -u root -p Then, enter the MySQL root…
How to get the MySQL root password details – cPanel
The MySQL server saves its root password in a file “.my.cnf” under the root directory. You can find out its from the file as I mentioned. Example: root@server [~]# cat /root/.my.cnf [client] password=”)%:pV(Yo” user=root If you were loged in to…