Liunx uses yum to install php mysql gd (LAMP server) and yumlamp
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.
Tools/Raw Materials
Method/step
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:
<? Php
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
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.