다음과 같이 (원격) 콘솔에서 잘 실행되는 Python 스크립트가 있습니다.
sudo /srv/web-asset-server-master/python server.py
문제는 콘솔 창이 열려 있을 때만 존재한다는 것입니다. 그래서 서비스로 운영하고 싶은데 그게 생각보다 까다로운 것 같아요. 이미 이 레시피를 따랐습니다 ->https://www.novell.com/coolsolutions/feature/15380.html(그리고 Unix와 Linux에 관한 비슷한 질문을 읽어보세요.SuSE가 시작된 후 스크립트를 어떻게 실행합니까?
위의 기본 원칙을 모두 따르세요.사용자 정의 초기화 스크립트 만들기나는 이걸했다:
#! /bin/sh
# Copyright (c) 2015 NHMD / specify
# All rights reserved.
#
# Author: Ben Anhalt, 2015
#
# /etc/init.d/attachment-server
# and its symbolic link
# /usr/sbin/attachment-server
### BEGIN INIT INFO
# Provides: attachment-server
# Required-Start: $network
# Required-Stop:
# Default-Start: 3 5
# Default-Stop: 0 1 2 6
# Short-Description: Specify attachment server
# Description: The attachment server is storage medie for Specify attachments
# service. We want it to be active in runlevels 3
# and 5, as these are the runlevels with the network
# available.
### END INIT INFO
# Check for missing binaries
ATT_BIN=/srv/web-asset-server-master/python server.py
test -x $ATT_BIN || { echo "$ATT_BIN not installed";
if [ "$1" = "stop" ]; then exit 0;
else exit 5; fi; }
# Load the rc.status script for this service.
. /etc/rc.status
# Reset status of this service
rc_reset
case "$1" in
start)
echo -n "Starting attachment server "
## Start daemon with startproc(8). If this fails
## the return value is set appropriately by startproc.
startproc $ATT_BIN
# Remember status and be verbose
rc_status -v
;;
stop)
echo -n "Shutting down attachment server "
## Stop daemon with killproc(8) and if this fails
## killproc sets the return value according to LSB.
killproc -TERM $ATT_BIN
# Remember status and be verbose
rc_status -v
;;
restart)
## Stop the service and regardless of whether it was
## running or not, start it again.
$0 stop
$0 start
# Remember status and be quiet
rc_status
;;
reload)
# If it supports signaling:
echo -n "Reload service attachment server "
killproc -HUP $ATT_BIN
#touch /var/run/BAR.pid
rc_status -v
## Otherwise if it does not support reload:
#rc_failed 3
#rc_status -v
;;
status)
echo -n "Checking for service attachment-server "
## Check status with checkproc(8), if process is running
## checkproc will return with exit status 0.
# Return value is slightly different for the status command:
# 0 - service up and running
# 1 - service dead, but /var/run/ pid file exists
# 2 - service dead, but /var/lock/ lock file exists
# 3 - service not running (unused)
# 4 - service status unknown :-(
# 5--199 reserved (5--99 LSB, 100--149 distro, 150--199 appl.)
# NOTE: checkproc returns LSB compliant status values.
checkproc $ATT_BIN
# NOTE: rc_status knows that we called this init script with
# "status" option and adapts its messages accordingly.
rc_status -v
;;
*)
## If no parameters are given, print which are avaiable.
echo "Usage: $0 {start|stop|status|restart|reload}"
exit 1
;;
esac
rc_exit
이는 서비스 이름과 스크립트 경로를 변경하는 가장 간단한 예입니다. 및 "첨부 서버"예이제 실제로 시스템->시스템 서비스에서 YAST에 의해 등록되었지만 활성화하려고 하면 오류가 발생합니다.
/etc/init.d/attachment-server start가 2를 반환합니다(매개변수가 잘못되었거나 너무 많음).
무엇이 잘못되었을 수 있나요? 이 스크립트에 어떤 문제가 있는지 알 수 없습니다. 기본적으로 스크립트를 실행하는 것뿐입니다.
저는 SLES를 완전히 처음 접했다고 말씀드리고 싶습니다.
답변1
당신의 라인
ATT_BIN=/srv/web-asset-server-master/python server.py
ATT_BIN 변수가 설정되고 server.py가 실행됩니다. 일반적으로 ATT_BIN은 실행할 단일 파일의 전체 경로 이름이어야 합니다(예를 들어 /home/me/server.py
Python 스크립트가 이 파일에 있는 경우).
일반적으로 귀하의 경우 첫 번째 줄이 다음과 같이 server.py가 변경됩니다.
#!/srv/web-asset-server-master/python
그러면 실행 시 인터프리터를 지정할 필요가 없으며 직접 설정하면 됩니다.
ATT_BIN=/home/me/server.py
Python 파일에 대한 실행 권한을 설정했는지 확인하세요. 예를 들면 다음과 같습니다.
chmod a+rx /home/me/server.py