统信uos系统部署tomcat
时间: 2024-01-19 09:17:58 浏览: 271
xxl-job-springboot:将xxl-job修改为springboot版本 本地测试直接启动就可以了。不再需要手动部署tomcat
以下是在统信uos系统部署Tomcat的步骤:
1. 创建符号链接:
```shell
ln -s /lib/systemd/system/tomcat.service /etc/systemd/system/multi-user.target.wants/tomcat.service
```
2. 设置配置文件权限:
```shell
chmod 755 /usr/lib/systemd/system/tomcat.service
```
3. 重新加载系统服务:
```shell
systemctl daemon-reload
```
4. 设置开机自启动:
```shell
systemctl enable tomcat.service
```
5. 启动Tomcat:
```shell
systemctl start tomcat.service
```
6. 测试开机自启动:
```shell
reboot
```
重启后执行以下命令:
```shell
systemctl status tomcat.service
```
如果看到设置成功的提示,说明Tomcat已成功部署在统信uos系统上。
阅读全文