完善原生安装文档

This commit is contained in:
dushixiang 2021-04-12 22:53:21 +08:00
parent ef9efb7fba
commit 4f73cd3673

View File

@ -157,9 +157,9 @@ server:
./next-terminal ./next-terminal
``` ```
使用systemd方式启动 使用系统服务方式启动
`/etc/systemd/system/` 目录创建文件并写入以下内容 `/etc/systemd/system/` 目录创建 `next-terminal.service` 文件并写入以下内容
```shell ```shell
[Unit] [Unit]
Description=next-terminal service Description=next-terminal service
@ -175,9 +175,10 @@ Restart=on-failure
WantedBy=multi-user.target WantedBy=multi-user.target
``` ```
重载系统服务&&设置开机启动&&启动服务 重载系统服务&&设置开机启动&&启动服务&&查看状态
```shell ```shell
systemctl daemon-reload systemctl daemon-reload
systemctl enable next-terminal systemctl enable next-terminal
systemctl start next-terminal systemctl start next-terminal
systemctl staus next-terminal
``` ```