doutuobao4004 2013-12-05 10:20
浏览 60
已采纳

memcache(d)不适用于ubuntu 13.10

I'm trying to use memcache on my apache. (Xubuntu 13.10) I installed Apache 2.4, Php5, Mysql5, php pear etc like here: https://www.digitalocean.com/community/articles/how-to-install-and-use-memcache-on-ubuntu-12-04

php -m

root@benjamin:~# php -m
[PHP Modules]
bcmath
bz2
calendar
Core
ctype
curl
date
dba
dom
ereg
exif
fileinfo
filter
ftp
gd
gettext
hash
iconv
json
libxml
mbstring
memcache
mhash
mysql
mysqli
openssl
pcntl
pcre
PDO
pdo_mysql
Phar
posix
readline
Reflection
session
shmop
SimpleXML
soap
sockets
SPL
standard
sysvmsg
sysvsem
sysvshm
tokenizer
wddx
xml
xmlreader
xmlwriter
Zend OPcache
zip
zlib

[Zend Modules]
Zend OPcache

ps aux

root@benjamin:~# ps aux | grep memcached
www-data 16113  0.0  0.0 325400   916 ?        Ssl  12:10   0:00 memcached -d -m 128 -l 127.0.0.1 -p 11211 -vv -u www-data
root     16178  0.0  0.0  18008   956 pts/1    S+   12:16   0:00 grep --color=auto memcached

and sample php code that i use

<?php 
  $memcache = new Memcache;
  $memcache->connect("localhost",11211); # You might need to set "localhost" to "127.0.0.1"
  echo "Server's version: " . $memcache->getVersion() . "<br />
";
  $tmp_object = new stdClass;
  /*
  $tmp_object->str_attr = "test";
  $tmp_object->int_attr = 123;
  $memcache->set("key",$tmp_object,false,50);
  */
  $stat = $memcache->getExtendedStats();
  echo "Store data in the cache (data will expire in 10 seconds)<br />
";
  echo "<pre>";
  print_r($stat);

   echo "Data from the cache:<br />
";

  print_r($memcache->get("key"));

?>

Problem is, nothing happens. Totally white page. How can i achive this? P.S : I also tried to connect 127.0.0.1 instead of localhost.

Update, I configured php.ini and I can get error now.

Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0

Fatal error: Unknown: Failed opening required '/var/www/memcache.php' (include_path='.:/usr/share/php') in Unknown on line 0
  • 写回答

1条回答 默认 最新

  • douqi5079 2013-12-05 11:05
    关注

    Hej bencagri,

    make sure you have installed php5-memcache, (php5-memcached if you areon debian).

    create a phpinfo.php file and write

    <?php
     echo phpinfo();
    ?>
    

    and have memcache, if you can't find anything, you'll have to

    sudo a2enmod mem_cache
    

    module in apache2.

    restart your apache and try again.

    Patrick

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 远程桌面文档内容复制粘贴,格式会变化
  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题