vue项目开机自启动
时间: 2023-12-11 14:33:19 浏览: 165
软件开机自启动
要在Linux中将Vue项目设置为开机自启动,可以按照以下步骤进行操作:
1. 创建一个systemd服务文件,例如`vueproject.service`,并将其放置在`/etc/systemd/system/`目录下。
2. 在`vueproject.service`文件中添加以下内容:
```
[Unit]
Description=Vue Project Service
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/npm run start
WorkingDirectory=/path/to/vue/project
Restart=on-failure
[Install]
WantedBy=multi-user.target
```
其中,`Description`为服务的描述,`ExecStart`为启动服务的命令,`WorkingDirectory`为服务的工作目录,`Restart`为服务失败时是否自动重启。
3. 启用并启动服务:
```
systemctl enable vueproject.service
systemctl start vueproject.service
```
4. 查看服务状态:
```
systemctl status vueproject.service
```
5. 停止服务:
```
systemctl stop vueproject.service
```
阅读全文