You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Active instance of rstudio-server starts giving an error on login screen about incorrect username or password (on entering correct username an password).
Running sudo rstudio-server restart gave error message complaining about missing library at /usr/local/opt/openssl/lib/libssl.1.0.0.dylib.
What you expected to happen
compatibility with openssl 1.1.
Step-by-step reproduction instructions (by running brew install commands)
Running following code will break current rstudio installation.
brew upgrade <openssl>
sudo rstudio-server start
Formula additions or changes
Solution for the problem:
Manually installing openssl 1.0.2t as identified to work here: aisingapore/TagUI#635
brew install https://github.com/tebelorg/Tump/releases/download/v1.0.0/openssl.rb
# Validate that openssl 1.0.2t is installed
ls -al /usr/local/Cellar/openssl*# Start Rstudio again
sudo -k rstudio-server start
A more robust approach using homebrew's code base is:
brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/8b9d6d688f483a0f33fcfc93d433de501b9c3513/Formula/openssl.rb
# or manually cloning the repo and installing
git clone https://github.com/Homebrew/homebrew-core.git
cd homebrew-core
git checkout 75b57384 Formula/openssl.rb
brew install Formula/openssl.rb
# Validate that it is installed
ls -al /usr/local/Cellar/openssl*# Start Rstudio again
sudo -k rstudio-server start
Please fill out the issue checklist below, and provide all of the requested information.
Please always follow these steps:
brew installing one, specific formula and not every time you runbrew? If it's a generalbrewproblem please file this issue at https://github.com/Homebrew/brew/issues/new or https://github.com/Linuxbrew/brew/issues/new.brew updateand retried your prior step?brew doctor, fixed all issues and retried your prior step?brew gist-logs <formula>(where<formula>is the name of the formula that failed) and included the output link?brew gist-logsdidn't work: ranbrew configandbrew doctorand included their output with your issue?To help us debug your issue please explain:
What you were trying to do (and why)
rstudio-serverinstallation broke on MacOS Catalina afterbrew upgradeupgradedopensslfrom version 1.0 to 1.1.Why did this happen?
openssl 1.0approached EOL at the end of 2019 and was consequently dropped from homebrew in favor ofopenssl 1.1.See: Remove OpenSSL 1.0 Homebrew/homebrew-core#46876
What happened (include command output)
rstudio-serverstarts giving an error on login screen about incorrect username or password (on entering correct username an password).sudo rstudio-server restartgave error message complaining about missing library at/usr/local/opt/openssl/lib/libssl.1.0.0.dylib.What you expected to happen
compatibility with
openssl 1.1.Step-by-step reproduction instructions (by running
brew installcommands)Running following code will break current rstudio installation.
Formula additions or changes
Solution for the problem:
Manually installing openssl 1.0.2t as identified to work here: aisingapore/TagUI#635
A more robust approach using homebrew's code base is: