RSclient connects to Rserve via TLS not 95%

I had a problem when I connect to Rserv from RSclient and the connection does not work 95% of the time when creating a TLS connection. It literally fails most of the time and> sometimes <it just works. however, when I connect without TLS, it works every time. here's a bad connection:

con <- RS.connect(host = "127.0.0.1", port = 4445, tls = TRUE) RS.login(con, user = "myRserveUserName", password="myRservePW", authkey=RS.authkey(con)) rsc_abort: read error Error in RS.authkey(con) : read error - could not obtain response header 

Meanwhile, in the RServe console, I get this error:

 Error: ignoring SIGPIPE signal Fatal error: unable to initialize the JIT 

I just add that I am running the latest versions of R and libraries and openssl. I would be grateful for any ideas. thanks

EDIT: adding sessionInfo () result

 > sessionInfo() R version 3.4.3 (2017-11-30) Platform: x86_64-redhat-linux-gnu (64-bit) Running under: Red Hat Enterprise Linux Server release 6.8 (Santiago) Matrix products: default BLAS: /usr/lib64/R/lib/libRblas.so LAPACK: /usr/lib64/R/lib/libRlapack.so locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8 [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 [7] LC_PAPER=en_US.UTF-8 LC_NAME=C [9] LC_ADDRESS=C LC_TELEPHONE=C [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] RSclient_0.7-3 loaded via a namespace (and not attached): [1] compiler_3.4.3 
+5
source share

Source: https://habr.com/ru/post/1273911/


All Articles