LINUX、docker容器应用服务自动启动脚本
LINUX、docker容器应用服务自动启动脚本vi /run.sh编辑如下:#!/bin/bash# Export environment variablesource /etc/profile#start tomcatsh /opt/tomcat/bin/catlina.sh run &编辑环境变量:vi /etc/profilesh /run.sh保存后需 source /e
·
LINUX、docker容器应用服务自动启动脚本
vi /run.sh
编辑如下:
#!/bin/bash
# Export environment variable
source /etc/profile
#start tomcat
sh /opt/tomcat/bin/catlina.sh run &
编辑环境变量:
vi /etc/profile
sh /run.sh
保存后需 source /etc/profile
若要使 /etc/profile 永久生效,
则编辑vi
~/.bashrc
添加:
source /etc/profile
保存退出,source ~/.bashrc
更多推荐
已为社区贡献2条内容
所有评论(0)