宝塔Redis开启外网

December 09, 2023
测试
测试
测试
测试
1 分钟阅读

放行端口

我的Redis端口是6379,放行你的Redis端口

image-1680705770228
image-1680705770228

修改配置

软件商店,打开你的Redis

将bind设置:0.0.0.0 将requirepass:设置Redis密码,自已随便设置

然后,点保存

image-1680705929771
image-1680705929771

关闭保护模式

大概在91行 将 protected-mode yes 改成 protected-mode no

然后保存 然后保存 然后保存

image-1680706024601
image-1680706024601

重启

重启完,你的Redis就已经开启外网了,别忘你的程序连接时写Redis的密码

image-1680706148168
image-1680706148168

程序连接

如果,你知道自已的程序如何连接Redis,并且写上Redis的连接密码,那么这一部就不用看了

以PHP为例子

$redis = new Redis();
$redis->connect('111.222.333.444', 6379); //服务器ip和端口,换成你的,不必多说
$redis->auth('mimaok');  //Redis连接密码

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多