51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

CentOS下编译安装LNMP(附带软件包)

Centos编译安装 LNMP (nginx-1.2.2.tar.gz + mysql-5.5.35 + php 5.4.8)+ Redis
软件源代码包存放位置:/usr/local/src

源码包编译安装位置:/usr/local/软件名字

修改yum源:

1、[root@localhost ~]# cd /etc/yum.repos.d 进入存放源配置的文件夹

2、[root@localhost yum.repos.d]# mv ./CentOS-Base.repo ./CentOS-Base.repo.bak 备份默认源

3、[root@localhost yum.repos.d]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo 使用wget下载163的源

4、[root@localhost yum.repos.d]# mv CentOS6-Base-163.repo CentOS6-Base.repo 把下载下来的文件CentOS-Base-163.repo设置为默认源

5、 [root@localhost ~]# yum -y install git 把git安装上去 关于git常用命令见 http://www.cnblogs.com/whoamme/p/3531387.html

6、 [root@localhost ~]# yum -y install ntpdate 下载ntpdate时间同步包
7、[root@localhost ~]# ntpdate cn.pool.ntp.org 开始同步时间
一、关闭SELinux

[root@localhost ~]# vim /etc/selinux/config

SELINUX=enforcing 修改为SELINUX=disabled

SELINUXTYPE=targeted 这一行注释掉

:wq! 保存 关闭 退出!

[root@localhost ~]# reboot 修改SELinux后 要重启系统

二、配置防火墙,开启3306、80端口
[root@localhost ~]# vim /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
[root@localhost ~]# /etc/init.d/iptables restart //重启防火墙,使配置生效
三、下载软件包
1、nginx-1.2.2.tar.gz(目前稳定版):https://yunpan.cn/cYNPrw3tIbUnu 访问密码 ab4b
2、pcre-8.34.tar.gz(支持nginx伪静态):https://yunpan.cn/cYNPYfb9ttQKD 访问密码 fbb1
3、mysql-5.5.35.tar.gz:https://yunpan.cn/cYNP3BZb5IrCE 访问密码 24b5
4、php-5.4.5.tar.gz:https://yunpan.cn/cYNPqqBYtZdHv 访问密码 de9f
5、cmake-2.8.8.tar.gz(mysql编译工具):https://yunpan.cn/cYNPypEFgSzxY 访问密码 399b
6、libmcrypt-2.5.7.tar.gz(phplibmcrypt模块):https://yunpan.cn/cYNPVuKGcYupR 访问密码 eafa
7、zlib-1.2.8.tar.gz:https://yunpan.cn/cYNPPBILHGxGT 访问密码 4f45
四、安装编译工具及库文件
[root@localhost ~]# yum -y install make apr* autoconf automake curl-devel gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel gd kernel keyutils patch perl kernel-headers compat* mpfr cpp glibc libgomp libstdc++-devel ppl cloog-ppl keyutils-libs-devel libcom_err-devel libsepol-devel libselinux-devel krb5-devel libXpm* freetype libjpeg* libpng* php-common php-gd ncurses* libtool* libxml2 libxml2-devel patch
[root@localhost ~]# yum -y install gcc-c++
1、安装cmake
[root@localhost ~]# cd /usr/local/src/
[root@localhost src]# tar zxvf cmake-2.8.8.tar.gz
[root@localhost src]# cd cmake-2.8.8
[root@localhost cmake-2.8.8]# ./configure
[root@localhost cmake-2.8.8]# make && make install
2、安装mysql
[root@localhost ~]# groupadd mysql #添加mysql组

[root@localhost ~]# useradd -g mysql mysql -s /bin/false #创建用户mysql并加入到mysql组,不允许mysql用户直接登录系统

[root@localhost ~]# mkdir -p /data/mysql #创建MySQL数据库存放目录

[root@localhost ~]# chown -R mysql:mysql /data/mysql #设置MySQL数据库目录权限

[root@localhost ~]# mkdir -p /usr/local/mysql #创建MySQL安装目录

[root@localhost ~]# yum -y install ntp vim-enhanced gcc gcc-c++ flex bison autoconf automake bzip2-devel ncurses-devel zlib-devel libjpeg-devel libpng-devel libtiff-devel freetype-devel libXpm-devel gettext-devel pam-devel libtool libtool-ltdl openssl openssl-devel fontconfig-devel libxml2-devel curl-devel libicu libicu-devel libmcrypt libmcrypt-devel libmhash libmhash-devel

[root@localhost ~]# cd /usr/local/src/

[root@localhost src]# tar zxvf mysql-5.5.35.tar.gz

