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