SQLRecoverableException: I/O Exception: Connection reset

后端 未结 8 1317
太阳男子
太阳男子 2020-12-07 19:06

Yesterday evening I left the office with a running Java program written by me. It should insert a lot of records into our company database (Oracle) using a JDBC connection.

8条回答
  •  眼角桃花
    2020-12-07 19:56

    I want to produce a complementary answer of nacho-soriano's solution ...

    I recently search to solve a problem where a Java written application (a Talend ELT job in fact) want to connect to an Oracle database (11g and over) then randomly fail. OS is both RedHat Enterprise and CentOS. Job run very quily in time (no more than half a minute) and occur very often (approximately one run each 5 minutes).

    Some times, during night-time as work-time, during database intensive-work usage as lazy work usage, in just a word randomly, connection fail with this message:

    Exception in component tOracleConnection_1
    java.sql.SQLRecoverableException: Io exception: Connection reset
            at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:101)
            at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:173)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:229)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:458)
            at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:411)
            at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:490)
            at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:202)
            at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:33)
            at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:465)
            at java.sql.DriverManager.getConnection(DriverManager.java:664)
            at java.sql.DriverManager.getConnection(DriverManager.java:208)
        and StackTrace follow ...
    

    Problem explanation:

    As detailed here

    Oracle connection needs some random numbers to assume a good level of security. Linux random number generator produce some numbers bases keyboard and mouse activity (among others) and place them in a stack. You will grant me, on a server, there is not a big amount of such activity. So it can occur that softwares use more random number than generator can produce.

    When the pool is empty, reads from /dev/random will block until additional environmental noise is gathered. And Oracle connection fall in timeout (60 seconds by default).

    Solution 1 - Specific for one app solution

    The solution is to give add two parameters given to the JVM while starting:

    -Djava.security.egd=file:/dev/./urandom
    -Dsecurerandom.source=file:/dev/./urandom
    

    Note: the '/./' is important, do not drop it !

    So the launch command line could be:

    java -Djava.security.egd=file:/dev/./urandom -Dsecurerandom.source=file:/dev/./urandom -cp  appMainClass 
    

    One drawback of this solution is that numbers generated are a little less secure as randomness is impacted. If you don't work in a military or secret related industry this solution can be your.

    Solution 2 - General Java JVM solution

    As explained here

    Both directives given in solution 1 can be put in Java security setting file.

    Take a look at $JAVA_HOME/jre/lib/security/java.security

    Change the line

    securerandom.source=file:/dev/random
    

    to

    securerandom.source=file:/dev/urandom
    

    Change is effective immediately for new running applications.

    As for solution #1, one drawback of this solution is that numbers generated are a little less secure as randomness is impacted. This time, it's a global JVM impact. As for solution #1, if you don't work in a military or secret related industry this solution can be your.

    We ideally should use "file:/dev/./urandom" after Java 5 as previous path will again point to /dev/random.

    Reported Bug : https://bugs.openjdk.java.net/browse/JDK-6202721

    Solution 3 - Hardware solution

    Disclamer: I'm not linked to any of hardware vendor or product ...

    If your need is to reach a high quality randomness level, you can replace your Linux random number generator software by a piece of hardware.

    Some information are available here.

    Regards

    Thomas

提交回复
热议问题