当前位置:网站首页>Redis (1) installation and configuration
Redis (1) installation and configuration
2022-08-04 11:43:00 【who is huang huang】
活动地址:CSDN21天学习挑战赛
一.介绍
``
- Redis就是一款NoSQL.
- NoSQL -> 非关系型数据库 -> Not Only SQL.
- Key-Value:Redis...
- 文档型:ElasticSearch,Solr,Mongodb...
- 面向列:Hbase,Cassandra...
- 图形化:Neo4j...
- 除了关系型数据库都是非关系型数据库.
- NoSQL只是一种概念,泛指非关系型数据库,和关系型数据库做一个区分.
``
二.安装
1.首先去下载安装包
2.放在你的user/local下
3.解压文件
4.进入解压后的文件中
注意
:因为我们没有配置redis的环境,So we can only enter hereredisinside the package to startredis
5.安装gcc插件
指令
:yum install gcc
gcc是一个环境,因为redis是用c写的,So this environment is needed
同理nginx也是
6. 输入make
7.启动Redis
指令
:src/redis-server注意
:Redis的默认端口是6379
联想:tomcat 8080
Mysql 3306
8.备份redis.conf
指令
:cp redis.conf redis.conf.bak
9.配置redis.conf
9.1 Starts in the background at startup
按Esc
进入命令行模式回顾
:The mode that comes in is the command mode
不要按i进入插入模式
输入命令:/daemon
搜索daemon
找到这一段
即
9.2 开启远程连接
目的:
为了实现在windowsThe above code is used to operateRedis原因
:redisRemote connections are not allowed by default
or first passvi redis.conf
进入配置文件中
This time I have to change two places
第一步 关闭保护模式 protected-mode no
/protect-mode
第二步,配置redis密码 requirepass 123
Password is disabled by default
Give him a password,For example, Huang Huang here is set to him123
第三步 注释掉 bind 127.0.0.1 xxx
三.Start when no password is setredis
查看进程状态
,我们的redis进程是否启动
ps -ef|grep
查看redis是否连接成功
四.Activated when a password is setredis
Log in the old way
Found that I can't log in,Because we didn't enter a password,Enter your password and try to log in
五.关闭redis
关闭操作:
1.Go to the command line first
src/redis-cli
2.Output close statementSHUTDOWN
去关闭redis
3.See if the thread is closed ps -ef|grep redis
边栏推荐
猜你喜欢
随机推荐
手搓一个“七夕限定”,用3D Engine 5分钟实现烟花绽放效果
六石编程学:编程中的直线思维与自然思维
深度强化学习与APS的一些感想
【黄啊码】MySQL入门—2、使用数据定义语言(DDL)操作数据库
shell变量
The use of DDR3 (Naive) in Xilinx VIVADO (3) simulation test
数据库对象
Leetcode刷题——构造二叉树(105. 从前序与中序遍历序列构造二叉树、106. 从中序与后序遍历序列构造二叉树)
入门MySql表的增删查改
Zhihu Data Analysis Training Camp
【目标检测】yolov2特征提取网络------Darknet19结构解析及tensorflow和pytorch实现
傅里叶级数与傅里叶变换学习
微信公众号之底部菜单
Rust 从入门到精通04-变量
UMA&港理工&阿里提出SP-ViT,为视觉Transformer学习2D空间先验知识!
小程序实战(一)- 骨架屏的应用与实现
揭秘交换机市场内幕,“准工业级”猫腻你中招了吗?
IBM Q复制新增QSUB
linux下数据库初始化密码
【LeetCode】98.验证二叉搜索树