R-shiny服务器安装及配置

R的shiny 服务器管理-入门
http://www.bio-info-trainee.com/1683.html

sudo systemctl start shiny-server
sudo systemctl stop shiny-server
sudo systemctl restart shiny-server
sudo systemctl kill -s HUP --kill-who=main shiny-server
sudo systemctl status shiny-server    ## 查看状态
sudo systemctl enable shiny-server   ## 开机启动
sudo systemctl disable shiny-server  ## 关闭开机启动
## 如果是其它linux版本,请参照shiny官网的服务器维护指南:http://rstudio.github.io/shiny-server/latest/

原文地址:https://www.cnblogs.com/iupoint/p/10763436.html