Member since
02-26-2017
2
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1294 | 03-17-2017 10:43 PM |
03-17-2017
10:43 PM
@Markus Try this it worked for me Go to file /etc/rstudio/rserver.conf Change the default port from 8787 to 8090 as this port is not opened in the docker sandbox. Delete any IP if mentioned in that file. Get back to your root and run the following: wget https://download2.rstudio.org/rstudio-server-rhel-0.99.893-x86_64.rpm sudo yum install --nogpgcheck rstudio-server-rhel-0.99.893-x86_64.rpm ln -s /usr/lib64/libssl.so.10 /usr/lib64/libssl.so.6 ln -s /usr/lib64/libcrypto.so.10 /usr/lib64/libcrypto.so.6 yum install dpkg dpkg-divert --local --rename --add /sbin/initctl ln -s /bin/true /sbin/initctl yum install R rstudio-server verify-installation If running sandbox on Azure. Make sure you add port 8090 to security settings on your azure portal Go into azure > click on your resource group > click on "hadoop-nsg" > click on the Icon next to "Inbound Security rules" > click on Add > give it a name and add 8090 under port number > save Fire up your browser to port 8090. login using user: maria_dev pass: maria_dev
... View more