【扩展阅读:温习一下telnet】
http://apache.linuxforum.net/dist/httpd/httpd-2.0.50.tar.gz 【扩展信息:init详解】http://cn.php.net/get/php-5.0.0.tar.gz/from/this/mirror http://dev.mysql.com/get/downloads/mysql-4.0/mysql-standard-4.0.20-pc-linux-i686.tar.gz/from/http://mysql.ihostunit.com/ http://www2.tw.freebsd.org/unix/gnome/sources/libxml2/2.6 我将它们存放在/home/server目录下 安装步骤: 1. mysql # groupadd mysql # useradd -g mysql mysql # cd /usr/local # tar –zxvf /home/server/mysql*.tar.gz #cd mysql* /bin # ./mysqladmin -u root password ‘password’//修改密码为password # cp support-files/mysql.server /etc/rc.d/init.d/mysqld # chkconfig --add mysqld 用ntsysv设置使mysql每次启动都能自动运行 接下来启动mysql : # /etc/rc.d/init.d/mysqld start 如果出现不能打开mysql.sock这个文件的错误,修改这个文件路径的权限即可 2. apache #cd /usr/local #tar –zxvf /home/server/httpd-2.0.50.tar.gz #./configure –enable-so –enable-rewrite #make #make install 编译安装完成后,启动apache #cd /usr/local/apache2/bin #./apachectl start ... 下一页