Install RStudio Server on centOS6.5

[This article was first published on SupStat Data Science Blog » r-bloggers, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

      My system is 64-bit centOS 6.5. The 64-bit version then is 0.98.766 and the following error  appeared when installing RStudio Server preview version:

error-reprot

Refer to an article on stackoverflow:

stackoverflow

Completion of the above steps is still not enough. Running rstudio-server verify-installation still reports errors.

The problem lies in the lack of library files, but there is indeed a file as mentioned in the error report  under /usr/lib. Then let’s check the library files under / usr/lib64 :

library-file

We could find there is no libcrypto.so.6 and libssl.so.6.

Attempting  to create a soft link library files:

soft-link

rstudio-server verify-installation  test passed.

Firewall settings

In the browser, when entering http:// : 8787, you will find it impossible to get accessed.  This  is due to built-in firewall policy in centOS which have not added 8787 port. Next, modify the firewall configuration file:

firewall

Add -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT after the following sentence:

add

So that you can access it!

rstudio-server-login

User Settings

Sometimes we want to restrict user access to Rstudio Server, then it is necessary to modify the configuration file /etc/rstudio/rserver.conf, and add the following sentence:

config

Then add users groups rstudio_users and user supstat in the command line:

add-user

 

Then we can use supstat account to login in the Rstudio Server :

rstudio-server

View the process:

process_view

We can see there are two rstudio-server-related processes: one is rserver system, and the other is the user supstat ‘s  rsession.

System configuration and system management

 

For installing under ubuntu you can refer to Zhang Dan’s blog

 

To leave a comment for the author, please follow the link and comment on their blog: SupStat Data Science Blog » r-bloggers.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)