Install Zend Framework on Fedora, CentOS/RHEL

This is quick guide, howto install Zend Framework (ZF) 1.12.3 on Fedora, CentOS and Red Hat (RHEL). This guide also works with older Fedora releases, like Fedora 13/12/11 and also with older CentOS/Red Hat RHEL 5 releases. I use Remi repository here because it’s updated more frequently than example Fedora’s own repositories. What is Zend … Read more

Syntax highlighting VI and VIM command on Fedora/RHEL/CentOS linux

This is guide, howto enable Vi and Vim text editor syntax Highlighting on Fedora/CentOS / Red Hat (RHEL). Actually on Fedora, CentOS and Red Hat (RHEL) does only have Vim (Vi IMproved), but if you run vi command it works, because it runs small/minimal version of Vim, which is like original Vi. I have seen … Read more

Creating Simple Virtual Hosts With mod_mysql_vhost On Lighttpd (Ubuntu 12.10)

This guide explains how you can use mod_mysql_vhost to create simple virtual hosts on a lighttpd web server on Ubuntu 12.10. With mod_mysql_vhost, lighttpd can read the vhost configuration from a MySQL database. Currently, you can store the domain and the document root in the MySQL database which results in very simple virtual hosts. If … 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