install nginx
Install nginx
1.安装依赖
# yum install gcc openssl-devel pcre-devel zlib-devel
2.解压文件
# yum -y install wget
# wget http://tengine.taobao.org/download/tengine-2.1.0.tar.gz
# tar -zxvf tengine-2.1.0.tar.gz
# cd tengine-2.1.0
3.编译安装
# mkdir /usr/local/tengine-2.1.0
# mkdir -p /var/tmp/nginx/client
./configure \ --prefix=/usr/local/tengine-2.1.0 \ --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 \ --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
# 千万不要忘记执行
# make && make install
4.配置启动服务
# cd /etc/init.d
# vim nginx
注意:要先按i进入编辑模式在粘贴文本,否则会出现前面部分文本丢失。
#!/bin/bash # # chkconfig: - 85 15 # description: nginx is a World Wide Web server. It is used to serve # 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/local/tengine-2.1.0/sbin/nginx" prog=$(basename $nginx) NGINX_CONF_FILE="/usr/local/tengine-2.1.0/conf/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: " # -HUP是nginx平滑重启参数 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
5.设置权限&添加服务
# chmod 755 nginx
# chkconfig --add nginx
启动,停止,重新装载
# service nginx start/stop/reload
注意如果启动失败:请检查启动服务的文本是否在复制粘贴的时候有丢失
如果可以正常启动,但是页面打开失败,请关闭防火墙。
没有什么是写一万遍还不会的,如果有那就再写一万遍。
【活动】一元专享1500元微软智能云Azure
【推荐】融云发布 App 社交化白皮书 IM 提升活跃超 8 倍
【推荐】自开发 零实施的BPM
· Flash穷途末路:微软Edge浏览器宣布阻止运行
· Windows 10 Build 15002发布:多项改进 体验升级
· 日本AI机器人Torobo-kun放弃高考 阅读理解能力欠缺
· 人人影视与人人视频彻底分手 免费字幕组的商业化困局
· 咸蛋家被曝拖欠主播费用 直播小平台已开始倒掉
» 更多新闻...
· 写给未来的程序媛
· 高质量的工程代码为什么难写
· 循序渐进地代码重构
· 技术的正宗与野路子