July 19, 2013, NixUSer, 0
To export a MySQL database, access your server via ssh and run the following commands: # mysqldump -u username -p database_name > database.sql To import a MySQL Database, run the command: # mysql -u username -p database_name < database.sql That’s it 🙂
Like this:
Like Loading...
July 3, 2013, NixUSer, 0
To install cPanel DNSONLY, run these commands in your server: cd /home wget -N http://httpupdate.cpanel.net/latest-dnsonly sh latest-dnsonly
Like this:
Like Loading...
July 2, 2013, admin, 0
After installing Operating System on your server, you can install cPanel / WHM or cPanel DNSONLY. After obtaining a cPanel license, login to your server and run the following commands to install cPanel. cd /home wget -N http://httpupdate.cpanel.net/latest sh latest Please make sure that you have perl installed on your server before installing cPanel. If More
Like this:
Like Loading...
July 1, 2013, NixUSer, 0
When I tried to restore an account I got the error: Sorry, a mysql user with the name x already exists. I know that the user does not exists on the server. To fix this issue, ran the cPanel script. /scripts/updateuserdatacache And the error is gone and I was able to restore the account without More
Like this:
Like Loading...
June 28, 2013, admin, 0
Linux comes with a firewall called netfilter, which is controlled by iptables. Here, I will explain the useful iptables commands for system admins and a super user with bash shell. Please remember that a wrong command will disconnect you from the system and will block your access to the server. iptables -L -n To display More
Like this:
Like Loading...