chmod -R 755 *.tar.gz
tar -zxvf httpd-2.2.4.tar.gz
cd httpd-2.2.4
./configure --prefix=/opt/apache --enable-so --enable-vhost-alias --enable-rewrite --enable-deflate
make
make install
./configure --prefix=/opt/mysql --with-charset=utf8 --enable-thread-safe-client
make
make install
cd scripts
./mysql_install_db --user=mysql
cd ..
#cp support-files/my-medium.cnf /etc/my.cnf
#cp support-files/mysql.server /etc/rc.d/init.d/mysqld
添加到系统启动服务组
#chmod 700 /etc/rc.d/init.d/mysqld
#chkconfig --add mysqld
修改权限
#cd /opt/mysql
#chown -R root .
#chown -R mysql var
#chgrp -R mysql .
cd /opt/mysql/bin #改变目录到/usr/local/mysql/bin
./mysqld_safe --user=mysql & #以mysql用户启动库生成套接字