Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Connection reset by peer:socket write error (Can't deploy my jobs)

Hi,
I get this error whenever i try to deploy my jobs to the server :
Connection reset by peer:socket write error.
I tried with my localserver and with a remote one but neither worked.

0683p000009MGyI.jpg

Here is the configuration i'm using :
[list=*]
  • Talend MDM 6.0.1

  • Java 1.7.0_79

  • And I configured talend to use https (port:8543)

  • Labels (2)
    2 Replies
    Anonymous
    Not applicable
    Author

    Hi, can you share how you configured your secure connection on both client and server? You could also try to connect to server using a different client than Studio to assess of the right settings
    Anonymous
    Not applicable
    Author

    I only configured my secure connection from server side :s.

    Server.xml
    <Connector port="8543" protocol="org.apache.coyote.http11.Http11NioProtocol"
                   maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
                   keystoreFile="mykeystore" keystorePass="mykeypass"
                   clientAuth="false" sslProtocol="TLS" />

    WEB-INF\web.xml

      <!-- Uncomment the following to configure webapp to always require HTTPS -->
        <security-constraint>
            <web-resource-collection>
                <web-resource-name>HTTPSOnly</web-resource-name>
                <url-pattern>/*</url-pattern>
            </web-resource-collection>
            <user-data-constraint>
                <transport-guarantee>CONFIDENTIAL</transport-guarantee>
            </user-data-constraint>
        </security-constraint>


    I started configuring the client using the information provided by this tutorial : https://help.talend.com/search/all?query=Configuring+SSL+or+TLS+support+for+the+MDM+server

    I configured the keystore But I don't know what to put in the truststore configuration :s (Leaving it blank isn't working)