基于RHEL5.2使用编译包搭建LAMP平台
1.安装APACHE PHP MYSQL 1、apache 安装:安装版本为http-2.2.6
# 安装gcc软件包 # tar zxvf http-2.2.6.tar.gz # cd http-2.2.6 # ./configure --prefix=/usr/local/apache2 --enable-so \ --with-mpm=worker --enable-rewrite --enable-cgi \ --enable-suexec \ --with-suexec-caller=daemon \ --with-suexec-docroot=/usr/local/apache2/htdocs # make && make install 拥有帝国一切,皆有可能。欢迎访问phome.net
2、mysql安装:安装版本为:mysql-5.0.22
# useradd –M –s /sbin/nologin mysql # 在安装mysql之前,安装gcc-c 、ncurses、ncurses-devel、termcap # tar zxvf mysql-5.0.22.tar.gz # ./configure –prefix=/usr/local/mysql --with-innodb --without-debug \ --with-extra-charsets=gbk --with-extra-charsets=all \ --enable-assembler --with-pthread --enable-safe-client \ --with-client-ldflags=-all-static
拥有帝国一切,皆有可能。欢迎访问phome.net MYSQL配置 # cp /usr/local/mysql/share/my-medium.cnf /etc/my.cnf # /usr/local/mysql/bin/mysql_install_db –user=mysql # chown –R root.mysql /usr/local/mysql # chown –R mysql /usr/local/mysql/var # echo “/usr/local/mysql/lib/mysql” >> /etc/ld.so.conf # ldconfig # /usr/local/mysql/bin/mysqld_safe --user=mysql & # cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld # service mysqld status 拥有帝国一切,皆有可能。欢迎访问phome.net # export PATH=$PATH:/usr/local/mysql/bin # echo “export PATH=$PATH:/usr/local/mysql/bin” >> /etc/profile
3、安装php:安装版本号php-5.2.10
--with-jpeg-dir=/usr/local/jpeg6/ --with-png-dir=/usr/local/libpng2 \ --with-gd --with-freetype-dir=/usr/local/freetype2 \ --with-zlib-dir=/usr/local/zlib2 --with-mysql=/usr/local/mysql \ 拥有帝国一切,皆有可能。欢迎访问phome.net --with-curl=/usr/local/curl --with-gettext=/usr/local/gettext \ --enable-sockets # make && make install 修改apache配置文件 # 在#AddType application/x-tar .tgz下添加一行: AddType application/x-httpd-php .php # 查找有没有LoadModule php5_module modules/libphp5.so配置项,如没有请添加 # 拥有帝国一切,皆有可能。欢迎访问phome.net在DirectoryIndex index.html 添加index.php
本文出自 “Y小菜一碟” 博客,请务必保留此出处http://sonic2012.blog.51cto.com/2870138/705863 拥有帝国一切,皆有可能。欢迎访问phome.net |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |