The functions implemented in this article
Resolve the startup and failure of the redis container when starting redis.conf
Brief understanding of some configurations of redis.conf
Understanding Parameters of the docker run command
Understand the configuration file of redis.conf
You will see a lot of useless information after opening redis.conf
We use the grep command to simply process it, and then you can see all the configuration information of redis.conf, but the command entered now cannot be edited
Execute the command: cat redis.conf | grep -v "#" | grep -v "^$"
Although the above will get all the configuration information of redis.conf It comes out, but it cannot be modified. We can output this content to another file. At this time, you can see a redis-test.conf file under redis.
Execute the command: cat redis. conf | grep -v "#" | grep -v "^$" ->redis-test.conf
At this time, it can be in redis-test.conf Modify some configuration information
#Here we first understand a few configurations, and the subsequent configurations will be written out sequentially in subsequent files
daemonize no: redis is not used as a daemon process by default, which is why if you use redis-server /redis/redis.conf directly without modifying the configuration file, starting redis will directly display a service. There is no way to operate this terminal. You can only open a new terminal to connect to redis
requirepass foobared: redis does not have a password to connect by default, but the password still needs to be set for security
bind 127.0.0.1: This configuration item is usually commented out directly. After this configuration is turned on, only the local machine can connect to redis
The above The configuration information is the three configuration information you need to know in this article
Understand the docker run command parameter information
The docker run command is to create a new container
The following It is a command I use to create a container `docker run -itd --restart="always" --name redis -v /usr/local/docker/data:/data -v /usr/local/docker/redis.conf: /etc/redis.conf --net mynetwork -p 6380:6379 --ip 172.10.0.2 redis:4.0 redis-server /etc/redis.conf`
i : Open STDIN , used for console interaction
t: Allocate tty devices, which can support terminal login, the default is false
d: Specify the container to run Whether in the foreground or the background, the default is false
v: Mount the storage volume to the container and mount it to a directory in the container
- -net: The container uses its own customized network
-p: It is the port number
--restart: Specifies the restart after the container is stopped. Policy no: Do not restart when the container exits on-failure: Restart when the container fails to exit (return value is non-zero) always: Always restart when the container exits
Solution to redis container startup redis.conf Time-based startup and failure
After we know several parameters of redis.conf and several common parameters of docker run, we will solve the problem of direct failure when using redis.conf to start.
Then start creating the container. Some partners will find an error `WARNING: IPv4 forwarding is disabled. Networking will not work.`
Let’s solve it first This problem
Execute the command `vim /usr/lib/sysctl.d/00-system.conf`
Add the following code `net.ipv4.ip_forward=1`
Restart the network command `systemctl restart network`
There will be no problem if you execute it
Then enter the container and you will find our problem , exited directly after creating the container
Are you very depressed at this time, why did you exit directly. This is why in the above, we proposed some configuration information of redis.conf and docker run command parameters.
At this time, we are reviewing whether there is a `daemonize no` in redis.conf. This parameter is whether to execute as a daemon process. During the development process, we will turn on this configuration and configure it to yes.
Then let’s review that there is a parameter `-d` in the docker run command. This parameter is also executed as a daemon process.
It should be clear now that redis.conf conflicts with docker configuration
Open the configuration file and change the daemon process to no
#Then delete the redis container just created, execute the above command here, you can see that the container has now been created Successful and in the open state
At this time, when entering the container `docker exec -it redis /bin/bash`, you can see that we need to enter a password when connecting to redis-cli, which is also It is configured in redis.conf.
The above is Kaka’s solution to solve the problem of failure to start the Redis container using redis.conf
The above is the detailed content of Solve the problem of failure to start the Redis container using redis.conf. For more information, please follow other related articles on the PHP Chinese website!

Redis是现在最热门的key-value数据库,Redis的最大特点是key-value存储所带来的简单和高性能;相较于MongoDB和Redis,晚一年发布的ES可能知名度要低一些,ES的特点是搜索,ES是围绕搜索设计的。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于redis的一些优势和特点,Redis 是一个开源的使用ANSI C语言编写、遵守 BSD 协议、支持网络、可基于内存、分布式存储数据库,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis Cluster集群收缩主从节点的相关问题,包括了Cluster集群收缩概念、将6390主节点从集群中收缩、验证数据迁移过程是否导致数据异常等,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于原子操作中命令原子性的相关问题,包括了处理并发的方案、编程模型、多IO线程以及单命令的相关内容,下面一起看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了bitmap问题,Redis 为我们提供了位图这一数据结构,位图数据结构其实并不是一个全新的玩意,我们可以简单的认为就是个数组,只是里面的内容只能为0或1而已,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于实现秒杀的相关内容,包括了秒杀逻辑、存在的链接超时、超卖和库存遗留的问题,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
