按照下面步骤依次执行
1.检查依赖,安装依赖
[[email protected] ~]# whereis gcc gcc: /usr/bin/gcc /usr/lib/gcc /usr/libexec/gcc /usr/share/man/man1/gcc.1.gz [[email protected] ~]# whereis tc tc: /sbin/tc /usr/lib64/tc /usr/share/tc /usr/share/man/man8/tc.8.gz [[email protected] ~]# whereis wget wget: /usr/bin/wget /usr/share/man/man1/wget.1.gz [[email protected] ~]# yum -y install tcl
2.进入/user/local/src/
[[email protected] ~]# cd /user/local/src/
3.wget下载redis
[[email protected] src]# wget http://download.redis.io/releases/redis-3.0.7.tar.gz
4.解压
[[email protected] src]tar zxvf redis-3.0.7.tar.gz
5.将文件转存到/usr/local/redis
[[email protected] src]mkdir /usr/local/redis [[email protected] src]mv redis-3.0.7 /usr/local/redis [[email protected] src]ll /usr/local/redis
6.编译安装
[[email protected] src]cd /usr/local/redis [[email protected] redis]make && make install
7.在etc目录下创建redi文件夹并创建配置文件,并修改配置文件
[[email protected] redis]mkdir -p /etc/redis [[email protected] redis]pwd [[email protected] redis]cp -fr /usr/local/redis/redis.conf /etc/redis/
8.vim编辑/etc/redis/redis.conf,修改daemonize属性为yes
[[email protected] redis]# vim /usr/local/redis/redis.conf # By default Redis does not run as a daemon. Use ‘yes‘ if you need it. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized. daemonize yes
9.执行/usr/loal/bin/redis-server /etc/redis/redis.conf来启动redis服务器
[[email protected] redis]# /usr/loal/bin/redis-server /etc/redis/redis.conf -bash: /usr/loal/bin/redis-server: No such file or directory [[email protected]-3c46 redis]# /usr/local/bin/redis-server /etc/redis/redis.conf 73449:M 13 May 10:56:00.839 * Increased maximum number of open files to 10032 (it was originally set to 1024). _._ _.-``__ ‘‘-._ _.-`` `. `_. ‘‘-._ Redis 3.0.7 (00000000/0) 64 bit .-`` .-```. ```\/ _.,_ ‘‘-._ ( ‘ , .-` | `, ) Running in standalone mode |`-._`-...-` __...-.``-._|‘` _.-‘| Port: 6379 | `-._ `._ / _.-‘ | PID: 73449 `-._ `-._ `-./ _.-‘ _.-‘ |`-._`-._ `-.__.-‘ _.-‘_.-‘| | `-._`-._ _.-‘_.-‘ | http://redis.io `-._ `-._`-.__.-‘_.-‘ _.-‘ |`-._`-._ `-.__.-‘ _.-‘_.-‘| | `-._`-._ _.-‘_.-‘ | `-._ `-._`-.__.-‘_.-‘ _.-‘ `-._ `-.__.-‘ _.-‘ `-._ _.-‘ `-.__.-‘
10.再打开一个终端,切换至redis的安装目录执行redis-cli
[[email protected] bin]# redis-cli 127.0.0.1:6379> keys * (empty list or set) 127.0.0.1:6379>
时间: 2024-10-27 05:29:18