以下のように、centos マシンに stunnel をインストールしました。
yum install stunnel -y
openssl genrsa -out privkey.pem 2048
openssl req -new -x509 -key privkey.pem -out cacert.pem -days 1095
cat privkey.pem cacert.pem >> /etc/stunnel/stunnel.pem
chmod 600 /etc/stunnel/stunnel.pem
chown nobody.nobody /var/run/stunnel
nano -K /etc/stunnel/stunnel.conf
cert = /etc/stunnel/stunnel.pem
chroot = /var/run/stunnel/
pid = /stunnel.pid
setuid = nobody
setgid = nobody
output = stunnel.log
[squid]
# Ensure the ‘connect’ line matches your squid port. Default is 3128
accept = 8088
connect = 127.0.0.1:1945
私の問題は、stunnel のインストール後に、インストールされた stunnel のサービスがないことです 。
だから私はこれを書いた:
nano -K /etc/init.d/stunnel
#!/bin/bash
# /etc/rc.d/init.d/stunnel
#
# Starts the stunnel daemon
#
# chkconfig: 345 70 30
# description: Stunnel Server is a ...
# processname: stunnel
# config: /etc/stunnel/stunnel.conf
# Source function library.
. /etc/init.d/functions
test -x /usr/sbin/stunnel || exit 0
RETVAL=0
#
# See how we were called.
#
prog="stunnel"
start() {
# Check if stunnel is already running
if [ ! -f /var/lock/subsys/stunnel ];
then
echo -n $"Starting $prog: "
daemon /usr/sbin/stunnel
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/stunnel
echo
fi
return $RETVAL
}
stop() {
echo -n $"Stopping $prog: "
killproc /usr/sbin/stunnel
RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/stunnel
echo
return $RETVAL
}
restart() {
stop
start
}
reload() {
restart
}
status() {
status /usr/sbin/stunnel
}
case "$1" in
start)
start
;;
stop)
stop
;;
reload|restart)
restart
;;
status)
status
;;
*)
echo $"Usage: $0 {start|stop|restart|reload|status}"
exit 1
esac
exit $?
exit $RETVAL
chmod +x /etc/init.d/stunnel
chkconfig --add stunnel
書き込まれたサービスの開始コマンドは正常に機能します: service stunnel start : OK。
しかし、停止コマンド中にエラーが発生しました: service stunnel stop : FAILED
ステータス コマンド中にエラーが発生しました: service stunnel status :
/sbin/service: line 66: 7456 Segmentation fault env -i LANG="$LANG" PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/ ${SERVICE}" ${OPTIONS}
私は何を間違えましたか、どうすれば問題を解決できますか?
そのサービスを受けるためのより良い方法はありますか?
前もって感謝します