GBase8a 开机自启动

1、/etc/rc.local 方式

shell 复制代码
echo 'su - gbase -c "gcware_services all restart;gcluster_services all restart"' >> /etc/rc.local
chmod +x /etc/rc.local

2、/etc/init.d 启动服务(测试于centos7)【对于953,可以拆分成两个服务GCluster、GCware】

注意文件加上可执行权限,比如chmod a+x GBase8aBoot

shell 复制代码
[root@node1 init.d]# cat /etc/init.d/GBase8aBoot
#!/bin/sh
#
### BEGIN INIT INFO
# Provides:                    GBase
# Required-Start:       $network
# Should-Start:         $syslog
# Required-Stop:        $network
# Default-Start:                2 3 4 5
# Default-Stop:                 0 1 6
# Short-Description:    GBase 8a Cluster MPP.
# Description:          Provide MPP Database service
### END INIT INFO
#

LOG_PATH=/var/log/GBase8aBoot.log

function is_OK()
{
  if [ $RETVAL -eq 0 ] ;then
    echo "OK"
  else
    echo "FAIL"
  fi
}

RETVAL=0

# See how we were called.
case "$1" in
  start)
          date >> $LOG_PATH
          echo -n "Starting gbase: "
          su - gbase -c"gcware_services all start;gcluster_services all start" >> $LOG_PATH
          RETVAL=$?
          echo `is_OK`
          ;;
  stop)
          date  >> $LOG_PATH
          echo -n "Stopping gbase: "
          su - gbase -c"gcware_services all stop;gcluster_services all stop"  >> $LOG_PATH
          RETVAL=$?
          echo `is_OK`
          ;;
  restart)
        date  >> $LOG_PATH
        echo -n "Restarting gbase: "
        su - gbase -c"gcware_services all restart;gcluster_services all restart"  >> $LOG_PATH
        RETVAL=$?
        echo `is_OK`
        ;;
  status)
        su - gbase -c"gcware_services all info;gcluster_services all info"
        RETVAL=$?
        ;;
  *)
        echo "Usage: $0 {start|stop|restart|status}"
        exit 1
esac

exit $RETVAL

检查命令是否正常

shell 复制代码
[root@node1 init.d]# service GBase8aBoot status
/opt/192.168.140.68/gcware/sbin/gcware is stopped
/opt/192.168.140.68/gcluster/server/bin/gclusterd is stopped
/opt/192.168.140.68/gcluster/server/bin/gcrecover is stopped
/opt/192.168.140.68/gnode/server/bin/gbased is stopped
/opt/192.168.140.68/gnode/server/bin/gc_sync_server is stopped

添加到开机自启动

chkconfig 开机的时候传递一个start的值,作为$1

chkconfig 关机的时候传递一个stop的值,作为$1

shell 复制代码
[root@node1 init.d]# chkconfig --add GBase8aBoot
[root@node1 init.d]# chkconfig --list|grep GBase8aBoot

注:该输出结果只显示 SysV 服务,并不包含
原生 systemd 服务。SysV 配置数据
可能被原生 systemd 配置覆盖。

      要列出 systemd 服务,请执行 'systemctl list-unit-files'。
      查看在具体 target 启用的服务请执行
      'systemctl list-dependencies [target]'。

GBase8aBoot     0:关    1:关    2:开    3:开    4:开    5:开    6:关
相关推荐
jerry-8925 分钟前
系统安全及应用
linux·运维·服务器
叩叮ING1 小时前
正则表达式中常见的贪婪词
java·服务器·正则表达式
AiFlutter1 小时前
在AlarmLinux系统中安装KeyDB
linux·运维·服务器
小徐同学14181 小时前
BGP边界网关协议(Border Gateway Protocol)路由聚合详解
运维·服务器·网络·网络协议·信息与通信·bgp
HaoHao_0101 小时前
AWS Outposts
大数据·服务器·数据库·aws·云服务器
HaoHao_0101 小时前
VMware 的 AWS
大数据·服务器·数据库·云计算·aws·云服务器
晚秋贰拾伍1 小时前
设计模式的艺术-外观模式
服务器·设计模式·外观模式
Trouvaille ~3 小时前
【Linux】命令为桥,存在为岸,穿越虚拟世界的哲学之道
linux·学习·开源·操作系统·编程·命令行·基础入门
kyle~3 小时前
Linux--权限
linux·运维·服务器
谁在夜里看海.3 小时前
【Linux-网络】初识计算机网络 & Socket套接字 & TCP/UDP协议(包含Socket编程实战)
linux·运维·服务器·网络·计算机网络