aix 安装redis
下载最新rpm安装包
http://www.perzl.org/aix/index.php?n=Main.Redis
# uname -a
AIX rhjf 1 6 00C5CC964C00
# pwd
/opt/freeware/bin
# ll redis*
-rwxr-xr-x 1 root system 85117 Jan 14 2014 redis-benchmark
-rwxr-xr-x 1 root system 42964 Jan 14 2014 redis-check-aof
-rwxr-xr-x 1 root system 52559 Jan 14 2014 redis-check-dump
-rwxr-xr-x 1 root system 127294 Jan 14 2014 redis-cli
# ll ../sbin/redis*
-rwxr-xr-x 1 root system 670510 Jan 14 2014 ../sbin/redis-server
# rpm -q redis
redis-2.6.17-1
# rpm -e redis-2.6.17-1
# ll redis*
ls: 0653-341 The file redis* does not exist.
# ll ../sbin/redis*
ls: 0653-341 The file ../sbin/redis* does not exist.
# rpm -ivh ../redis-2.6.17-1.aix5.2.ppc.rpm
redis ##################################################
# ll redis*
-rwxr-xr-x 1 root system 85117 Jan 14 2014 redis-benchmark
-rwxr-xr-x 1 root system 42964 Jan 14 2014 redis-check-aof
-rwxr-xr-x 1 root system 52559 Jan 14 2014 redis-check-dump
-rwxr-xr-x 1 root system 127294 Jan 14 2014 redis-cli
# ll ../sbin/redis*
-rwxr-xr-x 1 root system 670510 Jan 14 2014 ../sbin/redis-server
#
若有依赖未安装,可参考
http://www.oschina.net/question/561452_77247
源码包:
# pwd
/opt/freeware/src/packages/SOURCES
# ls redis-2.6.17*
ls: 0653-341 The file redis-2.6.17* does not exist.
#
# rpm -ivh redis-2.6.17-1.src.rpm
redis ##################################################
# ls redis-2.6.17*
redis-2.6.17-AIX_hz.patch redis-2.6.17-aix.patch redis-2.6.17.tar.gz
#
over
aix 安装redis的更多相关文章
- Ubuntu安装redis并配置远程、密码以及开启php扩展
一.前言 redis是当前流行的nosql数据库,很多网站都用它来做缓存,今天我们来安装并配置下redis 二.安装并配置redis 1.安装redis sudo apt-get install re ...
- CentOS 7 下安装redis步骤
1. 从redis官网下载redis源码,本例安装在/usr/opt下 [root@localhost opt]# pwd /usr/opt [root@localhost opt]# wget ht ...
- 安装redis以windows服务形式
安装redis以windows服务形式 安装redis以windows服务形式 redis windows windows 服务 以前跑redis,老是要开一个命令行窗口,一旦关闭,redis服务就挂 ...
- Mac Pro 编译安装 Redis 的 PHP 客户端 phpredis
1.去官网下载 redis 扩展源码包 https://github.com/phpredis/phpredis 2.安装 redis 扩展 /usr/local/src/mac-sdk/source ...
- 编译安装PHP7并安装Redis扩展Swoole扩展
编译安装PHP7并安装Redis扩展Swoole扩展 在编译php7的机器上已经有编译安装过php5.3以上的版本,从而依赖库都有了 本php7是编译成fpm-php 使用的, 如果是apache那么 ...
- 【安装Redis】CentOS7 下安装NodeJs+Express+MongoDB+Redis
Redis,V3.2,官网l官方链接:http://www.redis.io/download,参考:http://blog.csdn.net/mlks_2008/article/details/19 ...
- centos7.0 安装redis集群
生产环境下redis基本上都是用的集群,毕竟单机版随时都可能挂掉,风险太大.这里我就来搭建一个基本的redis集群,功能够用但是还需要完善,当然如果有钱可以去阿里云买云数据库Redis版的,那个还是很 ...
- Linux(Centos)之安装Redis及注意事项
1.redis简单说明 a.在前面我简单的说过redis封装成共用类的实现,地址如下:http://www.cnblogs.com/hanyinglong/p/Redis.html. b.redis是 ...
- centos上如何安装redis?|centos傻瓜式安装redis教程
本文介绍centos安装redis,请不要安装2.4.3,是有问题的. 首先安装gcc yum -y install gcc yum -y install gcc-c++ yum install ma ...
随机推荐
- Computer Science Theory for the Information Age-6: 学习理论——VC定理的证明
VC定理的证明 本文讨论VC理论的证明,其主要内容就是证明VC理论的两个定理,所以内容非常的枯燥,但对于充实一下自己的理论知识也是有帮助的.另外,VC理论属于比较难也比较抽象的知识,所以我总结的这些证 ...
- 分布式文件系统之GPFS
GPFS是IBM公司通过完善和发展其Tiger Shark文件系统发展而来.GPFS通过共享磁盘结构来实现其强大的扩展性.一个GPFS系统由许多集群节点组成,GPFS文件系统和应用程序在上面运行.这些 ...
- if条件
-e filename 如果 filename存在,则为真-d filename 如果 filename为目录,则为真 -f filename 如果 filename为常规文件,则为真-L filen ...
- Skip list--reference wiki
In computer science, a skip list is a data structure that allows fast search within an ordered seque ...
- Team Queue
Team Queue Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 2471 Accepted: 926 Descrip ...
- Update DN with Procedure
Update DN )) LANGUAGE SQL MODIFIES SQL DATA BEGIN -- Step 1 UPDATE DNRITM A SET (DNITTQTY, DNIREQTY) ...
- LeetCode 345
Reverse Vowels of a String Write a function that takes a string as input and reverse only the vowels ...
- 【STL+模拟】UVa 506 - System Dependencies
System Dependencies Components of computer systems often have dependencies--other components that m ...
- 【约瑟夫环变形】UVa 1394 - And Then There Was One
首先看到这题脑子里立刻跳出链表..后来继续看如家的分析说,链表法时间复杂度为O(n*k),肯定会TLE,自己才意识到果然自个儿又头脑简单了 T^T. 看如家的分析没怎么看懂,后来发现这篇自己理解起来更 ...
- 基于ArcEngine与C#的鹰眼地图实现
鹰眼图是对全局地图的一种概略表达,具有与全局地图的空间参考和空间范围.为了更好起到空间提示和导航作用,有些还具备全局地图中重要地理要素,如主要河流.道路等的概略表达.通过两个axMapControl控 ...