How to set a password for redis in Windows
There are two ways to set a password.
1. Set the password through the command line.
Run cmd to switch to the redis root directory, start the server first
>redis-server.exe
Open another cmd to switch to the redis root directory, start the client
>redis-cli.exe -h 127.0.0.1 -p 6379
The client uses config get requirepass command to view the password
>config get requirepass 1)"requirepass" 2)"" //默认空
The client uses the config set requirepass yourpassword command to set the password
>config set requirepass 123456 >OK
Once the password is set, the password must be verified first, otherwise all operations will be unavailable
>config get requirepass (error)NOAUTH Authentication required
Use auth password to verify the password
>auth 123456 >OK >config get requirepass 1)"requirepass" 2)"123456"
You can also log out and log in again
Copy after login
The password set on the command line will become invalid after the service is restarted, so this method is generally not used.
2. Set the password for the configuration file
Find the redis.windows.conf configuration file in the redis root directory, search for requirepass, find the comment password line, and add the password as follows:
# requirepass foobared requirepass tenny //注意,行前不能有空格
After restarting the service, after the client logs in again, it is found that the
>config get requirepass 1)"requirepass" 2)""
password is still empty?
Method after online query: Create a shortcut to redis-server.exe, right-click the shortcut properties, add redis.windows.conf after the target, here is the key, although you have modified the .conf file, but The exe does not use this conf, so we need to manually specify and the exe will run according to the modified conf, and it will be OK.
So, here I restart the redis service again (specify the configuration file)
>redis-server.exe redis.windows.conf
The client logs in again, OK.
>redis-cli.exe -h 127.0.0.1 -p 6379 -a 123456 >config get requirepass 1)"requirepass" 2)"123456"
Question: There are two configuration files redis.windows.conf and redis.windows-server.conf in the redis directory. I saw on the Internet that some people use the former and some use the latter. I don’t know which one should I use? Which one to use. After looking at the two files, there is no difference, so I personally use the former.
The above is the detailed content of How to set a password for redis in Windows. 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

Need to download the Gate.io app to start your cryptocurrency journey? This guide details the latest version download steps for iOS, Android, and Windows devices. Simply visit the official website, find the download link and select the appropriate option based on your device. For iOS, it will go directly to the App Store, while Android and Windows users will download the APK or installer for manual installation. Once installed, you can launch the app and set up your account to step into the world of cryptocurrency.

Nexo Exchange: Swiss cryptocurrency lending platform In-depth analysis Nexo is a platform that provides cryptocurrency lending services, supporting the mortgage and lending of more than 40 crypto assets, fiat currencies and stablecoins. It dominates the European and American markets and is committed to improving the efficiency, security and compliance of the platform. Many investors want to know where the Nexo exchange is registered, and the answer is: Switzerland. Nexo was founded in 2018 by Swiss fintech company Credissimo. Nexo Exchange Geographical Location and Regulation: Nexo is headquartered in Zug, Switzerland, a well-known cryptocurrency-friendly region. The platform actively cooperates with the supervision of various governments and has been in the US Financial Crime Law Enforcement Network (FinCEN) and Canadian Finance

Choosing the right Bitcoin market viewing software is crucial, it can help investors grasp market conditions in real time and make smarter investment decisions. This article will guide you how to make a choice, covering personal needs assessment (trading frequency, analysis depth, information needs and budget), software type selection (exchange interface, professional software, market website/APP), core functional considerations (data reliability, chart tools, custom settings, community communication and platform compatibility), and direction recommendations (maturity financial platform, cryptocurrency aggregation platform, community recommendation software). Finally, it is recommended that you try a few more software and compare it to choose the tool that best suits your needs. Please remember that software is only an auxiliary tool, and you must be cautious when investing at your own risk.

This article introduces two methods to download the Binance client: official website [adid]9f61408e3afb633e50cdf1b20de6f466[/adid] download and application store download. The official website download method includes visiting Binance official website, finding the download button, selecting the corresponding operating system version (such as Windows or Mac) to download the installation package, and then running the installer to complete the installation.

The OKX trading platform can be downloaded through mobile devices (Android and iOS) and computers (Windows and macOS). 1. Android users can download it from the official website or Google Play, and they need to pay attention to security settings. 2. iOS users can download it through the App Store or follow the official announcement to obtain other methods. 3. Computer users can download the client of the corresponding system from the official website. Always make sure to use official channels when downloading, and register, log in and security settings after installation.

Article introduction Binance download portal varies by device and operating system. You need to first clarify the device type, then visit the official website Binance.com (note to check the domain name), look for the "Download" button in a prominent position on the official website, and select download according to different operating systems. The computer version download and install the installation program is prompted to install; Android needs to confirm security from the official website; iOS search and download it in the App Store. After downloading, you need to create or log in to an account, and pay attention to keeping the account information and keys.

Solve the problem of third-party interface returning 403 in Node.js environment. When we use Node.js to call third-party interfaces, we sometimes encounter an error of 403 from the interface returning 403...
