1.编写脚本
依次执行以下命令
- cd /etc/rc.d/init.d/
- touch tomcat-auto-start.sh
- vim tomcat-auto-start.sh
在文本中输入:
#!/bin/sh
#chkconfig: 2345 20 80
bash /root/tomcat/bin/startup.sh
其中tomcat的路径为绝对路径,且前两行#之后的内容必须存在。
之后再执行以下命令
- chmod +x tomcat-auto-start.sh
- chkconfig --add tomcat-auto-start.sh
- chkconfig tomcat-auto-start.sh on
2.centos配置
执行以下命令
- vim $JAVA_HOME/jre/lib/security/java.security
其中$JAVA_HOME是你安装java的目录,将securerandom.source=file:/dev/urandom更换为securerandom.source=file:/dev/./urandom
至此结束。