Home > Database > Redis > body text

Redis installation tutorial for beginners (win10)

王林
Release: 2020-12-23 09:30:09
forward
2668 people have browsed it

Redis installation tutorial for beginners (win10)

REmote DIctionary Server (Redis) is a key-value storage system written by Salvatore Sanfilippo.

Redis is an open source log-type Key-Value database written in ANSI C language, abides by the BSD protocol, supports the network, can be memory-based and persistent, and provides APIs in multiple languages.

(Learning video sharing: redis video tutorial)

It is often called a data structure server, because the value (value) can be a string (String), ha Types such as Hash, list, sets and sorted sets.

Download

https://github.com/MicrosoftArchive/redis/releases/download/win-3.0.504/Redis-x64-3.0.504.msi
Copy after login

Download the installation package and go all the way to next. After installation, enter the installation directory (default is C:\Program Files\Redis), find redis.windows.conf and open it with notepad, press Ctrl f, find the requirepass parameter, and set the password:

Redis installation tutorial for beginners (win10)

Open cmd, enter the Redis installation directory, run

redis-server.exe redis.windows.conf
Copy after login

If a 1688 error occurs, enter

redis-cli.exe
shutdown
exit
Copy after login

and run redis-server.exe redis.windows .conf

Redis installation tutorial for beginners (win10)

# After the installation is complete, close cmd, find the Redis item in the Windows service, and set the startup type to automatic.

Redis installation tutorial for beginners (win10)

If error 1067 is reported, you can refer to this tutorial https://blog.csdn.net/maxsky/article/details/79775118

Install Redis Desktop Manager

Download link: https://pan.baidu.com/s/1NJlCZNGRKOMh96kMemHjew Extraction code: qqxi

The installation is also all the way next. Setting up the link

First make sure that the redis service is turned on.

Open Redis Desktop Manager

Redis installation tutorial for beginners (win10)

Redis installation tutorial for beginners (win10)

##After clicking OK, you can see the created connection. Double-click it to check the detail information.

Redis installation tutorial for beginners (win10)

The installation of Redis is now complete.

Related recommendations:

redis database tutorial

The above is the detailed content of Redis installation tutorial for beginners (win10). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!