Linux后台启动服务

Posted Satire

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux后台启动服务相关的知识,希望对你有一定的参考价值。

systemctl 启动/关闭/启用/禁用服务 总结

  1. 启动服务

    systemctl start test.service
    
  2. 关闭服务

    systemctl stop test.service
    
  3. 重启服务

    systemctl restart test.service
    
  4. 显示服务的状态

    systemctl status test.service
    
  5. 在开机时启用服务

    systemctl enable test.service
    
  6. 在开机时禁用服务

    systemctl disable test.service
    
  7. 查看服务是否开机启动

    systemctl is-enabled test.service
    
  8. 查看已启动的服务列表

    systemctl list-unit-files|grep enabled
    
  9. 查看启动失败的服务列表

    systemctl --failed
    

应用

远程VScode服务器——code-server部署

  • Debian, Ubuntu

The standalone arm64 .deb does not support Ubuntu 16.04 or earlier. Please upgrade or build with yarn.

curl -fOL https://github.com/cdr/code-server/releases/download/v$VERSION/code-server_$VERSION_amd64.deb
sudo dpkg -i code-server_$VERSION_amd64.deb
sudo systemctl enable --now code-server@$USER
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml

参考:docs/code-server

以上是关于Linux后台启动服务的主要内容,如果未能解决你的问题,请参考以下文章

linux:nohup后台启动django

linux打开终端如何启动scala,如何在终端下运行Scala代码片段?

Linux启动mongo db后台服务

linux下后台服务程序的启动

Android服务在其仍处于活动状态时停止后台处理

Linux服务开机自启动使用示例