windows下 redis怎么更改端口号

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows下 redis怎么更改端口号相关的知识,希望对你有一定的参考价值。

参考技术A 为redis分配一个8888端口,操作步骤如下:
1、$REDIS_HOME/redis.conf重新复制一份,重命名为redis8888.conf。
2、打开redis8888.conf配置文件,找到port
6379这行,把6379改为8888。

怎么在linux里面修改端口号

Linux下修改端口号只需要更改相应服务的配置文件即可,下面以修改linux 的SSH服务的默认端口号22为例(把22修改我2501):

1、修改/etc/ssh/sshd_config配置文件

[root@localhost ssh]# more sshd_config 
#       $OpenBSD: sshd_config,v 1.69 2004/05/23 23:59:53 dtucker Exp $
# This is the sshd server system-wide configuration file.  See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented.  Uncommented options change a
# default value.
#Port 22             //先把22注释掉
port 2501            //添加一个新的端口
#Protocol 2,1

2、重启ssh服务让修改的端口号生效

[root@localhost ~]# service sshd restart
Stopping sshd:[  OK  ]
Starting sshd:[  OK  ]


参考技术A 在etc目录下有个service文件,里面对应的是端口号。你可以去修改本回答被提问者和网友采纳 参考技术B 修改什么的端口号? 登陆的?

以上是关于windows下 redis怎么更改端口号的主要内容,如果未能解决你的问题,请参考以下文章

怎么修改mysql 端口

windows server 2008 端口号怎么开启

如何修改K3CloudManager服务端口号

Jenkins修改端口号和启动、停止

修改Tomcat服务器的端口号

怎么在linux里面修改端口号