1,centos7使用systemctl替换了service命令参考:redhat文档:
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/sect-Managing_Services_with_systemd-Services.html#sect-Managing_Services_with_systemd-Services-List
查看全部服务命令:
systemctllist-unit-files--typeservice
查看服务
systemctlstatusname.service
启动服务
systemctlstartname.service
停止服务
systemctlstopname.service
重启服务
systemctlrestartname.service增加开机启动
systemctlenablename.service
删除开机启动
systemctldisablename.service
其中.service可以省略。
2,tomcat增加启动参数tomcat需要增加一个pid文件
在tomca/bin目录下面,增加setenv.sh配置,catalina.sh启动的
时候会调用,同时配置java
内存参数。
复制代码