셸 스 크 립 트 원 키 배치 nginx
1891 단어 셸 스 크 립 트
cat ${pid_file}
" kill cat ${pid_file}
echo "서비스 가 점용 되 었 습 니 다. 삭제 되 었 습 니 다" else echo "서비스 가 점용 되 지 않 았 습 니 다" continue finginx = / usr / local / nginx / sbin / nginx \ # nginx read - p 시작 "다음 작업 을 입력 하 십시오:" action check () {netstat - anptu | grep nginx if [$? - eq 0]; then continue fi} case $action in start) netstat - anptu | grep nginx if [$? - eq 0];then continue else $nginx fi ;; stop) netstat -anptu | grep nginx if [ $? -eq 0 ]; then echo “nginx-server is already running nginx-server begin stop” $nginx -s stop else echo “nginx-server is not start” fi ;; reload) netstat -anptu | grep nginx if [ $? -eq 0 ]; then echo “nginx-server is already running nginx-server begin reload” $nginx -s reload else echo “nginx-server is not running now begin start nginx-server” $nginx $nginx -s reload fi ;; statue) check ;; *) echo “please enter{start|stop|reload|statue}” ;; esac ip=
/sbin/ifconfig -a|awk '{print $2}'|sed -n '2p'
code= curl -I -m 10 -o /dev/null -s -w %{http_code} http://${ip}
if [ $code -eq 200 ]; then echo “nginx-server is ok” else echo “nginx-server is not ok” fi
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
셸 스 크 립 트 (다 중 스 레 드 대량 생 성 사용자)예 를 들 어 백업 데이터 베 이 스 는 100 개의 라 이브 러 리 가 있 고 정상 적 인 백업 효율 이 매우 낮 습 니 다.다 중 스 레 드 가 있 으 면 백업 하 는 데 10 시간 이 걸 릴 수도 있 었 는데 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.