How to successfully start redis in docker container and enter
The following are the steps to start redis in docker and enter:
First, you need to search for the image source related to redis through docker
docker search redis
Then We download the Redis image source through Docker
docker pull redis
If the version is not set here, the latest image source will be downloaded by default.
[root@localhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/tomcat latest aeea3708743f 9 days ago 529 MB docker.io/rabbitmq latest 2b5cda43d345 2 weeks ago 151 MB docker.io/elasticsearch 7.6.0 5d2812e0e41c 2 weeks ago 790 MB docker.io/redis latest 44d36d2c2374 2 weeks ago 98.2 MB docker.io/mysql latest 791b6e40940c 2 weeks ago 465 MB [root@localhost ~]#
Then create and start the Redis container
First start Docker
[root@localhost ~]# systemctl start docker
Start Redis in Docker
Here we do not set the alias of the container, -d Represents background startup.
[root@localhost ~]# docker run -d redis da45019bf760304a66c3dd96b8847a50eddd8c73ff77cd3b3f37a46d7f016834
You can also start Redis like this, where -p represents port mapping, mapping 6379 in the container to port 6379 in the machine running Docker, --name represents a custom container name
[root@localhost ~]# docker run -d -p 6379:6379 --name="myredis" redis 249dd65794b32310dea5e094f41df845d971b623382ddc1179c404402f576750 [root@localhost ~]#
(Learning video sharing: redis video tutorial)
Enter the Redis terminal
docker exec :在运行的容器中执行命令 # 语法 docker exec [OPTIONS] CONTAINER COMMAND [ARG...] # OPTIONS说明: -d :分离模式: 在后台运行 -i :即使没有附加也保持STDIN 打开 -t :分配一个伪终端
The container ID in Docker can be viewed with docker -ps
[root@localhost ~]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 249dd65794b3 redis "docker-entrypoint..." 3 minutes ago Up 3 minutes 0.0.0.0:6379->6379/tcp myredis da45019bf760 redis "docker-entrypoint..." 18 minutes ago Up 18 minutes 6379/tcp naughty_pasteur [root@localhost ~]#
redis-cli means running a redis client.
[root@localhost ~]# docker exec -it da45019bf760 redis-cli 127.0.0.1:6379> 127.0.0.1:6379> set msg "Hello World Redis" OK 127.0.0.1:6379> get msg "Hello World Redis" 127.0.0.1:6379>
Related recommendations: redis database tutorial
The above is the detailed content of How to successfully start redis in docker container and enter. For more information, please follow other related articles on the PHP Chinese website!

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation and installation guide for PiNetwork nodes This article will introduce the PiNetwork ecosystem in detail - Pi nodes, a key role in the PiNetwork ecosystem, and provide complete steps for installation and configuration. After the launch of the PiNetwork blockchain test network, Pi nodes have become an important part of many pioneers actively participating in the testing, preparing for the upcoming main network release. If you don’t know PiNetwork yet, please refer to what is Picoin? What is the price for listing? Pi usage, mining and security analysis. What is PiNetwork? The PiNetwork project started in 2019 and owns its exclusive cryptocurrency Pi Coin. The project aims to create a one that everyone can participate

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

In PHP development, the caching mechanism improves performance by temporarily storing frequently accessed data in memory or disk, thereby reducing the number of database accesses. Cache types mainly include memory, file and database cache. Caching can be implemented in PHP using built-in functions or third-party libraries, such as cache_get() and Memcache. Common practical applications include caching database query results to optimize query performance and caching page output to speed up rendering. The caching mechanism effectively improves website response speed, enhances user experience and reduces server load.

Deploy Java EE applications using Docker containers: Create a Dockerfile to define the image, build the image, run the container and map the port, and then access the application in the browser. Sample JavaEE application: REST API interacts with database, accessible on localhost after deployment via Docker.

1. First, after opening the interface, click the extension icon button on the left 2. Then, find the search bar location in the opened extension page 3. Then, enter the word Docker with the mouse to find the extension plug-in 4. Finally, select the target plug-in and click the right Just click the install button in the lower corner

How to sort STL containers in C++: Use the sort() function to sort containers in place, such as std::vector. Using the ordered containers std::set and std::map, elements are automatically sorted on insertion. For a custom sort order, you can use a custom comparator class, such as sorting a vector of strings alphabetically.

The most common container types in C++STL are Vector, List, Deque, Set, Map, Stack and Queue. These containers provide solutions for different data storage needs, such as dynamic arrays, doubly linked lists, and key- and value-based associative containers. In practice, we can use STL containers to organize and access data efficiently, such as storing student grades.

Deploying machine learning models using C++: Best practices for containers and cloud Containerization and cloud deployment have become best practices for deploying machine learning models, providing portability, scalability, and maintainability. This article will delve into best practices for deploying machine learning models in containers and the cloud using C++, and provide a practical case. Benefits of Using Containers Containers Portability: Containers package code and its dependencies together to run in any environment. Isolation: Containers isolate the model from the host system, ensuring that the model is protected from potential problems. Lightweight: Containers are lighter than virtual machines and start faster. Create a container image using Docker to build a container image: FROMtensorflow/tensorf