[root@localhost src]# cd mysql-5.5.35

[root@localhost mysql-5.5.35]# yum -y install ncurses-devel
[root@localhost mysql-5.5.35]# yum -y install bison
[root@localhost mysql-5.5.35]# cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/usr/local/mysql/data -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_unicode_ci -DWITH_READLINE=1 -DWITH_SSL=system -DWITH_EMBEDDED_SERVER=1 -DENABLED_LOCAL_INFILE=1 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_MYISAM_STORAGE_ENGINE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_DEBUG=0

[root@localhost mysql-5.5.35]# rm -f CMakeCache* 编译安装出问题 删除重新安装的命令

[root@localhost mysql-5.5.35]# make && make install

[root@localhost mysql-5.5.35]# cd /usr/local/mysql/

[root@localhost mysql]# cp ./support-files/my-huge.cnf /etc/my.cnf //拷贝配置文件(注意:/etc目录下面默认有一个my.cnf,直接覆盖即可)

[root@localhost mysql]# vim /etc/my.cnf //编辑配置文件,在 [mysqld] 部分增加

datadir = /data/mysql //生成mysql系统数据库

:wq! //保存退出

[root@localhost mysql]# ./scripts/mysql_install_db --user=mysql //把Mysql加入系统启动

[root@localhost mysql]# cp ./support-files/mysql.server /etc/rc.d/init.d/mysqld //把Mysql加入系统启动

[root@localhost mysql]# chmod 755 /etc/init.d/mysqld //增加执行权限
[root@localhost mysql]# chkconfig mysqld on //加入开机启动

[root@localhost mysql]# vim /etc/rc.d/init.d/mysqld

basedir=/usr/local/mysql //MySQl数据库存放目录

datadir=/data/mysql //启动

[root@localhost mysql]# service mysqld start 启动

[root@localhost mysql]# vim /etc/profile 把mysql服务加入系统环境变量:在最后添加下面这一行

export PATH=$PATH:/usr/local/mysql/bin

下面这两行把myslq的库文件链接到系统默认的位置,这样你在编译类似PHP等软件时可以不用指定mysql的库文件地址。

[root@localhost mysql]# ln -s /usr/local/mysql/lib/mysql /usr/lib/mysql
[root@localhost mysql]# ln -s /usr/local/mysql/include/mysql /usr/include/mysql

[root@localhost mysql]# reboot #需要重启系统,等待系统重新启动之后继续在终端命令行下面操作

[root@localhost mysql]# mysql_secure_installation #设置Mysql密码

根据提示按Y 回车输入2次密码

或者直接修改密码/usr/local/mysql/bin/mysqladmin -u root -p password "123456" #修改密码
[root@localhost mysql]# vim /etc/my.cnf #让MySQL支持全文索引
找到[mysqld],在下面添加一行
ft_min_word_len=1
[root@localhost mysql]# service mysqld restart #重启

到此,mysql安装完成!

3、安装pcre
[root@localhost ~]# cd /usr/local/src/
[root@localhost src]# mkdir /usr/local/pcre #创建安装目录
[root@localhost src]# tar zxvf pcre-8.34.tar.gz
[root@localhost src]# cd pcre-8.34
[root@localhost pcre-8.34]# ./configure --prefix=/usr/local/pcre/ #配置
[root@localhost pcre-8.34]# make && make install
4、安装nginx
[root@localhost ~]# cd /usr/local/src/
[root@localhost src]# groupadd www #添加www组
[root@localhost src]# useradd -g www www -s /sbin/false #创建nginx运行账户www并加入到www组,不允许www用户直接登录系统
[root@localhost src]# tar zxvf nginx-1.2.2.tar.gz
[root@localhost nginx-1.2.2]# ./configure --prefix=/usr/local/nginx --without-http_memcached_module --user=www --group=www --with-http_stub_status_module --with-openssl=/usr/ --with-pcre=/usr/local/src/pcre-8.34

