-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Redis configuration #2579
Comments
Hello. Thank you for your comment. I'll look into this. |
Thank you for your reply David.
The following worked for me:
Store configuration in:
/var/snap/redis/common/redis.config
The run:
sudo systemctl edit snap.redis.server
add the following:
[Service]
ExecStart=
ExecStart=/usr/bin/snap run redis.server /var/snap/redis/common/redis.conf
https://stackoverflow.com/a/71168952
snap redis server and redis cli both give openssl errors on 22.04 because
they need 1.1.1 and that has to be downloaded from and installed on Ubuntu.
But OpenSSL 1.1.1 is EOL anyway (separate issue?)
https://www.openssl.org/blog/blog/2023/09/11/eol-111/#:~:text=available%20security%20fixes.-,OpenSSL%201.1
.,of%20today%2C%2011th%20September%202023.
If someone comes across this and needs it anyway:
https://stackoverflow.com/a/72633324
At the end it did start the server with the custom configuration in my case.
But it didn't load the .so modules (json, search, ...) that I got from the
redis docker image because these .so files ask for some /lib/... which
wasn't accessible over snap so the server quit.
I too quit at that point.
I ended up doing the normal installation by adding the repository and apt
installing, then that worked fine with the .so modules.
Best regards
Yannis
…On Tue, 24 Oct 2023, 16:46 David Dougherty, ***@***.***> wrote:
Hello. Thank you for your comment. I'll look into this.
—
Reply to this email directly, view it on GitHub
<#2579 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AONY5LCOBRURJOBZZPSWS3TYA7IDVAVCNFSM6AAAAAA6NQC5D6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONZXGM4DSNBYGE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When installing redis server 7.2 with snap on Ubuntu the documentation isn't clear on where the configuration file is stored and also there are no hints on how to include a custom configuration.
https://redis.io/docs/management/config/
The text was updated successfully, but these errors were encountered: