时间同步
修改配置(同步其他服务器时间同时作为时间服务器)
1 | [root@localhost ~]# cat /etc/chrony.conf |
修改配置(同步其他服务器的时间)
1 | vi /etc/chrony.conf |
重启
1 | systemctl stop chronyd |
查看
1 | chronyc sources |
如果同步时间出现不同步时间的问题请关闭selinux试试
tomcat自启动
添加变量到setenv.sh(没有的话在bin目录新建一个)中,catalina.sh会调用
1 | vi /usr/local/apache-tomcat-8.5.35/bin/setenv.sh |
设置启动脚本
1 | vi /usr/lib/systemd/system/tomcat8_hcpt.service |
启动
1 | systemctl enable tomcat8_hcpt |
centos7+tomcat9自启动
添加变量到setclasspath.sh中,catalina.sh会调用
1 | vi /usr/local/tomcat9/bin/setclasspath.sh |
设置启动脚本
1 | vi /usr/lib/systemd/system/tomcat9.service |
启动
1 | systemctl enable tomcat9 |