Skip to content

Commit

Permalink
If port zero is specified, Redis will not listen for TCP connections
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Feb 7, 2011
1 parent 71791e7 commit a36d524
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions redis.conf
Expand Up @@ -21,6 +21,7 @@ daemonize no
pidfile /var/run/redis.pid

# Accept connections on the specified port, default is 6379.
# If port 0 is specified Redis will not listen on a TCP socket.
port 6379

# If you want you can bind a single interface, if the bind option is not
Expand Down
5 changes: 4 additions & 1 deletion src/redis.c
Expand Up @@ -852,7 +852,10 @@ void initServer() {
createSharedObjects();
server.el = aeCreateEventLoop();
server.db = zmalloc(sizeof(redisDb)*server.dbnum);
server.ipfd = anetTcpServer(server.neterr,server.port,server.bindaddr);

if (server.port != 0)
server.ipfd = anetTcpServer(server.neterr,server.port,server.bindaddr);

if (server.ipfd == ANET_ERR) {
redisLog(REDIS_WARNING, "Opening port: %s", server.neterr);
exit(1);
Expand Down

0 comments on commit a36d524

Please sign in to comment.