当前位置:网站首页>Linux环境 redis完整配置及启动命令
Linux环境 redis完整配置及启动命令
2022-07-29 14:55:00 【飞翔的佩奇】
1、redis.conf文件 需要改动的地方
(1)bind 86.10.113.8 此处为你自己的地址
################################## MODULES #####################################
# Load modules at startup. If the server is not able to load modules
# it will abort. It is possible to use multiple loadmodule directives.
#
# loadmodule /path/to/my_module.so
# loadmodule /path/to/other_module.so
################################## NETWORK #####################################
# By default, if no "bind" configuration directive is specified, Redis listens
# for connections from all the network interfaces available on the server.
# It is possible to listen to just one or multiple selected interfaces using
# the "bind" configuration directive, followed by one or more IP addresses.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1 ::1
#
# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
# internet, binding to all the interfaces is dangerous and will expose the
# instance to everybody on the internet. So by default we uncomment the
# following bind directive, that will force Redis to listen only into
# the IPv4 loopback interface address (this means Redis will be able to
# accept connections only from clients running into the same computer it
# is running).
#
# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
# JUST COMMENT THE FOLLOWING LINE.
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bind 86.10.113.8
(2) daemonize no 改为 daemonize yes 以后台静默进程启动
################################# GENERAL #####################################
# 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
(3)protected-mode yes 把yes改为no
# Protected mode is a layer of security protection, in order to avoid that
# Redis instances left open on the internet are accessed and exploited.
#
# When protected mode is on and if:
#
# 1) The server is not binding explicitly to a set of addresses using the
# "bind" directive.
# 2) No password is configured.
#
# The server only accepts connections from clients connecting from the
# IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain
# sockets.
#
# By default protected mode is enabled. You should disable it only if
# you are sure you want clients from other hosts to connect to Redis
# even if no authentication is configured, nor a specific set of interfaces
# are explicitly listed using the "bind" directive.
protected-mode yes
2、启动服务
方式一、
重启redis服务
systemctl restart redis.service
设置redis服务为开机自启
systemctl enable redis.service
查看redis是否启动成功
ps aux | grep redis
systemctl status redis
方式二、
启动服务
/usr/local/bin/redis-server /etc/redis/redis.conf
查看redis是否启动成功
ps -ef|grep redis
边栏推荐
猜你喜欢
随机推荐
详解微处理器CPU的系统结构
光鲜亮丽的业绩,也掩盖不了科大讯飞的“一身病痛”
【LeetCode】53. 最大子数组和
QT通过UDP分包传输大图像(测试可传6M)
什么是异构计算
【ArcGIS微课1000例】0030:ArcGIS利用MXD doctor工具分析并修复mxd地图文档
Mysql数据库及表的建立
正斜杠 “/” 与反斜杠 “\”辨析
ST表(动态规划倍增思路离线维护区间极值问题)
基于C语言实现的LL(1)分析
超好用的PC端录屏软件推荐
进入中国27年,又一美妆巨头要离场
基于JSP&Servlet实现的众筹平台系统
基于C语言实现一个社交系统
自动化配置SSH免密登录和取消SSH免密配置脚本
ArcGIS Molder Builder模型构建器基本知识
CNCF Keith Chan:分布式云时代,云原生社区的发展与趋势
Principles Of Mathematical Analysis, Third Edition免费下载地址
Guangzhou fire: high temperature weather frequent fire fire safety should not be ignored
The very city live 丨 being - Unicorn: towards the unification of target tracking (ECCV2022 Oral)









