欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

用阿里云的redis,为什么一直连不上去,redis-cli连不上,php-redis扩展也连不上

程序员文章站 2022-03-31 18:29:43
...
命令行直接连:
redis-cli -h host -a 6379:password

php扩展:

$redis = new Redis();
$redis->connect(host,6379);
$res = $redis->auth(password);

都连不上,但是连127.0.0.1可以连上,而且可以用

回复内容:

命令行直接连:

redis-cli -h host -a 6379:password

php扩展:

$redis = new Redis();
$redis->connect(host,6379);
$res = $redis->auth(password);

都连不上,但是连127.0.0.1可以连上,而且可以用

阿里云的 Redis 服务貌似是不支持外网访问的。
参考:https://help.aliyun.com/knowl...

相关标签: redis php