Installing Nginx width php5 and mysql support on centos 6.4

Nginx (pronounced engine-x) is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. Igor Sysoev started development of Nginx in 2002, with the first public release in 2004. Nginx now hosts nearly 12.18% (22.2M) of active sites across all domains. Nginx is known for its high performance, stability, … Read more

Create Mysql Backup Using Mylvmbackup On CentOS

mylvmbackup is a tool for quickly creating backups of a MySQL server’s data files. To perform a backup, mylvmbackup obtains a read lock on all tables and flushes all server caches to disk, creates a snapshot of the volume containing the MySQL data directory, and unlocks the tables again. The snapshot process takes only a … Read more

Manage multiple MySql server using single phpmyadmin

As a System Administrator, we tend to manage a number of MYSQL Server instance. So we need to find a better way of managing this set of mysql server into much a easier and centralized way. In my environment, I have 5 different MySQL database servers running separately under different server location. Since it run … Read more

Recover the MySQL Root Password Easily

To recover your MySQL database server password follow these five easy steps.. Step 1: Stop the MySQL service.. service mysql stop or service mysqld stop Step 2: Start the MySQL server without any passwords.. mysqld_safe –skip-grant-tables & Step 3: Connect to mysql server using mysql client.. mysql -u root Step 4: Setup new MySQL root … Read more