Skip to main content

All Questions

Tagged with
2 votes
0 answers
171 views

Is it possible to use explicit huge pages in redis

I know that Redis does not work well with THB (Transparent Huge Pages), but is it possible to run Redis using explicit 2MB or 1GB HugePages? Unfortunately googling the issue always gives a ton of info ...
HubertNNN's user avatar
  • 433
0 votes
0 answers
113 views

How to cross-compile REDIS for ppc_85xxDP?

When I try to compile redis source code for ppc_85xxDP , I'm getting the following errors. Can someone help me in solving this error ? export TNAME=ppx_85xxDP export ARCH=powerpc export ...
Jayaram18's user avatar
10 votes
2 answers
14k views

How can I install redis server 7 on Ubuntu 22.04?

I'd like to install the newest Redis Server 7 on my Ubuntu 22.04 (I've already installed Redis Server version 6 via standard workflow with apt install). I tried to use a Snap package from https://...
Eddie R's user avatar
  • 351
0 votes
1 answer
1k views

Meaning of IPTABLE duplicate values

I'm new to IPTABLES and when I execute the following command /sbin/iptables --list -n | grep 16381 I could see multiple entries as shown below : ACCEPT tcp -- a.b.c.d 0.0.0.0/0 ...
Jayaram18's user avatar
0 votes
0 answers
1k views

Receiving "Failed to start A high performance web server and a reverse proxy server." after redis installation

I received the following error: Processing triggers for ureadahead (0.100.0-21) ... N: Ignoring file 'plesk.list.ai_back' in directory '/etc/apt/sources.list.d/' as it has an invalid filename I ...
Chrizzly's user avatar
0 votes
2 answers
1k views

How do I get a channel layer from Django-Channels lib to communicate with Redis in Oracle VM using Docker Toolbox?

I am using Django Channels and am trying to make sure that a channel layer can communicate with Redis. However, I have Windows 10 Home edition which means I had to use Docker Toolbox to create an ...
William Tran's user avatar
1 vote
1 answer
1k views

How do I open a port on Linux Mint (VirtualBox guest) for the Redis Server?

FWIW, I posted a related programming question on Stack Overflow over here. I installed a Linux Mint on the VirtualBox to test a Redis Server I installed on. The Linux machine is linked with the ...
serge's user avatar
  • 723
0 votes
1 answer
2k views

Why does redis need write permissions for redis.conf?

I just installed redis on an Ubuntu server. When I examined its file permissions, I saw -rw-r----- 1 redis redis 59124 Jan 11 02:24 /etc/redis/redis.conf Why does the redis user need write access to ...
tcjulian's user avatar
2 votes
2 answers
8k views

Can't start Redis Server on Ubuntu 16.04

I can't get redis server to start on Ubuntu 16.04. I installed via this repo I double checked the systemd redis.service file and it looks fine. it points to the binaries. Systemctl Status Redis-...
Sandman007's user avatar
1 vote
0 answers
5k views

kill: 5656 : arguments must be process or job IDs

Having redis-server ON (launched with redis-server &). Running this command in a terminal works perfectly: kill -s SIGTERM "`pgrep redis-server`" But in a script it outputs the following ...
Hellfar's user avatar
  • 113