为了账号安全,请及时绑定邮箱和手机立即绑定

提示NOAUTH Authentication required?

我的redis 有密码,提示NOAUTH Authentication required 配置文件中杀出密码,服务就无法启动了,密码改回来,服务才能启动。那么代码中如何设置密码的?

正在回答

2 回答

jedis.auth("密码");

1 回复 有任何疑惑可以回复我~
#1

玄鉴 提问者

太帅了,谢谢
2017-06-02 回复 有任何疑惑可以回复我~

JedisPoolConfig config=new JedisPoolConfig();

config.setMaxTotal(30);

config.setMaxIdle(10);

JedisPool jedisPool=new JedisPool(config, "127.0.0.1", 6329);

Jedis jedis=null;

jedis.auth("gdserver");

try {

jedisPool.getResource();

jedis.set("name", "imooc");

String aString= jedis.get("name");

System.out.println(jedis.get("name"));

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}finally

{

if (jedis!=null) {

jedis.close();

}

if (jedisPool!=null) {

jedisPool.close();

Exception in thread "main" java.lang.NullPointerException


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

提示NOAUTH Authentication required?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信