gpt4 book ai didi

Phpredis 和 Apache

转载 作者:可可西里 更新时间:2023-11-01 11:24:50 24 4
gpt4 key购买 nike

redis 与 apache 服务器兼容吗?我正在尝试从存储在我的 apache 服务器 Web 目录中的 php 脚本运行 redis。

<?php 
//Connecting to Redis server on localhost
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
echo "Connection to server sucessfully";
//check whether server is running or not
echo "Server is running: ".$redis->ping();
?>

当我尝试加载我的网页时,出现 505 编程错误。我的 apache 设置是否重要?我在想我的 phpredis 扩展可能没有正确设置。我能够从树莓派终端 ping redis。如果这是我的问题,有人有任何关于向 php 添加 redis 扩展的好教程吗?

最佳答案

  1. 确保您安装了该扩展...
  2. 检查https://github.com/phpredis/phpredis
  3. 使用 Redis 桌面管理器之类的东西可以轻松验证您的 Redis 是否正在运行,并且很高兴看到里面有什么(如果您在本地主机上或允许通过远程访问)
  4. 阅读您的 apache 日志,在非 Windows 机器上应该位于/var/log/(httpd 或 apache)附近,它们应该有关于您为什么会收到此错误的更多详细信息。

关于Phpredis 和 Apache,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48722437/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com