1、安装libevent
root@xxx:# tar vxzf libevent[-version].tar.gz
root@xxx:# cd libevent[-version]
root@xxx:# ./configure --prefix=/usr
root@xxx:# make
root@xxx:# make install
2、安装Memcached
root@xxx:# tar vxzf memcached[-version].tar.gz
root@xxx:# cd memcached[-version]
root@xxx:# ./configure --prefix=/usr/local
root@xxx:# make
root@xxx:# make install
3、运行Memcached
查看帮助
./memcached -h
daemon模式运行
./memcached -d
4、error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory
以下3句: 查找libevent文件; 以debug模式运行memcached, 会打印出查找lib的位置; 创建文件链接
find /usr -name libevent-2.0.so.5
LD_DEBUG=libs /usr/local/bin/memcached -v
ln -s /usr/lib/libevent-2.0.so.5 /usr/lib64/libevent-2.0.so
本文详细介绍了如何安装和配置libevent与Memcached。首先通过命令行步骤演示了libevent的安装过程,接着展示了Memcached的安装及运行方式,并针对在运行过程中可能出现的共享库错误提供了具体的解决办法。
717

被折叠的 条评论
为什么被折叠?



