To Import without errors .
To export a MySQL database, access your VPS via SSH and run:
Code:
mysqldump -u username -p database_name > dumpfile.sql
To import...
The Kloxo installation process differs depending on whether you have already setup MySQL.
If you have already installed MySQL and set a root password, skip...
Nginx is a popular lightweight alternative to Apache.
Installing it with the yum package manager is simple:
Code:
yum update
Code:
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5Server/x86_64/epel-release-5-4.noarch.rpm
Code:
yum install nginx
Start Nginx:
Code:
/etc/init.d/nginx start
Check if...
OpenVPN is an open source virtual private network (VPN) software. Follow the steps below to configure OpenVPN on CentOS:
1. Install dependencies:
Code:
yum install gcc make...