Simple analysis of windows installation redis

1: download

In here to download the installation package.

2: Unzip

Just unzip it directly to a certain directory.

3: Start of temporary service mode

This method can be quickly started, but will not be added to the system's services.

3.1: Start

D:\program_files\Redis-x64-2.8.2402>redis-server.exe redis.windows.conf
                _._
           _.-``__ ''-._
      _.-``    `.  `_.  ''-._           Redis 2.8.2402 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._
 (    '      ,       .-`  | `,    )     Running in stand alone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 24480
  `-._    `-._  `-./  _.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |           http://redis.io
  `-._    `-._`-.__.-'_.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |
  `-._    `-._`-.__.-'_.-'    _.-'
      `-._    `-.__.-'    _.-'
          `-._        _.-'
              `-.__.-'

[24480] 28 Oct 09:39:51.705 # Server started, Redis version 2.8.2402
[24480] 28 Oct 09:39:51.707 * The server is now ready to accept connections on port 6379

3.2: Client connection test

D:\program_files\Redis-x64-2.8.2402>redis-cli.exe -h 127.0.0.1 -p 6379
127.0.0.1:6379> set name dongshidaddy
OK
127.0.0.1:6379> get name

3.3: Enable password and test

  • Enabling the password
    will requirepasslet go of the comment, and then set your own password. Here, set the password as 12345678.
    requirepass 12345678.
  • Restart the service and
    ctrl+Cdrop the old window, and then execute the start command again!
D:\program_files\Redis-x64-2.8.2402>redis-server.exe redis.windows.conf
...
[24480] 28 Oct 09:49:22.780 # User requested shutdown...
[24480] 28 Oct 09:49:22.780 * Saving the final RDB snapshot before exiting.
[24480] 28 Oct 09:49:22.830 * DB saved on disk
[24480] 28 Oct 09:49:22.830 # Redis is now ready to exit, bye bye...
D:\program_files\Redis-x64-2.8.2402>redis-server.exe redis.windows.conf
                _._
           _.-``__ ''-._
      _.-``    `.  `_.  ''-._           Redis 2.8.2402 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._
 (    '      ,       .-`  | `,    )     Running in stand alone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 23828
  `-._    `-._  `-./  _.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |           http://redis.io
  `-._    `-._`-.__.-'_.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |
  `-._    `-._`-.__.-'_.-'    _.-'
      `-._    `-.__.-'    _.-'
          `-._        _.-'
              `-.__.-'

[23828] 28 Oct 09:51:33.699 # Server started, Redis version 2.8.2402
[23828] 28 Oct 09:51:33.699 * DB loaded from disk: 0.000 seconds
[23828] 28 Oct 09:51:33.700 * The server is now ready to accept connections on port 6379
  • connection
D:\program_files\Redis-x64-2.8.2402>redis-cli.exe -h 127.0.0.1 -p 6379
127.0.0.1:6379> set age 32
(error) NOAUTH Authentication required.
127.0.0.1:6379> auth 12345678
OK
127.0.0.1:6379> set age 32
OK
127.0.0.1:6379> get age
"32"

ctrl+CStop the service and continue to follow up.

4: Add to service

4.1: Registration Service

D:\program_files\Redis-x64-2.8.2402>redis-server.exe --service-install redis.windows.conf --service-name dongshidaddy-redis-server --loglevel verbose
[2452] 28 Oct 09:59:19.506 # Granting read/write access to 'NT AUTHORITY\NetworkService' on: "D:\program_files\Redis-x64-2.8.2402" "D:\program_files\Redis-x64-2.8.2402\"
[2452] 28 Oct 09:59:19.507 # Redis successfully installed as a service.

After successful registration, go to win+r-> services.mscview service.
Insert picture description here

4.2: Start the service

D:\program_files\Redis-x64-2.8.2402>redis-server.exe --service-start --service-name dongshidaddy-redis-server
[10508] 28 Oct 10:21:56.212 # Redis service successfully started.

Insert picture description here

4.2: Connection test

D:\program_files\Redis-x64-2.8.2402>redis-cli.exe -h 127.0.0.1 -p 6379
127.0.0.1:6379> set gender man
(error) NOAUTH Authentication required.
127.0.0.1:6379> auth 12345678
OK
127.0.0.1:6379> set gender man
OK
127.0.0.1:6379> get gender
"man"

Finally: get out of the way, I want to drink Luckin

Insert picture description here

Guess you like

Origin blog.csdn.net/wang0907/article/details/109326312