在centos6 4用yum安裝redis

2021-06-21 07:50:54 字數 1059 閱讀 8951

一、centos預設的安裝源在官方centos.org上,而redis在第三方的yum源裡,所以無法安裝,非官方的yum推薦用fedora的epel倉庫。當然也可通過配置 

/etc/yum.repos.d/centos-base.repo檔案增加yum源。

#wget

#rpm -ivh epel-release-6-8.noarch.rpm

三、yum 安裝redis

# yum install redis php-redis

這樣就安裝成功了

啟動redis

# /etc/init.d/redis start

php-redis 安裝了,試驗了多次,均失敗,未知原因

2、找到php安裝路徑
命令whereis phpize和whereis php-config 找到phpize和php-config路徑

3、生成configure
# /usr/bin/phpize

4、編譯安裝
# ./configure --with-php-config=/usr/bin/php-config

# make && make install

5、加入安裝的redis.so模組
# vim /etc/php.ini

6、重啟apache或nginx

7、測試

<?php 

$redis = new redis();

$redis->connect('127.0.0.1',6379);

$redis->set('test','hello world!');

echo $redis->get('test');

?>

在CentOS 6 4上安裝vsftpd

在網上搜尋了比較長的時間,找到的安裝vsftp的教程都不能正常的實現安裝,大多安裝後無法登陸,或者報550的錯誤。yum install vsftpd service vsftpd start chkconfig vsftpd on service iptables stop chkconfig i...

在 CentOS 6 4上安裝python

想找乙個hadoop相關的工作,很多都需要熟悉python或linux shall指令碼的指令碼,故決定開始學習python。在學習環境中使用的是python 2.7.但是centos 6.4中預設使用的python版本是2.6.6,故需要公升級版本。安裝步驟如下 quote 1,先安裝gcc,用如...

centos6 4通過yum安裝redmine

安裝系統包和部分軟體包 yum y install patch make gcc gcc c gcc g77 flex bison file yum y install libtool libtool libs libtool ltdl devel autoconf kernel devel aut...