记一次安装nginx遇到的问题

  1. 下载http://nginx.org/en/download.html
  2. 将下载下来的Nginx上传到/usr/local/nginx/目录下。运行“tar -zxvf nginx-1.13.6.tar.gz”进行解压。
  3. 切换到/usr/local/nginx/nginx-1.13.6目录下,运行./configure进行初始化配置。
报错:
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.

百度 the HTTP rewrite module requires the PCRE library.
却少pcre。
查询一下,发现nginx已经有了自带pcre
find / -name "pcre"
/usr/local/nginx/nginx-1.13.6/auto/lib/pcre
于是指定pcre路径运行 ./configure
./configure --with-pcre=/usr/local/nginx/nginx-1.13.6/auto/lib/pcre
运行这个问题就没了

但依然报错
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.

于是同样的解决办法
./configure --with-pcre=/usr/local/nginx/nginx-1.13.6/auto/lib/pcre --with-zlib=/usr/local/nginx/nginx-1.13.6/auto/lib/zlib

初始化配置解决了。

  1. 编译 make
依然报错
make -f objs/Makefile
make[1]: 进入目录“/usr/local/nginx/nginx-1.13.6”
cd /usr/local/nginx/nginx-1.13.6/auto/lib/pcre \
&& if [ -f Makefile ]; then make distclean; fi \
&& CC="cc" CFLAGS="-O2 -fomit-frame-pointer -pipe " \
./configure --disable-shared 
/bin/sh:行2: ./configure: 没有那个文件或目录
make[1]: *** [/usr/local/nginx/nginx-1.13.6/auto/lib/pcre/Makefile] 错误 127
make[1]: 离开目录“/usr/local/nginx/nginx-1.13.6”
make: *** [build] 错误 2

找不到.configure文件,进入/usr/local/nginx/nginx-1.13.6/auto/lib/pcre/
确实是没有./configure文件
懒得动了,直接换一种解决方法,重新下载pcre安装,将--with-pcre指定到安装的路径

pcre安装过程
1.下载pcre https://sourceforge.net/projects/pcre/files/pcre/并上传服务器
使用tar -zxvf pcre-8.41.tar.gz进行解压。
2. 运行 chmod -R 777 pcre-8.41 对当前文件夹授予全部读写权限。
3. 切换到pcre-8.41目录下,运行 ./configure 进行pcre初始化配置 运行./configure。
然而又报错:
error: You need a C++ compiler for C++ support.
直接yum安装 yum install -y gcc gcc-c++
重新运行./configure,好了。
4. make&&make install
ok
zlib用了yum安装(度娘给的结果)
yum install -y zlib-devel
  1. 继续初始化nginx ,运行./configure --with-pcre=/usr/local/nginx/pcre-8.41
后续使用中却少ssh模块修改此安装过程。
[emerg] the "ssl" parameter requires ngx_http_ssl_module in ...
http转https添加ngx_http_ssl_module编译
1. yum install openssl-devel
2. ./configure --with-pcre=/usr/local/tool/pcre-8.41 --with-http_stub_status_module --with-http_ssl_module
  1. 编译安装
    make&&make install
  2. 注册为服务
[root@root nginx-1.13.6]# whereis nginx
nginx: /usr/local/nginx
[root@root nginx-1.13.6]# vim /etc/init.d/nginx
添加如下内容
#! /bin/sh
# chkconfig: - 85 15

PATH=/usr/local/nginx/sbin

DESC="nginx daemon"
NAME=nginx
DAEMON=/usr/local/nginx/sbin/$NAME
CONFIGFILE=/usr/local/nginx/conf/$NAME.conf
PIDFILE=/usr/local/nginx/logs/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

set -e
[ -x "$DAEMON" ] || exit 0

do_start() {
$DAEMON -c $CONFIGFILE || echo -n "nginx already running"
}

do_stop() {
$DAEMON -s stop || echo -n "nginx not running"
}

do_reload() {
$DAEMON -s reload || echo -n "nginx can't reload"
}

case "$1" in
start)
echo -n "Starting $DESC: $NAME"
do_start
echo "."
;;
stop)
echo -n "Stopping $DESC: $NAME"
do_stop
echo "."
;;
reload|graceful)
echo -n "Reloading $DESC configuration..."
do_reload
echo "."
;;
restart)
echo -n "Restarting $DESC: $NAME"
do_stop
do_start
echo "."
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|reload|restart}" >&2
exit 3
;;
esac

exit 0

添加为服务
[root@root init.d]# chkconfig --add nginx
修改nginx文件权限
[root@root local]# chmod -R 777 nginx
启动nginx
[root@root local]# service nginx start
查看进程
[root@root local]# ps -aux|grep nginx
root     31029  0.0  0.0  18132   600 ?        Ss   22:34   0:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody   31030  0.0  0.0  18572  1068 ?        S    22:34   0:00 nginx: worker process
root     31035  0.0  0.0 112664   976 pts/0    R+   22:36   0:00 grep --color=auto nginx
  1. 设置开机自启
    chkconfig nginx on

然而,网上有很多安装教程可以避免这些问题。
http://www.linuxidc.com/Linux/2016-09/134907.htm

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,463评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,868评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,213评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,666评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,759评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,725评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,716评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,484评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,928评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,233评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,393评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,073评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,718评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,308评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,538评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,338评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,260评论 2 352

推荐阅读更多精彩内容