最近访问Nexus Repo 曝出了下面的503 问题
1
| http://your_server:8081/nexus/content/repositories/xxxx/module/3.0.0/module-3.0.0.pom. Return code is: 503, ReasonPhrase:Service Unavailable. ->
|
尝试重新启动 Nexus Repo 服务也没有解决。
后来定位到问题是代理相关设置导致。具体修改
1
2
3
4
5
6
7
| systemProp.https.proxyPort=1080
systemProp.http.proxyHost=127.0.0.1
org.gradle.jvmargs=-Xmx10240m -XX\:MaxPermSize\=4096m -XX\:+HeapDumpOnOutOfMemoryError -Dfile.encoding\=UTF-8
org.gradle.daemon=true
systemProp.https.proxyHost=127.0.0.1
org.gradle.parallel=true
systemProp.http.proxyPort=1080
|
把上面设计到代理的内容删除即可。即删除下面内容
1
2
3
4
| systemProp.https.proxyPort=1080
systemProp.http.proxyHost=127.0.0.1
systemProp.https.proxyHost=127.0.0.1
systemProp.http.proxyPort=1080
|