• 3641阅读
  • 0回复

Linux下Apache2+PHP+MySQL整合安装 [复制链接]

上一主题 下一主题
离线cai
 

只看楼主 倒序阅读 0楼 发表于: 2005-08-08
作者:Loviny [文章出自: www.phpx.com]

  刚来这里,粘一帖我前段时间的操作,希望对某些人有些帮助,也请大家多多指教。

运行环境:RedHat 7.3
使用软件:Apache2.0.40 http://www.apache.org/dist/httpd/httpd-2.0.40.tar.gz
     PHP4.3DEV http://snaps.php.net/php4-latest.tar.gz
     MySQL3.23.52 http://mysql.hjc.edu.sg/Downloads/M...-3.23.52.tar.gz

1、安装apache2
  将httpd-2.0.40.tar.gz复制到/usr/local/src目录下
  # tar zxvf httpd-2.0.40.tar.gz
  # cd httpd-2.0.40
  # ./configure --prefix=/usr/local/apache --enable-mods=shared=all --enable-module=so --disable-info
  # make
  # make install
  # vi /usr/local/apache/conf/httpd.conf
  更改ServerName后保存退出
  接下来设置apache的自启动及运行等级
  # cd /etc/rc.d/init.d
  # sed 's/sbin\/atd/local\/apache\/bin\/httpd/g' atd > httpd
  # sed 's/atd/httpd/g' httpd > /tmp/txt
  # sed 's/at daemon/httpd daemon/g' /tmp/txt > httpd
  # rm -f /tmp/txt
  # chmod 755 httpd
  # chkconfig --level 345 httpd on
  # chkconfig --level 0126 httpd off
  启动与关闭httpd服务
  # /etc/rc.d/init.d/httpd start/stop/restart

2、安装MySQL
  笔者不赞成以root来启动MySQL,因此首先创建一个mysqluser的用户以用来启动MySQL,并不以在/etc/rc.d/中加入自启动而改以在rc.local中启动。
  将mysql-3.23.52.tar.gz复制到/usr/local/src目录中
  # tar zxvf mysql-3.23.52.tar.gz
  # groupadd mysql
  # useradd -g mysql mysql
  # ./configure --prefix=/usr/local/mysql --localstatedir=/home/data --with-client-ldflags=-all-static --with-mysqld-ldflags=-all-static --with-mysqld-user=mysql --enable-assembler --with-extra-charsets=all
  在此配置中,笔者已将数据文件夹移至/home目录下
  # make
  # make install
  # scripts/mysql_install_db
  # chown -R root /usr/local/mysql
  # chown -R mysql /home/data
  # chgrp -R mysql /usr/local/mysql
  # cp support-files/my-medium.cnf /etc/my.cnf
  # cd /usr/local/mysql
  # bin/safe_mysqld &
  # bin/mysqladmin -u root password "123"
  # bin/mysqladmin -u root -h linux password "123"
  修改主机为linux上MySQL的root密码为123
  # vi /etc/rc.d/rc.local
  在最后添加: su mysqluser -c "/usr/local/mysql/share/mysql/mysql.server start"
  保存退出
  若要停止MySQL则执行
  # /usr/local/mysql/share/mysql/mysql.server stop

3、安装PHP
  在现行的官方网站上的PHP版本是无法与Apache2整合于一起的,必须先到 http://snaps.php.net 上下载PHP的最新开发版本。该站点是PHP团队开发中与Apache2整合的新版本,每天更新。
  将php4-latest.tar.gz复制到/usr/local/src目录下
  # tar zxvf php4-latest.tar.gz
  # cd php4-200208212100 (目录会有所不同)
  # ./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-mail --with-apxs2=/usr/local/apache/bin/apxs --enable-track-vars
  # make
  # make install
  # cp php.ini-recommended /usr/local/php/lib/php.ini
  虽然很多文章都是以php.ini-dist作为配置文件的,但出于安全上的考虑,笔者更喜欢用recommended的。^_^

4、更新链接库及添加PHP识别
  # vi /etc/ld.so.conf
  在最后添加 /user/local/mysql/lib
  保存退出
  # ldconfig
  # vi /usr/local/apache/conf/httpd.conf
  在适当的位置添加下面语句以识别PHP文件
  AddType application/x-httpd-php .php
  LoadModule php4_module modules/libphp4.so
  在DirectoryIndex后面添加index.php


至此,Linux下的Apache2+PHP+MySQL整合完成。^_^
grant all privileges on *.* to 'a'@'localhost' identified by 'a' with grant option;flush privileges;
快速回复
限100 字节
 
上一个 下一个