-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenSSL version conflict during "rvm install 2.7.1" on Ubuntu 22.04 #127
Comments
Small addendum to previous statement about depencies issues, and why i am not going to use OSB: I simply was not able to complete the installation. The software stack is screaming about deprecated functions, dependencies and versions mismatch at each step. I appreciate the efforts, and the simple fact this is open source... b u t |
i've had similar/same issues @qbonenfant trying to install OSB. tried on macos via homebrew and on my aws account (ubuntu) mainly ran into problems running once i was able to fix all that and a few other snags, running 'rails server' tried the following error (see attached screenshot):
happy to reproduce & document every step from start to errors if needed -- would be great if this worked cause the demo looks dope, ty!! @qbonenfant any luck finding another similar open-source billing/invoicing? |
@sapioXmachina , @qbonenfant : I got it working on my Mac M2 but not fully tested yet. Let me know if you are still interested, I can try forking and pushing my changes to it. It would be awesome to bring this one back to life! |
Trying to build on an Ubuntu 22.04 (using microsoft WSL2), i got an issue while trying to compile ruby2.7.1 using rvm.
rvm install 2.7.1
The error found in the log file is the following:
error: ‘RSA_SSLV23_PADDING’ undeclared (first use in this function)
It seems it boils down to a security fix in "recent" openssl making RSA_SSLV23_PADDING deprecated: #openssl/openssl#14216
After reading this:
https://stackoverflow.com/questions/72250611/rsa-sslv23-padding-undeclared-first-use-in-this-function-did-you-mean-rsa,
I managed to "fix" this by manually compiling openssl1.1.1 as described in previous link:
I then ran rvm install with a custom openssl dir
rvm instal 2.7.1 --with-openssl-dir=$HOME/lib/openssl
This is not the first issue I encountered with depencies / version mismatch during the installation procedure, it would be nice to fix this.
The text was updated successfully, but these errors were encountered: