Rstudio - CENTOS - error while loading shared libraries: libssl.so.1.1: cannot open shared object file

I installed Rstudio server into Centos 7 in a cloud machine.
Following this instructions, but occurrs the error on a command to check the installation:

sudo rstudio-server verify-installation
/usr/lib/rstudio-server/bin/rserver: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory.

I think that the path to access the must be /usr/lib64/ instead of /usr/lib/, but how can I change it?

Steps:

  1. sudo yum install epel-release

  2. sudo yum update

  3. sudo shutdown -r now

  4. sudo yum install R -y

  5. mkdir rserver

  6. cd rserver

  7. wget https://download2.rstudio.org/server/fedora28/x86_64/rstudio-server-rhel-1.2.5001-x86_64.rpm && sudo yum install rstudio-server-rhel-1.2.5001-x86_64.rpm

  8. sudo rstudio-server verify-installation

Regards,
Daniela

The edition of RStudio you're downloading is intended for use with CentOS 8. You might have better luck with this copy:

wget https://download2.rstudio.org/server/centos6/x86_64/rstudio-server-rhel-1.2.5001-x86_64.rpm
sudo yum install rstudio-server-rhel-1.2.5001-x86_64.rpm

Note that while the URL says CentOS 6, it should be compatible with both CentOS 6 and 7.

Thanks a lot. I've already done these steps and works very well.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.