nginx安裝腳本(後續優化)

#!/bin/bash
. /etc/init.d/functions
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
sleep 2
yum makecache
if [ $? -eq 0 ];then
echo "yum change success !" /bin/true
else
echo "yum change failure" /bin/false
exit 1
fi

yum -y install pcre pcre-devel openssl-devel openssl gcc-c++
if [ $? -eq 0 ];then
echo "yum success !" /bin/true
else
echo "yum failure" /bin/false
exit 1
fi
useradd www -s /sbin/nologin -M
[ ! -d /home/tools ] && mkdir /home/tools -p
[ ! -d /application ] && mkdir /application

cd /home/tools
wget -q http://nginx.org/download/nginx-1.6.3.tar.gz
if [ $? -eq 0 ];then
echo "download success !" /bin/true
else
echo "download failure" /bin/false
exit 1
fi
tar xf nginx-1.6.3.tar.gz
if [ $? -eq 0 ];then
echo "tar success !" /bin/true
else
echo "tar failure" /bin/false
exit 1
fi

cd nginx-1.6.3
./configure --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --prefix=/application/nginx-1.6.3
if [ $? -eq 0 ];then
echo "configure success !" /bin/true
else
echo "configure failure" /bin/false
exit 1
fi
make
if [ $? -eq 0 ];then
echo "make success !" /bin/true
else
echo "make failure" /bin/false
exit 1
fi
make install
if [ $? -eq 0 ];then
echo "install success !" /bin/true
else
echo "install failure" /bin/false
exit 1
fi
ln -s /application/nginx-1.6.3/ /application/nginx
/application/nginx/sbin/nginx
ps -ef |grep nginx
#HTTP_CODE=curl -I -s -w "%{http_code}\n" -o /dev/null www.baidu.com
#if [ $HTTP_CODE -eq 200 -o $HTTP_CODE -eq 301 ]
#then
#action "Nginx is running" /bin/true
#else
#action "Nginx already been down" /bin/false
#fi
注意:curl處 有反引號 tab鍵上面那個符號;

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章