Note: I used yum in 84vps to smoothly install mysqlphp and gd libraries. because vps itself comes with apahce2.2, there is no ap
Note: I used yum in 84vps to smoothly install mysql php and gd libraries. because vps itself comes with apahce2.2, there is no apache installation process.
System: Centos6.0 32-bit
1. install mysql
# Yum-y install mysql-server mysql-devel
Configure mysql boot service
# Chkconfig -- add mysqld (add mysql service to the service list)
# Chkconfig mysqld on (set mysql service to start with startup)
# Service mysqld start (start mysql service)
II. install PHP
# Yum-y install php
# Service httpd restart (restart apache)
# Vi/var/www/html/index. php
Enter the following test code:
Phpinfo ();
?>
Save and exit, use IE to access the http://youdomain.com/if the output of phpinfo information indicates that your php installation is successful.
3. install related php components
# Yum search php (search for php-related components)
# Yum-y install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc
Restart the apache service after installation.
# Service httpd restart
Now your lamp environment is ready. Is it easy to use yum for installation!
I have read other people's articles before, but I don't need to use phpize to re-compile the php component after installing it, restart apache to load all possible components.