注意:--with-pcre=/usr/local/src/pcre-8.31指向的是源码包解压的路径,而不是安装的路径,否则会报错
[root@localhost nginx-1.2.2]# make && make install
[root@localhost nginx-1.2.2]# /usr/local/nginx/sbin/nginx #启动nginx
CentOS下编译安装LNMP(附带软件包)_https://www.tiejiang.org_Linux安全运维_第1张
[root@localhost nginx-1.2.2]# chmod 755 /etc/rc.d/init.d/nginx #赋予文件执行权限
[root@localhost nginx-1.2.2]# chkconfig nginx on #设置开机启动
[root@localhost nginx-1.2.2]# /etc/rc.d/init.d/nginx restart #重启
[root@localhost nginx-1.2.2]# service nginx restart
5、安装libmcrypt
[root@localhost ~]# cd /usr/local/src/
[root@localhost src]# tar zxvf libmcrypt-2.5.7.tar.gz
[root@localhost libmcrypt-2.5.7]# ./configure
[root@localhost libmcrypt-2.5.7]# make && make install
6、安装php
[root@localhost ~]# cd /usr/local/src/
[root@localhost src]# tar -zxvf php-5.4.5.tar.gz
[root@localhost src]# cd php-5.4.5
[root@localhost php-5.4.5]# mkdir -p /usr/local/php5
[root@localhost php-5.4.5]# ./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-gd --with-iconv --with-zlib --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curlwrappers --enable-mbregex --enable-fpm --enable-mbstring --enable-ftp --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-mcrypt --with-curl
[root@localhost php-5.4.5]# make && make install
[root@localhost php-5.4.5]# cp php.ini-production /usr/local/php5/etc/php.ini #复制php配置文件到安装目录
[root@localhost php-5.4.5]# rm -rf /etc/php.ini #删除系统自带配置文件
[root@localhost php-5.4.5]# ln -s /usr/local/php5/etc/php.ini /etc/php.ini #添加软连接
[root@localhost php-5.4.5]# cp /usr/local/php5/etc/php-fpm.conf.default /usr/local/php5/etc/php-fpm.conf #拷贝模板文件为php-fpm配置文件
[root@localhost php-5.4.5]# vim /usr/local/php5/etc/php-fpm.conf
user = www #设置php-fpm运行账号为www
group = www #设置php-fpm运行组为www
pid = run/php-fpm.pid #取消前面的分号
[root@localhost php-5.4.5]# cp /usr/local/src/php-5.4.5/sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm
[root@localhost php-5.4.5]# chmod +x /etc/rc.d/init.d/php-fpm
[root@localhost php-5.4.5]# chkconfig php-fpm on
[root@localhost php-5.4.5]# vim /usr/local/php5/etc/php.ini
找到:disable_functions =
修改为:disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname
#列出PHP可以禁用的函数,如果某些程序需要用到这个函数,可以删除,取消禁用。
找到:;date.timezone = 修改为:date.timezone = PRC #设置时区
找到:expose_php = On 修改为:expose_php = OFF #禁止显示php版本的信息
找到:short_open_tag = Off 修改为:short_open_tag = ON #支持php短标签

7、配置nginx支持php
[root@localhost php-5.4.5]# vim /usr/local/nginx/conf/nginx.conf
user www www; #首行user去掉注释,修改Nginx运行组为www www;必须与/usr/local/php5/etc/php-fpm.conf中的user,group配置相同,否则php运行出错
index index.php index.html index.htm; #添加index.php

pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

#取消FastCGI server部分location的注释,并要注意fastcgi_param行的参数,改为$document_root$fastcgi_script_name,或者使用绝对路径
[root@localhost php-5.4.5]# /etc/init.d/nginx restart #重启nginx
8、测试篇
[root@localhost ~]# cd /usr/local/nginx/html/ #进入nginx默认网站根目录
[root@localhost html]# rm -rf /usr/local/nginx/html/* #删除默认测试页
[root@localhost html]# cat index.php
<?php
phpinfo();
?>
[root@localhost html]# chown www.www /usr/local/nginx/html/ -R #设置目录所有者
[root@localhost html]# chmod 700 /usr/local/nginx/html/ -R #设置目录权限
[root@localhost html]# reboot #重启系统
在浏览器中打开服务器IP地址,会看到phpinfo的界面,配置成功

[root@localhost ~]# service nginx restart #重启nginx

[root@localhost ~]# service mysqld restart #重启mysql

[root@localhost ~]# /usr/local/php5/sbin/php-fpm #启动php-fpm

[root@localhost ~]# /etc/rc.d/init.d/php-fpm restart #重启php-fpm

[root@localhost ~]# /etc/rc.d/init.d/php-fpm stop #停止php-fpm

[root@localhost ~]# /etc/rc.d/init.d/php-fpm start #启动php-fpm
备注:
nginx默认站点目录是:/usr/local/nginx/html/
权限设置:chown www.www /usr/local/nginx/html/ -R
MySQL数据库目录是:/data/mysql
权限设置:chown mysql.mysql -R /data/mysql
至此,CentOS 6.3编译安装Nginx1.2.2+MySQL5.5.25a+PHP5.4.5完成

赞(0)
未经允许不得转载:工具盒子 » CentOS下编译安装LNMP(附带软件包)