CentOS

How to Install MySQL And Apache/PHP on Centos

We can install MySQL and Apache/PHP (Apache and PHP are needed by phpMyAdmin) with a single command: yum install mysql mysql-server httpd php php-mysql php-mbstring Then we create the system startup links for MySQL and Apache (so that both start automatically whenever the system boots) and start both services: chkconfig –levels 235 mysqld on/etc/init.d/mysqld start [...]

How to Install Imap on Centos

The Internet Message Access Protocol (IMAP) is one of the two most prevalent Internet standard protocols for e-mail retrieval, the other being the Post Office Protocol.  Virtually all modern e-mail clients and mail servers support both protocols as a means of transferring e-mail messages from a server, such as those used by Gmail,to a client, [...]