Blogger Information
Blog 11
fans 0
comment 0
visits 8116
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
linux学习第二步之配置memcached
四火同学的博客
Original
626 people have browsed it

        在第一篇博文里面已经将网络配置通了,wget下载器也已经可以使用。linux中安装配置软件的是方法就个人理解有三种:rpm包安装,yum软件管理器安装,软件编译安装。rpm包安装需要在网上下载相对应的rpm包,然后进入需要安装的目录:

rpm -i <rpm.filename> 即是rpm包的全称  安装
rpm -e  <package-name>卸载 例: rpm -e httpd

yum安装相当于rpm升级版,可以解决大的文件安装过程的依赖关系。

yum install perl 安装     yum remove perl

在进行memcached之前需要先进行yum 安装gcc编译环境,为安装lnmp做准备

yum install gcc automake autoconflibool gcc-c++
yum install libevent libevent-devel

最后一种的软件编译:在网上找到对应软件的源码编译成2进制。首先需要下载源码,以memcached为例子,

cd /usr/local/src  进去src目录
wget    将源码下载到该目录
tar fxz memcached-1.5.1.tar.gz  解压
cd memcached-1.5.1
./configure --prefix=/usr/local/memcached 编译检测环境是否适合安装memcached。
make &&make install 安装,在编译过程中若无报错就可进行安装。

若是之前没有安装gcc编译环境,则编译memcached时候容易报错。

安装成功后

cd /usr/local/memcached
./bin/memcached -u nobody

若出现光标出现在下方闪烁即是安装成功。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post