셸 프로 그래 밍 실전 - 서비스 시작 스 크 립 트 작성

원본 설치 nginx
[root@localhost Desktop]# tar zxf nginx-1.17.8.tar.gz 
[root@localhost Desktop]# ls
nginx-1.17.8  nginx-1.17.8.tar.gz

해결 의존성:
yum install -y gcc openssl-devel pcre-devel

설치:
cd nginx-1.17.8/
./configure --prefix=/usr/local/nginx
make && make install

서 비 스 를 시작 하 다
/usr/local/nginx/sbin/nginx
/usr/local/nginx/sbin/nginx -V #      
netstat -ntulp | grep nginx

2. nginx 서비스 시작 스 크 립 트 의 작성:/etc/init.d/ 에서 스 크 립 트 작성 nginxd:
[root@localhost init.d]# cat nginxd
#!/bin/bash
. /etc/init.d/functions			#       
path=/usr/local/nginx/sbin		#  nginx      

function start() {
	if [ `netstat -antlpe|grep nginx|wc -l` -eq 0 ];then
		$path/nginx
		RETVAL=$?
		if [ $RETVAL -eq 0 ];then
			action "nginx is started" /bin/true
			return $RETVAL
		else
			action "nginx is started" /bin/false
			return $RETVAL
		fi
	else
		echo "nginx is running"
	fi
}

function stop() {
        if [ `netstat -antlpe|grep nginx|wc -l` -ne 0 ];then
                $path/nginx -s stop
                RETVAL=$?
                if [ $RETVAL -eq 0 ];then
                        action "nginx is stoped" /bin/true
                        return $RETVAL
                else
                        action "nginx is stoped" /bin/false
                        return $RETVAL
                fi
        else
                echo "nginx is not running"
		return 0
	fi
}

case "$1" in
	start)
	start
	;;
	stop)
	stop
	;;
	restart)
	stop
	sleep 1
	start
	;;
	*)
		echo $"USeage: $0 {start|stop|restart}"
		exit 1
esac


테스트:
cd /etc/init.d/
[root@localhost init.d]# sh nginxd start
nginx is started                                           [  OK  ]
[root@localhost init.d]# sh nginxd stop
nginx is stoped                                            [  OK  ]
[root@localhost init.d]# sh nginxd start
nginx is started                                           [  OK  ]
[root@localhost init.d]# sh nginxd restart
nginx is stoped                                            [  OK  ]
nginx is started                                           [  OK  ]
[root@localhost init.d]# sh nginxd restartttt
USeage: nginxd {start|stop|restart}

좋은 웹페이지 즐겨찾기