Friday, December 13, 2013

Install Apache, MySQL, phpMyAdmin on CentOS

1. Install Apache:
yum install httpd php php-devel php-gd php-imap php-ldap php-mysql php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-mhash gettext/sbin/chkconfig httpd --level 345 on/etc/init.d/httpd start
Root folder on /var/www/html
2. Install MySQL:
yum install mysql mysql-server/sbin/chkconfig mysqld --level 345 on/etc/init.d/mysqld start

Default user is "root" and password is none.
Setup MySQL root password: mysqladmin -u root password passwordhere
3. Install phpMyAdmin:
cd /var/www/html
wget  http://downloads.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.2.4/phpMyAdmin-3.2.4-all-languages.zip?use_mirror=nchc
unzip phpMyAdmin-3.2.4-all-languages.zip

Change config.sample.inc.php to config.inc.php.
Find line:
$cfg['Servers'][$i]['auth_type'] = 'cookie';
change to:
$cfg['Servers'][$i]['auth_type'] = 'http';
Finish, login to phpMyAdmin: http://IP/phpMyAdmin-3.2.4-all-languages

Related Posts:

  • Config file mysql server Beyond the defaults In the previous article we covered a basic MySQL server setup on CentOS Linux. We set the root password, created a database, and created a user for the database. Now let's look at MyS… Read More
  • Vòng đời của tên miền VNTên miền ở trạng thái tự do (Available) => Chủ thể đăng ký sử dụng => Tên miền hết hạn. Sau 3 ngày kể từ ngày hết hạn => tên miền sẽ bị tạm ngưng, nhưng chủ thể vẫn có quyền nộp phí gia hạn trong vòng 17 ngày tiếp th… Read More
  • Vòng đời của tên miền Quốc tếMỗi tên miền từ khi được khởi tạo đến lúc ngưng sử dụng đều có một "vòng đời" riêng của nó, thậm chí có những tên miền còn sở hữu nhiều vòng đời.Dưới đây, chúng tôi sẽ trình bày vòng đời của một số tên miền quốc tế thường sử … Read More
  • Quy định về tên miền Việt Nam (.VN) Định nghĩa các đuôi tên miền¶ COM.VN: Dành cho tổ chức, cá nhân hoạt động thương mại. BIZ.VN: Dành cho các tổ chức, cá nhân hoạt động kinh doanh, tương đương với tên miền COM.VN. EDU.VN: Dành cho các tổ chức, cá nhân hoạt đ… Read More
  • Compress and Uncompress Files1) To compress files: Examples: tar cvf abc.tar a1.ps a2.tex adir/* # compress files to the file abc.tar gzip -9 abc.tar /* # create abc.tar.gz file. tar cvfz abc.tar.gz a1.ps a2.tex adir/* # directly create abc.tar.gz file … Read More