RStudio Server not starting

余生长醉 提交于 2021-01-27 07:32:36

问题


I have been working in a remote RStudio server for the last few months without any issues. Today, I restarted the rstudio server in using this command

sudo rstudio-server restart

After this, I am not able to access the server via browser. It keeps on waiting.

I checked the status using this:

sudo rstudio-server status

This resulted in:

rstudio-server stop/waiting

My server is configured to run on port 80


回答1:


I have found the solution myself

The RStudio server was configured to run on port 80

Kill all the processess using port 80 and then start RStudio server

 sudo fuser -k 80/tcp
 sudo rstudio-server start

This solved the problem!



来源:https://stackoverflow.com/questions/36446316/rstudio-server-not-starting

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!