|
按照置顶帖第二页:在/etc/init.d下面建立一个文件xunlei
里面的内容是
#!/bin/sh
case $1 in
start)
/nfs/fangchang/xunlei/portal
;;
stop)
/nfs/fangchang/xunlei/portal -s
;;
*)
echo "Usage0(start|stop)"
;;
esac
chmod 755 /etc/init.d/xunlei
ln -sf /etc/init.d/xunlei /etc/rc2.d/S99xunlei
ln -sf /etc/init.d/xunlei /etc/rc0.d/K01xunlei
ln -sf /etc/init.d/xunlei /etc/rc6.d/K01xunlei
完成并修改了上面代码portal的地址(我装在/nfs/Enzo/xunlei
依旧不行
|
|