欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

redis设置密码,并且使用php操作

redis设置密码,并且使用php操作

打开 /path/to/redis.conf

修改

requirepass 后面是你要设置的密码

重启redis服务

代码如下:


connect(ip,端口)

auth('已经设置好的密码');


出现上图,说明已经连接成功


ps(本机连接使用127.0.0.1,如果是远程连接,修改配置文件,注释掉bind 127.0.0.1)


来自 https://blog.csdn.net/weixin_39712497/article/details/80266755


PHP操作Redis(一) PHP连接Redis,含Redis密码验证、指定某一Redis数据库

 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/justbear/article/details/73001852
<?php  
   $redis = new Redis(); 
   $redis->connect('127.0.0.1', 6379); //连接Redis
   $redis->auth('mypasswords123sdfeak'); //密码验证
   $redis->select(2);//选择数据库2
   $redis->set( "testKey" , "Hello Redis"); //设置测试key
   echo $redis->get("testKey");//输出value
?>

来自 https://blog.csdn.net/justbear/article/details/73001852

普通分类: