In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
The default port number for redis is 6379.
REmote DIctionary Server (Redis) is a key-value storage system written by Salvatore Sanfilippo.
Redis is an open source log database written in ANSI C language, complies with BSD protocol, supports network, can be memory-based and persistent, Key-Value database, and provides API in multiple languages.
It is often called a data structure server because the value can be of types such as String, Hash, list, sets, and sorted sets.
Redis to view port usage
1. First, query the pid of the port and use the command [netstat-ano | findstr port number] [cpp] F:\ Program Files\ Redis > netstat-ano | findstr 6379 TCP 0.0.0.06379 0.0.0.0 LISTENING 6932 TCP [:]: 6379 [:]: 0 LISTENING 6932 F:\ Program Files\ Redis > PS: 6932 in this record is the pid with port number 6379. 2. View the detailed process name according to pid, and use the command [tasklist | findstr pid] [cpp] F:\ Program Files\ Redis > tasklist | findstr 6932 redis-server.exe 6932 Console 1 21784 K F:\ Program Files\ Redis > PS: you can see that the running program corresponding to this pid is redis-server.exe
3. Force and recursively delete the program and its child processes, using the command [taskkill-f-t-im program name]
[cpp] F:\ Program Files\ Redis > taskkill-f-t-im redis-server.exe succeeded: the process of PID 6932 (belonging to the PID 1060 child process) has been terminated. F:\ Program Files\ Redis > PS: you can see the process that has killed the port, and then check the operation of the port. Obviously, it does not exist.
[cpp] view plain copy F:\ Program Files\ Redis > netstat-ano | findstr 6379
F:\ Program Files\ Redis >
For more technical articles related to Redis, please visit the Redis tutorial column to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.