Why Can't the Repository Receive Requests?
Symptom
Local build task fails, Connection reset is displayed, and the log information similar to the following is displayed.
Cause Analysis
The Java version is too early and does not support TLS 1.2.
Solution
- If Java 6 is used, upgrade it to Java 8 or later.
- If Java 7 is used, TLS 1.2 is supported. However, TLS 1.2 is not supported in versions earlier than 1.7.0_131-b31. You can run the following command to enable TLS 1.2:
mvn -Dhttps.protocols= TLSv1.2 <goals>
You can also add the following command to your environment or build script.
export MAVEN_OPTS=-Dhttps.protocols= TLSv1.2
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot