码迷,mamicode.com
首页 > 数据库 > 详细

httpd 2.4.9 + mysql-5.5.33 + php-5.4.26编译安装过程

时间:2014-08-14 03:58:28      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:lamp

安装mariadb到/usr/local/下

解压到该目录  

# tar xf mariadb-5.5.36-linux-x86_64.tar.gz -C /usr/local/

bubuko.com,布布扣

为后期方便升级使用给mariadb-5.5.36-linux-x86_64创个链接    

# ln -sv mariadb-5.5.36-linux-x86_64/ mysql

bubuko.com,布布扣

bubuko.com,布布扣

mysql的数据库文件默认是在/usr/local/mysql/data/下的,随着数据的增加,放这里不妥。创建逻辑卷来存放数据,以便后期随时扩展,创建好逻辑卷后挂载到/mydata/data/下。

mysql是由root启动后以普通用户mysql的身份来运行的,故添加系统组,系统用户:mysql,mysql。

修改/mydata/data/目录的属主属组

# chown -R mysql.mysql /mydata/data/

bubuko.com,布布扣

# cd /usr/local/mysql

修改里面的所有文件属主root属组mysql:

 # chown -R root.mysql ./*

bubuko.com,布布扣

mysql的初始化:

因为在/etc/下已存在 my.cnf。所有新建

# mkdir /etc/mysql。

复制配置文件

# cp support-files/my-large.cnf /etc/mysql/my.cnf并编辑# vim /etc/mysql/my.cnf

bubuko.com,布布扣

cd到/usr/local/mysql /下,要依赖此目录下的./bin。初始化数据库的脚本执行  

# scripts/mysql_install_db --user=mysql --datadir=/mydata/data

bubuko.com,布布扣

数据库已经生成  

 # ls /mydata/data

bubuko.com,布布扣

复制服务脚本  

 # cp support-files/mysql.server /etc/rc.d/init.d/mysqld

bubuko.com,布布扣

加到服务列表中  

 # chkconfig --add mysqld

bubuko.com,布布扣

bubuko.com,布布扣

启动服务  

# service mysqld start

bubuko.com,布布扣

此时还不能用mysql客户端,因为没有添加环境变量

# vim /etc/profile.d/mysql.sh

bubuko.com,布布扣

bubuko.com,布布扣

# source /etc/profile.d/mysql.sh

bubuko.com,布布扣

导出头文件 

# ln -sv /usr/local/mysql/include/ /usr/include/mysql

bubuko.com,布布扣

更新版本客户端库  

 # vim /etc/ld.so.conf.d/mysql.conf

bubuko.com,布布扣

bubuko.com,布布扣

 

 

 

 

 

 

 

 

编译安装httpd,httpd程序依赖于apr和apr-util,故下载源码httpd-2.4.9.tar.bz2和apr-1.5.0.tar.bz2 ,apr-util-1.5.3.tar.bz2

先安装apr,解压

 #  tar xf apr-1.5.0.tar.bz2

cd到apr-1.5.0

执行

# ./configure –prefix=/usr/local/apr
# make && make install;

然后安装apr-util

# tar apr-util-1.5.3.tar.bz2
# cd apr-util-1.5.3
# ./configure –prefix=/usr/local/apr-util –with-apr=/usr/local/apr
# make && make install;

编译安装httpd

# tar xf httpd-2.4.9.tar.bz2
# cd httpd-2.4.9
#  ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd24 
--enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre 
--with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util 
--enable-modules=most --enable-mpms-shared=all --with-mpm=event
#  make && make install。

配置http的启动;

#  cd /etc/httpd24

为保险备份一份httpd.conf

#  cp httpd.conf httpd.conf.bak

编辑httpd.conf

# vim httpd.conf

加入PidFilebubuko.com,布布扣

编辑

# vim /etc/rc.d/init.d/httpd24

提供SysV服务脚本到/etc/rc.d/init.d/httpd24


 

为其加执行权限

# chmod +x /etc/rc.d/init.d/httpd24

添加至服务列表中

# chkconfig --add httpd24

bubuko.com,布布扣

启动

# service http24 start.

 

 

 

 

 

 

编译安装php:

首先解决依赖关系,安装各包组和包

# yum -y groupinstall "Desktop Platform Development" # yum -y install 
bzip2-devel libmcrypt-devel
# cd php-5.4.26
# ./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql 
--with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring 
--with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib 
--with-libxml-dir=/usr --enable-xml  --enable-sockets 
--with-apxs2=/usr/local/apache/bin/apxs --with-mcrypt  
--with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-bz2  
--enable-maintainer-zts
# make && make install
# cd /etc/httpd24
# vim httpd.conf

添加 

     AddType application/x-httpd-php  .php 
     AddType application/x-httpd-php-source  .phps

找到  DirectoryIndex  index.html  修改为  DirectoryIndex  index.php  index.html

# cp php.ini-production /etc/php.ini

重新载入

# service httpd24 reload即可

测试下php

# cd /usr/local/apache/htdocs/
# vim index.html

bubuko.com,布布扣

# mv index.html index.php


httpd 2.4.9 + mysql-5.5.33 + php-5.4.26编译安装过程,布布扣,bubuko.com

httpd 2.4.9 + mysql-5.5.33 + php-5.4.26编译安装过程

标签:lamp

原文地址:http://tliss.blog.51cto.com/6883268/1539669

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!