本文主要包含lnmp nginx,nginx centos6.5 lnmp,lnmp 重启nginx,lnmp nginx配置,nginx fastcgi等服务器相关知识,网友希望可以进行参考
平时安装LNMP是把它们安装到同一台机器上,我想这个对大家来说丝毫没有挑战,下面我们实现把他们剥离到不同的机器上,让各个服务器直接分担原来的压力,也可以增加节点实现负载均衡,如:多增加一台php,让两台机器轮询的编译php,也可以在增加一台nginx,实现dns的轮询负载均衡。
规划:nginx:172.16.1.1 php(FASTCGI):172.16.1.2 mysql:172.16.1.3 环境:redhat 5.8 32位,yum可以正常使用,开发包组"Development Tools" "Development Libraries" "X Software Development"已经安装好,如果没有请先安装。SElinux确保已经关闭,iptables先关闭之。 操作步骤: 一.在172.16.1.1编译安装nginx 1.先安装pcre-devel,nginx的rewrite功能依赖pcre提供的库。 # yum -y install pcre-devel 2.为nginx建立用户,实现安全运行,指定uid的原因是为了与php通过nfs共享时权限方便 # groupadd -r -g 5000 nginx # useradd -r -g nginx -u 5000 nginx 3.下载并编译安装nginx # wget http://www.nginx.org/download/nginx-1.2.4.tar.gz # tar xvf nginx-1.2.4.tar.gz # cd nginx-1.2.4 #./configure \ --prefix=/usr \ --sbin-path=/usr/sbin/nginx \ --conf-path=/etc/nginx/nginx.conf \ --error-log-path=/var/log/nginx/error.log \ --http-log-path=/var/log/nginx/access.log \ --pid-path=/var/run/nginx/nginx.pid \ --lock-path=/var/lock/nginx.lock \ --user=nginx \ --group=nginx \ --with-http_ssl_module \ --with-http_flv_module \ --with-http_stub_status_module \ --with-http_gzip_static_module \ --http-client-body-temp-path=/var/tmp/nginx/client/ \ --http-proxy-temp-path=/var/tmp/nginx/proxy/ \ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ --http-scgi-temp-path=/var/tmp/nginx/scgi \ --with-pcre ##各个选项意思就不讲解了,如果需要理解,请找google吧 # make && make install 4.为nginx提供SysV init脚本 新建文件/etc/rc.d/init.d/nginx,内容如下: #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/sbin/nginx" prog=$(basename $nginx) NGINX_CONF_FILE="/etc/nginx/nginx.conf" [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx lockfile=/var/lock/subsys/nginx make_dirs() { # make required directories user=`nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -` options=`$nginx -V 2>&1 | grep 'configure arguments:'` for opt in $options; do if [ `echo $opt | grep '.*-temp-path'` ]; then value=`echo $opt | cut -d "=" -f 2` if [ ! -d "$value" ]; then # echo "creating" $value mkdir -p $value && chown -R $user $value fi fi done } start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 make_dirs echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { configtest || return $? stop sleep 1 start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $nginx -HUP RETVAL=$? echo } force_reload() { restart } configtest() { $nginx -t -c $NGINX_CONF_FILE } rh_status() { status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}" exit 2 esac 为此脚本赋予执行权限: # chmod +x /etc/rc.d/init.d/nginx 添加至服务管理列表,并让其开机自动启动: # chkconfig --add nginx # chkconfig nginx on 启动服务并测试 # service nginx start 直接访问172.16.1.1查看是否有nginx的欢迎信息,如果有代表nginx安装一切正常。 二.在172.16.1.3上部署mysql-5.5.28 1.为mysql准备数据目录与用户 # mkdir -pv /data/mysql ##其实这里最好为mysql准备一个逻辑卷,为了方便书写我省略了 #useradd -r mysql 2.下载安装mysql,这里采用已经编译好的 # wget http://cdn.mysql.com/Downloads/MySQL-5.5/mysql-5.5.28-linux2.6-i686.tar.gz # tar xvf mysql-5.5.28-linux2.6-i686.tar.gz -C /usr/local/ # cd /usr/local/ # ln -sv mysql-5.5.24-linux2.6-i686 mysql # cd mysql ##更改目录权限 # chown -R root:mysql . # scripts/mysql_install_db --user=mysql --datadir=/mydata/data 3.为mysql提供配置文件 # cd /usr/local/mysql # cp support-files/my-huge.cnf /etc/my.cnf 并修改此文件中thread_concurrency的值为你的CPU个数乘以2,比如这里使用如下行: thread_concurrency = 2 适当位置添加一行,指定mysql数据文件的存放位置: datadir = /mydata/data 4.为mysql提供sysv init服务脚本: # cd /usr/local/mysql # cp support-files/mysql.server /etc/rc.d/init.d/mysqld 添加至服务列表: # chkconfig --add mysqld # chkconfig mysqld on 测试启动 service mysqld start 一切正常mysql安装正常 5.输出mysql的man手册至man命令的查找路径: 编辑/etc/man.config,添加如下行即可: MANPATH /usr/local/mysql/man 6.输出mysql的头文件至系统头文件路径/usr/include: 这可以通过简单的创建链接实现: # ln -sv /usr/local/mysql/include /usr/include/mysql 7.输出mysql的库文件给系统库查找路径: # echo '/usr/local/mysql/lib' > /etc/ld.so.conf.d/mysql.conf 而后让系统重新载入系统库: # ldconfig -v 8.修改PATH环境变量,让系统可以直接使用mysql的相关命令。 # echo "export PATH=$PATH:/usr/local/mysql/bin" > /etc/profile.d/mysql.sh # source /etc/profile.d/mysql
