I have a Linux server with Redis installed and I want to connect to it via command line from my local Linux machine.
Is it possible to install redis-cli
only (without redis-server
and other tools)?
If I just copy redis-cli
file to my local machine and run it, I have the following error:
./redis-cli: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by ./redis-cli)
redit
packages it provides. Then installing one of those shoudl only require a single click. You should never do a wild installation of stuff into a Linux system if you can use the software management instead. – arkaschagit clone [email protected]:antirez/redis.git
thencd src && make redis-cli
? – deltheil