问题描述
今天在学习redis的时候碰到了一个问题,我想要用本低jedis来操作阿里云上的redis数据库:
public static void main(String[] args) {
Jedis jedis = new Jedis("服务器IP", 6379);
System.out.println(jedis.ping());
}
一直ping不通
解决
1、在redis.conf
配置文件中用bind
绑定本地IP:
bind 127.0.0.1 本地IP
2、注意,上面Java程序中服务器IP要用阿里云的私网IP