当前位置:Gxlcms > PHP教程 > 用阿里云的redis,为什么一直连不上去,redis-cli连不上,php-redis扩展也连不上

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

时间:2021-07-01 10:21:17 帮助过:4人阅读

命令行直接连:

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...

人气教程排行