Linux环境服务自启动配置

创建启动文件

[root@localhost init.d]# cd /etc/rc.d/init.d/
[root@localhost init.d]# ls
derby.log  dump.rdb  functions  logs  netconsole  network   README 
[root@localhost init.d]# vi autostart.sh 
#!/bin/sh
#chkconfig:6379 80
#decription:autostart
sleep 2
sh /tools/bin/redis.sh start
[root@localhost init.d]# chkconfig --add autostart.sh
[root@localhost init.d]# chkconfig autostart.sh on

redis启动脚本

#!/bin/sh
# chkconfig: 2345 10 90
# description: Start and Stop redis
PATH=/tools/redis-5.0.4/src
REDISPORT=6379
EXEC=/tools/redis-5.0.4/src/redis-server
REDIS_CLI=/tools/redis-5.0.4/src/redis-cli
PIDFILE=/var/run/redis.pid
CONF="/tools/redis-5.0.4/redis.conf"

case "$1" in
    start)
        if [ -f $PIDFILE ]
        then
            echo "$PIDFILE exists, process is already running or crashed."
        else
            echo "Starting Redis server..."
            $EXEC $CONF
        fi
        if [ "$?"="0" ]
        then
            echo "Redis is running..."
        fi
        ;;
    stop)
        if [ ! -f $PIDFILE ]
        then
            echo "$PIDFILE exists, process is not running."
        else
            PID=$(cat $PIDFILE)
            echo "Stopping..."
            $REDIS_CLI -p $REDISPORT SHUTDOWN
            while [ -x $PIDFILE ]
            do
                echo "Waiting for Redis to shutdown..."
                sleep 1
            done
            echo "Redis stopped"
        fi
        ;;
    restart|force-reload)
        ${0} stop
        ${0} start
        ;;
    *)
        echo "Usage: /tools/redis-5.0.4/redis {start|stop|restart|fore-reload}"
        exit 1
esac

检查服务是否安装\启动

#检查服务状态,是否安装
SERVICE=java
netstat -anp | grep $SERVICE &> /dev/null
if [ $? -eq 0 ]
then
 echo "$SERVICE服务已经启动!"
else
 rpm -q $SERVICE &> /dev/null
 if [ $? -eq 0 ]
 then
   echo "$SERVICE服务已安装,正在启动...."
 else
   echo "该服务未安装!"
 fi
fi

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值