Hi,
normally I use RStudio 1.1.44x as R (and more IDE) from https://www.rstudio.com/products/rstudio/download/
that is the release version which runs fine under Leap 42.3 and TW.
There is also a rolling development release (at this moment Fedora 1.2.565) found at https://dailies.rstudio.com/
To get it going in the past the typical links:
ln -s -f /usr/lib64/libcrypto.so.1.0.0 /usr/lib64/libcrypto.so.10
ln -s -f /usr/lib64/libssl.so.1.0.0 /usr/lib64/libssl.so.10
were sufficient.
now it fails when trying to start RStudio, stating:
This site can’t be reached
127.0.0.1 refused to connect.
Try:
Checking the connection
Checking the proxy and the firewall
ERR_CONNECTION_REFUSED
generally understandable, because RStudio Desktop is an embedded client/server app.
But a bit misleading this screen message is anyhow.
real diag:
rstudio --run-diagnostics
Using R script: /usr/bin/R
Attempting to launch R session...
R_HOME=/usr/lib64/R
R_DOC_DIR=/usr/lib64/R/doc
R_INCLUDE_DIR=/usr/lib64/R/include
R_SHARE_DIR=/usr/lib64/R/share
LD_LIBRARY_PATH=/usr/lib64/R/lib::/lib:/usr/local/lib64
PATH=/home/gsd/bin:/usr/local/bin:/usr/bin:/bin:/usr/lib/mit/sbin
HOME=/home/gsd
R session launched, attempting to connect on port 13892...
/usr/lib/rstudio/bin/rsession: /usr/lib64/libcrypto.so.10: version `libcrypto.so.10' not found (required by /usr/lib/rstudio/bin/rsession)
Connected to R session, attempting to initialize...
Checking with ldd:
ldd /usr/lib/rstudio/bin/rsession
/usr/lib/rstudio/bin/rsession: /usr/lib64/libcrypto.so.10: version `libcrypto.so.10' not found (required by /usr/lib/rstudio/bin/rsession)
...
libssl.so.10 => /usr/lib64/libssl.so.10 (0x00007f6e9adcf000)
libcrypto.so.10 => /usr/lib64/libcrypto.so.10 (0x00007f6e9a964000)
...
This is a hard failure.
I had tried to install the libopenssl_1_0_0-steam and use these for a link target,
ls -la `locate libcrypto.so.10`
lrwxrwxrwx 1 root root 39 Apr 18 20:32 /usr/lib64/libcrypto.so.10 -> /usr/lib/steam/lib64/libcrypto.so.1.0.0
but same failure.
ldconfig states:
ldconfig
ldconfig: /usr/lib64/libcrypto.so.1.0.0 is not a symbolic link
ldconfig: /usr/lib64/libssl.so.1.0.0 is not a symbolic link
which I do not understand at all. This warning disappears when I remove the links ref .10.
On Leap 42.3 the same RStudio 1.2.565 runs okay when the lib links are in place. ldd just gives a warning:
/usr/lib/rstudio/bin/rsession: /usr/lib64/libcrypto.so.10: no version information available (required by /usr/lib/rstudio/bin/rsession)
which is just a warning/soft fail.
Any hints?