如果你的系统之前装过LAMP,先停止mysql:
# /etc/init.d/mysqld stop
然后删除 mysql 目录, 不删除应该也可以,要做实验试试。
# rm -rf /usr/local/mysql/
如果想彻底的删除mysq 还要删 /etc/init.d/mysqld 和 /etc/my.cnf 这两个文件。
这里我们是配置LNMP就不删除这俩个文件了。
解压:
# tar zxvf mysql-5.1.40-linux-i686-icc-glibc23.tar.gz
解压的目录移到 /usr/local 下并改名为 mysql:
# mv mysql-5.1.40-linux-i686-icc-glibc23 /usr/local/mysql
这里把以前生成的 mysql 数据删除掉:
# rm -rf /data/mysql/*
然后初始化数据库:
# ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql
看看系统服务项里有没有mysql ,没有使用 chkconfig 命令把 mysql 加入进去,然后启动:
如果你之前没有配置过LAMP就,在编译PHP的时候要 # make clean 下 ,因为编译PHP的时候你 make 和 make install 的时候生成了很多文件,避免你在编译LNMP的时候搞乱,所以要 make clean 下。
安装MySQL
1.下载mysql到/usr/local/src/:
# tar zxvf mysql-5.6.26-linux-glibc2.5-i686.tar.gz
3.把解压完的数据移动到/usr/local/mysql:
建议你使用5.4或者5.5版本,php官方下载地址: http://www.php.net/downloads.php
1.下载php:
# cd /usr/local/src/
# wget http://am1.php.net/distributions/php-5.5.30.tar.gz
2.解压:
# tar zxvf php-5.5.30.tar.gz
3.创建相关用户:
# useradd -s /sbin/nologin php-fpm
4.配置编译参数:
# cd php-5.5.30
# ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql=/usr/local/mysql --with-mysql-sock=/tmp/mysql.sock --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --enable-zend-multibyte --disable-ipv6 --with-pear --with-curl
在编译过程中你会遇到错误就是缺少库文件,如果出现不适下面的错误,请看我的 LAMP 的环境配置文章。
configure: error: Please reinstall the libcurl distribution -
easy.h should be in
解决办法:
# yum install -y libcurl-devel
5.编译PHP:
# make
在编译的过程中遇到了:
/usr/bin/ld: cannot find -lltdl
collect2: ld returned 1 exit status
make: *** [sapi/fpm/php-fpm] 错误 1
解决办法:
# yum install -y libtool-ltdl-devel
6.安装:
# make install
以上每一个步骤,如果没有完全执行正确,那么下一步是无法进行的,用 echo $? 查看结果是否为 0 ,如果不是,就是没有执行正确。
7.修改配置文件:
# cp php.ini-production /usr/local/php/etc/php.ini
# vim /usr/local/php/etc/php-fpm.conf
添加以下内容:
启动:
# service php-fpm start
9.查看 php-fpm 是否启动
# ps aux |grep php-fpm
安装nginx
1.下载和解压Nginx :
# cd //usr/local/src
# wget http://nginx.org/download/nginx-1.4.4.tar.gz
# tar zxvf nginx-1.4.4.tar.gz
2.配置编译选项:
# cd nginx-1.4.4
# ./configure --prefix=/usr/local/nginx --with-http_realip_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --with-pcre
3.编译和安装:
# make
# make install
4.编写Nginx启动脚本,并加入系统服务:
#!/bin/bash
# chkconfig: - 30 21
# description: http service.
# Source Function Library
. /etc/init.d/functions
# Nginx Settings
NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/logs/nginx.pid"
RETVAL=0
prog="Nginx"
start() {
echo -n $"Starting $prog: "
mkdir -p /dev/shm/nginx_temp
daemon $NGINX_SBIN -c $NGINX_CONF
RETVAL=$?
echo
return $RETVAL
}
stop() {
echo -n $"Stopping $prog: "
killproc -p $NGINX_PID $NGINX_SBIN -TERM
rm -rf /dev/shm/nginx_temp
RETVAL=$?
echo
return $RETVAL
}
reload(){
echo -n $"Reloading $prog: "
killproc -p $NGINX_PID $NGINX_SBIN -HUP
RETVAL=$?
echo
return $RETVAL
}
restart(){
stop
start
}
configtest(){
$NGINX_SBIN -c $NGINX_CONF -t
return 0
}
case "$1" in
start)
start
;;
stop)
stop
;;
reload)
reload
;;
restart)
restart
;;
configtest)
configtest
;;
*)
echo $"Usage: $0 {start|stop|reload|restart|configtest}"
RETVAL=1
esac
exit $RETVAL
保存该脚本后更改权限:
# chmod 755 /etc/init.d/nginx
# chkconfig --add /etc/init.d/nginx
然后设置开机启动:
# chkconfig nginx on
4.更改Nginx的配置文件:
因为要更改的地方过多,就重新写了个。
先清空配置文件:
# > /usr/local/nginx/conf/nginx.conf
编辑配置文件:
# vim /usr/local/nginx/conf/nginx.conf
加入:
user nobody nobody;
worker_processes 2;
error_log /usr/local/nginx/logs/nginx_error.log crit;
pid /usr/local/nginx/logs/nginx.pid;
worker_rlimit_nofile 51200;
events
{
use epoll;
worker_connections 6000;
}
http
{
include mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 3526;
server_names_hash_max_size 4096;
log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]'
'$host "$request_uri" $status'
'"$http_referer" "$http_user_agent"';
sendfile on;
tcp_nopush on;
keepalive_timeout 30;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
connection_pool_size 256;
client_header_buffer_size 1k;
large_client_header_buffers 8 4k;
request_pool_size 4k;
output_buffers 4 32k;
postpone_output 1460;
client_max_body_size 10m;
client_body_buffer_size 256k;
client_body_temp_path /usr/local/nginx/client_body_temp;
proxy_temp_path /usr/local/nginx/proxy_temp;
fastcgi_temp_path /usr/local/nginx/fastcgi_temp;
fastcgi_intercept_errors on;
tcp_nodelay on;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 8k;
gzip_comp_level 5;
gzip_http_version 1.1;
gzip_types text/plain application/x-javascript text/css text/htm application/xml;
server
{
listen 80;
server_name localhost;
index index.html index.htm index.php;
root /usr/local/nginx/html;
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/tmp/php-fcgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
}
}
}
保存配置文件后,需要检验一下是否有错误:
# /usr/local/nginx/sbin/nginx -t
如果显示:
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
则说明配置正确,否则要根据错误提示修改配置文件。
5.启动Nginx:
# /etc/init.d/nginx start
如果不能启动请查看 /usr/local/nginx/logs/error.log 文件,检查Nginx是否启动:
# ps aux |grep nginx
6.测试是否正确解析PHP :
# vim /usr/local/nginx/html/1.php
写入以下内容:
echo " Hello word! ";
?>
保存,执行如下命令测试:
# curl localhost/1.php
Hello word!
显示上面的内容说明PHP解析正确。