erikdubbelboer / phpRedisAdmin

Simple web interface to manage Redis databases.
http://dubbelboer.com/phpRedisAdmin/
3.11k stars 666 forks source link

phpRedisAdmin Can’t connect to this server #75

Closed watchpoints closed 8 years ago

watchpoints commented 9 years ago

this my config.inc.php $config = array( 'servers' => array( array( 'name' => 'troy', // Optional name. 'host' => '192.168.113.141', 'port' => 6379, 'filter' => '*', but i can use redis-cli to connect

watchpoints commented 9 years ago

; Directory in which the loadable extensions (modules) reside. ; http://php.net/extension-dir ; extension_dir = "./" extension_dir = "/usr/lib64/php/modules" extension=redis.so

erikdubbelboer commented 9 years ago

Is your php/webserver on the same host you tried redis-cli from? Is phpRedisAdmin a blank page or a can't connect page?

PangeaServers commented 9 years ago

i got the same problem on debian. it tells me "Server Down" on the page.

watchpoints commented 9 years ago

yes, it is the same host ,and phpRedisAdmin is not a blank page

erikdubbelboer commented 9 years ago
redis-cli -h 192.168.113.141 -p 6379

Works on that same host phpRedisAdmin is on?

What exactly is the redis.so extension? phpRedisAdmin uses https://github.com/nrk/predis which doesn't require any extensions.