当前位置: 首页 > article >正文

go 中使用redis 基础用法

1、安装redis

参考链接:https://www.codeleading.com/article/98554130215/

1.1 查看是否有redis yum 源

yum install redis

没有可用的软件包,执行1.2

1.2下载fedora的epel仓库

yum install epel-release    --下载fedora的epel仓库

1.3启动redis

service redis start  
systemctl start redis.service   --开启redis服务

在这里插入图片描述

1.4 ps -ef | grep redis – 查看redis是否开启

1.5 redis-cli – 进入redis服务

[root@localhost ~]# redis-cli 
127.0.0.1:6379> ?
redis-cli 3.2.10
To get help about Redis commands type:
      "help @<group>" to get a list of commands in <group>
      "help <command>" for help on <command>
      "help <tab>" to get a list of possible help topics
      "quit" to exit
 
To set redis-cli perferences:
      ":set hints" enable online hints
      ":set nohints" disable online hints
Set your preferences in ~/.redisclirc
127.0.0.1:6379> get 
(error) ERR wrong number of arguments for 'get' command
127.0.0.1:6379> get key
(nil)
127.0.0.1:6379> get key abc
(error) ERR wrong number of arguments for 'get' command
127.0.0.1:6379> set key abc 
OK
127.0.0.1:6379> get key abc
(error) ERR wrong number of arguments for 'get' command
127.0.0.1:6379> get key 
"abc"
127.0.0.1:6379> 

1.6 redis-cli shutdown --关闭服务

[root@localhost ~]# redis-cli
127.0.0.1:6379> shutdown
not connected> 
not connected> 
[root@localhost ~]# ps -ef |grep redis
root      5127  4497  0 08:34 pts/0    00:00:00 grep --color=auto redis
[root@localhost ~]# systemctl start redis.service
[root@localhost ~]# ps -ef |grep redis
redis     5134     1  0 08:34 ?        00:00:00 /usr/bin/redis-server 127.0.0.1:6379
root      5138  4497  0 08:35 pts/0    00:00:00 grep --color=auto redis
[root@localhost ~]# 

1.7、开放端口6379、6380的防火墙

/sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT 开启6379
/sbin/iptables -I INPUT -p tcp --dport 6380 -j ACCEPT 开启6380

[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT
[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 6380 -j ACCEPT

1.8 使用redis desktop manager连接redis


http://www.kler.cn/a/443344.html

相关文章:

  • 【蓝桥杯选拔赛真题60】C++寻宝石 第十四届蓝桥杯青少年创意编程大赛 算法思维 C++编程选拔赛真题解
  • 计算机网络 (23)IP层转发分组的过程
  • 【测试】——Cucumber入门
  • c#使用SevenZipSharp实现压缩文件和目录
  • 嵌入式ARM平台 openwrt系统下 基于FFmpeg 的视频采集及推流 实践
  • 探索Whisper:从原理到实际应用的解析
  • 工具篇-postman快速导入全局变量设置简单压测
  • 如何在window 使用 conda 环境下载大模型
  • VUE+Node.js+mysq实现响应式个人博客|项目初始化+路由配置+基础组件搭建
  • Pikachu-XXE靶场(注入攻击)
  • Hibernate、JPA、Spring DATA JPA、Hibernate 代理和架构
  • Jest 入门指南:从零开始编写 JavaScript 单元测试
  • 源码分析之Openlayers中MousePosition鼠标位置控件
  • Redis Sentinel(哨兵) 和 Redis Cluster(集群)
  • 单元测试-Unittest框架实践
  • android RadioButton + ViewPager+fragment
  • 【Web】PolarCTF2024秋季个人挑战赛wp
  • KMP算法基础
  • 【Lua热更新】下篇 -- 更新中
  • Webpack常见的Plugin有哪些?
  • Java 初学者的第一个 SpringBoot3.4.0 登录系统
  • 【安当产品应用案例100集】032-重塑企业SaaS平台的PostgreSQL凭据管理体系
  • Running CMake (运行 CMake)
  • C语言学习day24:DLL给程序打上窗口破解补丁
  • 借助腾讯云质检平台的新范式,做工业制造企业质检的“AI慧眼”
  • ofd转pdf ofd转图片 python脚本(非ai生成,实测可转换)