解决as connection refused: connect错误

简介: 解决as connection refused: connect错误

最近在使用AndroidStudio时遇到了connection refused: connect问题,困扰了很久终于找到了一个比较完美得解决方案,现在分享给大家,下面是解决步骤。

步骤1

正常遇到这个问题都是跟网络代理有关系,所以先在as的设置页里把代理关了试试。

image.png

步骤2

通常只执行步骤1是不管用的,还需要把本地gradle.properties文件的代理信息去掉。gradle.properties文件的路径默认是C:\Users\用户名\ .gradle。

image.png

步骤3

正常执行到步骤2重新同步下应该就能解决问题了。但是我遇到了很多次把设置页和gradle.properties文件件去掉代理还是不行的情况,看了下错误信息as仍然会用代理的地址去同步,我用的android studio的版本是3.5,不知道是不是3.5的bug。所以遇到这种情况解决办法就是直接把gradle.properties文件删除,然后再同步就可以了。

image.png

步骤4

如果经历了前3个步骤还是不行的话,正常就是网络问题了,可以通过阿里镜像来同步依赖,在根项目的build.gradle文件添加如下代码。

repositories {
    maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
    ........
}
相关文章
|
6月前
|
NoSQL 网络安全 Redis
redis.exceptions.ConnectionError: Error 111 connecting to 127.0.0.1:6379. Connection refused.
当使用Python连接Redis遇到"ConnectionError: Error 111"时,可能的原因包括Redis未启动、非默认端口监听、防火墙阻拦、配置错误或Redis模块安装不正确。解决方法包括启动Redis、检查端口与防火墙设置、修正配置文件、确保模块正确安装及测试服务器功能。提供了一个Python连接Redis的示例代码,根据实际情况调整IP和端口,以诊断连接问题。
358 0
|
5月前
|
Linux 数据安全/隐私保护
Could not connect to ‘121.37.92.110‘ (port 22): Connection failed.
Could not connect to ‘121.37.92.110‘ (port 22): Connection failed.
|
NoSQL Redis 开发工具
redisCould not connect to Redis at 127.0.0.16379 Connection refused错误解析
redisCould not connect to Redis at 127.0.0.16379 Connection refused错误解析
118 0
|
网络协议 Linux 网络安全
使用frp时遇到的问题connect: connection refuseddial tcp xxxx:7000: connect: connection refused
最近在做的项目需要用到frp来做代理连接本地内网机,卡在最后启动客户端的时候,提示报错:login to server failed: dial tcp xxxx:7000: connect: connection refuseddial tcp xxxx:7000: connect: connection refused!!找了很多尝试的办法,现在给大家列一下希望对大家有帮助。
3236 0
|
关系型数据库 MySQL 数据库
ConnectionRefusedError [SequelizeConnectionRefusedError]: connect ECONNREFUSED 127.0.0.1:3306
在连接数据库的时候,早上还好的时候,突然就坏了,看报错信息,发现连接拒绝,然后经过自己的排查,发现mysql数据服务竟然被关闭了,虽然关闭原因还未找到,但是解决这个问题的方法就是重新开启mysql服务就好
ConnectionRefusedError [SequelizeConnectionRefusedError]: connect ECONNREFUSED 127.0.0.1:3306
NettyAvroRpcClient RPC connection error
NettyAvroRpcClient RPC connection error
100 0
Failed to connect to 127.0.0.1 port 1080: Connection refused package 问题解决方法
Failed to connect to 127.0.0.1 port 1080: Connection refused package 问题解决方法
820 0
Failed to connect to 127.0.0.1 port 1080: Connection refused package 问题解决方法
|
网络协议 NoSQL Redis
predis连接问题(connection refused)排查
## 背景 最近有用户报使用PHP客户端`predis`访问阿里云`Redis`(原`KVStore`)时,会出现`connection refused`错误,用户怀疑是因为后端连接数超了,导致连接被拒绝,但是监控看连接数并没有超过阈值,进而怀疑是后端redis的连接数限制逻辑有问题,经过排查发现连接数限制逻辑并没有问题,下面说下具体的排查过程。 ## 排查过程 通常通过`socke
8914 0