通过TLS从RSclient到Rserve的连接在95%的时间内失败

时间:2017-12-07 08:32:17

标签: r ssl https tls1.2 rserve

我遇到了一个问题,我从RSclient连接到Rserv,并且在建立TLS连接时95%的连接无法正常工作。它在大多数情况下完全失败,并且有时<它只是工作。 但是,当我在没有TLS的情况下建立连接时,它每次都有效。 这是一个不成功的联系:

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

同时,在RServe控制台中我收到此错误:

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

我将补充一点,我正在运行最新的R和库版本以及openssl。 我很感激任何想法。感谢

编辑:添加sessionInfo()输出

> 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

1 个答案:

答案 0 :(得分:0)

我在github上提出了这个错误报告: https://github.com/s-u/Rserve/issues/92
开发人员已确认这是RSclient的问题,他已将其修复。