当前位置:网站首页>Redis' idea under windows is not connected
Redis' idea under windows is not connected
2022-07-27 06:43:00 【Xiangxiang baby:】
The goal is : stay idea(windows) Connect Redis
Today is connecting Redis There was a problem when :
Yes , He is not connected to my local computer
I still remember my last article mentioned , install redis What are the steps ? If you don't remember, click the following link install redis(windows)
I looked up the relevant information , About solving idea link redis The problem of , There are two schemes as follows :
① add to iedis This plugin , But I can't find this plug-in in , Cracked versions on other websites also need to be downloaded and paid , There are many small advertisements ( You'll see ), So I gave up the idea .
② Add related files ( I use this method to successfully connect !)
1) First, in the xml Add this configuration to the file
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.3.0</version>
</dependency>
2) Then remember if we installed redis Of host And port number ?
If you don't remember cmd once , You can check it 
127.0.0.1 It is my host
6379 Is our default port number
3) And then we can go in properties Add our redis To configure 
redis.host=127.0.0.1
redis.port=6379
redis.timeout=10
redis.password=123
Then connect it !!!!
summary :
stay idea Connect our redis You need to check your host And port number , Be sure to confirm the same , Otherwise, you can't connect to the host .
边栏推荐
- FTP服务器的搭建
- Shell programming specifications and variables
- Basic knowledge of English: Rules for the use of non predicates Part 1
- Shell -- conditional statements (if statements, case statements)
- Source code compilation and installation LNMP and discuz Forum
- Kaggle calls the custom module method
- Using markdowm
- Publish a building segmentation database with a resolution of 0.22m
- 使用密钥方式登录阿里云服务器
- Linu performance tuning: how can we alleviate the situation in the face of DDoS attacks?
猜你喜欢
随机推荐
Project training experience 2
Shell script backup MySQL database
Linu performance tuning: how can we alleviate the situation in the face of DDoS attacks?
Shell -- operation of variables
shell脚本之函数调用
Shell脚本一键配置LAMP
Shell Scripting format
源码编译安装LNMP和DISCUZ论坛
Network troubleshooting: Ping and tracert commands
LVM与磁盘配额
2021-06-26
账号管理与权限
Vscode solves the problem of using stuck ipynb files when running
Basic knowledge of English: juxtaposition structure
C language - Custom structure type
Introduction to hash table
正则表达式
shell之if条件语句
向日葵全面科普,为你的远程控制设备及时规避漏洞
如何避免漏洞?向日葵远程为你讲解不同场景下的安全使用方法









