- 积分
- 8
- 威望
-
- 金钱
-
- 注册时间
- 2017-11-3
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
这个问题我在论坛和教程都搜索过了 好像没有找到解决方案
lnmp1.4 执行:./redis.sh 安装完成后用
第一步使用:连接不上
cat test.php
<?php
//连接本地的 Redis 服务
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
echo "Connection to server sucessfully";
//设置 redis 字符串数据
$redis->set("tutorial-name", "Redis tutorial");
// 获取存储的数据并输出
echo "Stored string in redis:: " . $redis->get("tutorial-name");
?>
结果是Warning: Redis::connect(): connect() failed: Connection timed out in /home/XXX...
第二步:查看
ps aux | grep redis
root 3994 0.0 0.1 136928 7500 ? Ssl 13:54 0:00 /usr/local/redis/bin/redis-server 127.0.0.1:6379
root 4633 0.0 0.0 112668 980 pts/3 S+ 13:58 0:00 grep --color=auto redis
第三步:重启redis
/etc/init.d/redis stop
Stopping Redis server...
感觉卡在那了就ctrl+c结束后 kill杀掉这个进程了 kill -s 9 3994
在重新启动 /etc/init.d/redis start 就有问题了
/var/run/redis.pid exists, process is already running or crashed
试了下重启也不好使 /etc/init.d/redis restart
Stopping Redis server...
Could not connect to Redis at 127.0.0.1:6379: Connection timed out
done
/var/run/redis.pid exists, process is already running or crashed |
|