# From /home/louistw/.local/share/rstudio/log/rserver.log on pascalnodes:2023-09-27T18:42:39.400971Z [rserver] ERROR R did not return any output when queried for directory location information; LOGGED FROM: bool rstudio::core::r_util::{anonymous}::detectRLocationsUsingR(const string&, rstudio::core::FilePath*, rstudio::core::FilePath*, rstudio::core::config_utils::Variables*, std::string*, const string&, const string&, const rstudio::core::FilePath&) src/cpp/core/r_util/REnvironmentPosix.cpp:5382023-09-27T18:42:39.613641Z [rserver] ERROR system error 71 (Protocol error)[description: Unable to parse version from R, version-info: , r-error: ]; OCCURRED AT rstudio::core::Error rstudio::core::r_util::rVersion(const rstudio::core::FilePath&, const rstudio::core::FilePath&, const string&, const string&, const string&, const rstudio::core::FilePath&, std::string*) src/cpp/core/r_util/REnvironmentPosix.cpp:946; LOGGED FROM: bool rstudio::core::r_util::detectREnvironment(const rstudio::core::FilePath&, const rstudio::core::FilePath&, const string&, std::string*, std::string*, rstudio::core::r_util::EnvironmentVars*, std::string*, const string&, const string&, const rstudio::core::FilePath&) src/cpp/core/r_util/REnvironmentPosix.cpp:7892023-09-27T18:43:08.856219Z [rserver] ERROR system error 111 (Connection refused)[request-uri: /rpc/client_init]; OCCURRED AT void rstudio::core::http::LocalStreamAsyncClient::handleConnect(const rstudio_boost::system::error_code&) src/cpp/server/ServerSessionProxy.cpp:124; LOGGED FROM: void rstudio::server::session_proxy::{anonymous}::logIfNotConnectionTerminated(const rstudio::core::Error&, const rstudio::core::http::Request&) src/cpp/server/ServerSessionProxy.cpp:477
I tried a command from this post, and got the following error:
# On pascalnodes partition(c0107)$ R --slave--vanilla-e'cat(R.Version()$major,R.Version()$minor, sep=".")'[1] 27248 illegal hardware instruction R --slave--vanilla-e'cat(R.Version()$major,R.Version()$minor, sep=".")'# On short partition(c1068):$ R --slave--vanilla-e'cat(R.Version()$major,R.Version()$minor, sep=".")'4.2.0%
== 2023-10-16 13:54:41,012 build_log.py:171 ERROR EasyBuild crashed with an error (at easybuild/software/EasyBuild/4.8.1/lib/python2.7/site-packages/easybuild/base/exceptions.py:126 in __init__): OpenSSL v1.1 headers not found in host system, but libraries for v1.1.1k are present. Install the development package of OpenSSL for your system or force building OpenSSL from source in EasyBuild by setting 'wrap_system_openssl = False'in the OpenSSL easyconfig. (at easybuild/software/EasyBuild/4.8.1/lib/python2.7/site-packages/easybuild/easyblocks/o/openssl_wrapper.py:267 in __init__)
Check installed yum packages and found that we have mix versions installed but only one version of devel package installed:
First, go through easybuild log files and get the package name and which host it was built on.
$ for f in /share/apps/rc/software/*/*/easybuild/*.log;doecho$f | awk-F'/''{print $6"/"$7}'>> package-hosts.txt;head-n 1 $f | perl -lne'print $1 if /(\S+).$/'>> package-hosts.txt;done