应用场景
在设置HBlock使用的数据目录自动挂载后,可以设置HBlock开机自启动。
前提条件
HBlock使用的缓存盘已自动挂载。
具体操作
对于HBlock服务,执行下列步骤实现HBlock服务开机自动启动:
- 创建HBlock的管理脚本。
cat >> /etc/init.d/stor <<EOF #!/bin/bash #chkconfig: 3 99 99 #description: stor storpath="Stor_安装目录" # HBlock安装路径 case \$1 in start) source /etc/profile cd \$storpath && ./stor start ;; esac EOF
- 设置开机运行HBlock系统服务。
chmod +x /etc/init.d/stor chkconfig --add stor chkconfig stor on