redis---安装和开启和关闭

时间:2022-04-13 13:30:49

redis---安装和开启和关闭

http://blog.csdn.net/xing_____/article/details/38457463

  1. 系统:centos6.4
  2. redis下载:http://www.redis.cn/download.html
  3. redis安装步骤:
  4. 上传源码包到/lamp
  5. 解压:tar -zxvf redis.tar.gz
  6. cd redis
  7. make //编译源码,初装的linux系统到这一步可能会报以下错误
  8. CC adlist.o
  9. /bin/sh: cc: command not found
  10. 就需要装gcc
  11. yum install gcc
  12. 安装完后需要删除redis文件,重新解压,因为在原文件make还是会报相同的错误
  13. rm zxvf redis
  14. 解压:tar -zxvf redis.tar.gz
  15. cd redis
  16. make //编译源码
  17. cd src
  18. make install //安装程序
  19. 为了便于管理可以将redis.conf redis-server redis-cli 这3个放入/usr/local/redis/目录下
  20. 最后进入redis.conf
  21. 修改 daemonize no 为daemonize yes #后台运行
  22. 到此redis 安装完成

6. 启动redis

a) $ cd /usr/local/bin

b) ./redis-server /etc/redis.conf

7. 检查是否启动成功

a) $ ps -ef | grep redis
关闭防火墙  systemctl stop firewalld.service 

3.   简单的Redis测试程序

读者可以自行创建Eclipse项目,引入jedis的客户端包,测试程序如下:

  1. public class RedisTest {
  2. private Jedis jedis = null;
  3. private String key1 = "key1";
  4. private String key2 = "key2";
  5. public RedisTest() {
  6. jedis = new Jedis("localhost");
  7. }
  8. public static void main(String[] args) {
  9. RedisTest redisTest = new RedisTest();
  10. redisTest.isReachable();
  11. redisTest.testData();
  12. redisTest.delData();
  13. redisTest.testExpire();
  14. }
  15. public boolean isReachable() {
  16. boolean isReached = true;
  17. try {
  18. jedis.connect();
  19. jedis.ping();
  20. // jedis.quit();
  21. } catch (JedisConnectionException e) {
  22. e.printStackTrace();
  23. isReached = false;
  24. }
  25. System.out
  26. .println("The current Redis Server is Reachable:" + isReached);
  27. return isReached;
  28. }
  29. public void testData() {
  30. jedis.set("key1", "data1");
  31. System.out.println("Check status of data existing:"
  32. + jedis.exists(key1));
  33. System.out.println("Get Data key1:" + jedis.get("key1"));
  34. long s = jedis.sadd(key2, "data2");
  35. System.out.println("Add key2 Data:" + jedis.scard(key2)
  36. + " with status " + s);
  37. }
  38. public void delData() {
  39. long count = jedis.del(key1);
  40. System.out.println("Get Data Key1 after it is deleted:"
  41. + jedis.get(key1));
  42. }
  43. public void testExpire() {
  44. long count = jedis.expire(key2, 5);
  45. try {
  46. Thread.currentThread().sleep(6000);
  47. } catch (InterruptedException e) {
  48. e.printStackTrace();
  49. }
  50. if (jedis.exists(key2)) {
  51. System.out
  52. .println("Get Key2 in Expire Action:" + jedis.scard(key2));
  53. } else {
  54. System.out.println("Key2 is expired with value:"
  55. + jedis.scard(key2));
  56. }
  57. }
  58. }