首页 > 数据库 >Ubuntu 22.04.1 LTS 安装redis-5.0.14

Ubuntu 22.04.1 LTS 安装redis-5.0.14

时间:2023-04-25 15:11:08浏览次数:58  
标签:LTS 5.0 14 tar src redis 6379

一、下载安装包

下载地址:https://download.redis.io/releases/redis-5.0.14.tar.gz

或者:

wget https://download.redis.io/releases/redis-5.0.14.tar.gz

 

二、安装环境变量

sudo apt-get install make
sudo apt-get install gcc

 

三、解压

tar xzf redis-5.0.14.tar.gz -C /usr/local

安装

cd /usr/local/redis-5.0.14
make #安装完成

 

四、配置文件

vim redis.conf     #修改配置文件
protected-mode no  # 关闭保护模式
daemonize yes      # 守护进程模式开启
bind 10.50.2.134   # 绑定IP,按需修改
port 6379          # 端口按需修改
requirepass 123456 # 设置redis访问密码
masterauth <master-password> # 注意:这是slave服务连接master的密码,千万不要和上面弄混了。

 

五、运行并检查端口

./src/redis-server redis.conf  #启动服务命令
netstat -tunpl | grep 6379     #查看6379端口是否占用

 

六、进入客户端

./src/redis-cli

#带Host、Port、Auth连接:
./src/redis-cli -h 127.0.0.1 -p 6379 -a 123456

# -a 密码  系统会提示连接不安全
# 可以先连接,再输入授权密码 如下:
./src/redis-cli -h 127.0.0.1 -p 6379
127.0.0.1:6379> auth 123456
OK

 

标签:LTS,5.0,14,tar,src,redis,6379
From: https://www.cnblogs.com/hunttown/p/17352664.html

相关文章

  • 《c#高级编程》第5章C#5.0中的更改(十一)——字符串插值
    在C#5中,引入了字符串插值(stringinterpolation)语法,它提供了一种简单、直观的方式来将变量的值嵌入到字符串中。在以前的版本中,我们需要使用字符串格式化功能来实现这个目的,例如:intcount=42;stringmessage=string.Format("Theansweris{0}",count);而在C#5中,我......
  • Ubuntu 22.04.1 LTS 系统下JDK8的安装与配置
    一、下载安装包下载地址:JavaDownloads|Oracle二、解压和查看版本tar-zxfjdk-8u371-linux-x64.tar.gz-C/usr/local/java/cd/usr/local/java/jdk1.8.0_371./bin/java-versionjavaversion"1.8.0_371"Java(TM)SERuntimeEnvironment(build1.8.0_371-b09)......
  • Ubuntu 22.04.1 LTS 切换国内源
    1、备份原文件cp/etc/apt/sources.list/etc/apt/sources.list.bak 2、清空 sources.list文件中的内容,然后将以下任何一个源复制到文件中,以阿里源为例:vim/etc/apt/sources.listdebhttp://mirrors.aliyun.com/ubuntu/jammymainrestricteduniversemultiversed......
  • 办公套件Microsoft Office LTSC 2021最新中文Mac版
    MicrosoftOfficeLTSC2021(office全家桶)中文版是Microsoft为Mac用户推出的一款新iPadMac系列电脑、iPad桌面应用程序。OfficeLTSC2021是MicrosoftOffice系列电脑、iPad电脑和桌面应用程序的新一代操作系统和办公自动化产品。它采用了Mac和Linux操作系统的同步版......
  • Ubuntu 22.04.1 LTS 编译安装 nginx-1.23.4
    一、安装环境依赖sudoapt-getinstallg++sudoapt-getinstallopenssllibssl-devsudoapt-getinstalllibpcre3libpcre3-devsudoapt-getinstallzlib1g-devsudoapt-getinstalllibgd-dev 二、下载安装包wgethttp://nginx.org/download/nginx-1.23.4.tar.gz......
  • CF1479 Div1 VP记录
    战况:别的不说,这个B1WA3发是真的精髓。A略B我们设此时在第一队队尾的为las0,在第二队队尾的为las1,要放的数为x。先考虑B1:显然有:如果las0等于x,放在第二队,如果las1等于x,放在第一队。考虑两边都不同的情况,我们想要这个x后面尽快跟上一个不同的数,依此来创造新的......
  • ZOJ Monthly, August 2014 ZOJ - 3806 计算几何+二分
    Atriangleisonethebasicshapesingeometry.It’sapolygonwiththreeverticesandthreesideswhicharelinesegments.AtrianglewithverticesA,B,CisdenotedΔABC.Anditsthreesides,BC,CA,ABareoftendenoteda,bandc.Theincircleofat......
  • 2014 Pacific Northwest Region Programming Contest—Division 2 Problem U — lim
    Incollegefootball,manydifferentsourcescreatealistoftheTop25teamsinthecountry.Sinceit’ssubjective,theselistsoftendiffer,butthey’reusuallyverysimilar.Yourjobistocomparetwooftheselists,anddeterminewheretheyaresimi......
  • POJ - 3614 贪心
    Toavoidunsightlyburnswhiletanning,eachoftheC(1≤C≤2500)cowsmustcoverherhidewithsunscreenwhenthey’reatthebeach.CowihasaminimumandmaximumSPFrating(1≤minSPFi≤1,000;minSPFi≤maxSPFi≤1,000)thatwillwork.Ifthe......
  • ACM International Collegiate Programming Contest 2014 B SPFA 统计路径
    FloweryTrails!”()”*+,-).%”/)’0”122”1!2”342”522”!22”652”!42”72”72”5!2”!12”622”18!”162”!12”6”7”4”9”3”5”8”1”2”Inordertoattractmorevisitors,themanagerofanationalp......