เป็นการติดตั้ง Apache2, PHP5 และ MySQL5 บน CentOS 5+ server โดยใช้ Yum
ติดตั้ง packet ต่างๆ
yum -y install httpd php mysql mysql-server php-mysql
กำหนด password สำหรับ root ของ MySQL
/etc/init.d/mysql start
mysqladmin -u root password 'ENTER-PASSWORD-HERE'
mysqladmin -u root password 'ENTER-PASSWORD-HERE'
/sbin/chkconfig httpd on
/sbin/chkconfig --add mysqld
/sbin/chkconfig mysqld on
/sbin/service httpd start
/sbin/service mysqld start
/sbin/chkconfig --add mysqld
/sbin/chkconfig mysqld on
/sbin/service httpd start
/sbin/service mysqld start
<?php echo phpinfo(); ?>
ที่มา : http://www.tutorialized.com/view/tutorial/Install-Apache2-PHP5-MySQL5-with-Yum-on-CentOS/37630
0 comments:
Post a Comment