Menu

#1685 Port missing connect for Test.sql

Core
closed-remind
3
2010-03-31
2009-01-16
mcicchelli
No

install/src/org/compiere/install/ConfigOracle.java
(Line 380)

// TNS Name Info via sqlplus
String sqlplus = "sqlplus system/" + systemPassword + "@"
+ databaseServer.getHostName()
+ "/" + databaseName
+ " @utils/oracle/Test.sql";

Should include port:
String sqlplus = "sqlplus system/" + systemPassword + "@"
+ "//" + databaseServer.getHostName()
+ ":" + databasePort
+ "/" + databaseName
+ " @utils/oracle/Test.sql";

Discussion

  • mcicchelli

    mcicchelli - 2009-01-16
    • assigned_to: nobody --> vpj-cd
     
  • Carlos Ruiz

    Carlos Ruiz - 2010-03-16
    • assigned_to: vpj-cd --> nobody
    • priority: 5 --> 3
    • status: open --> open-remind
     
  • Carlos Ruiz

    Carlos Ruiz - 2010-03-16

    Still not solved in class - patch seems correct, it needs testing.

    Workaround: use port 1521

     
  • Enrique Ruibal

    Enrique Ruibal - 2010-03-16

    Hi Carlos,

    This patch is working in production with one Customer, I think you can safely commit it in trunk.

    The reason for adding the port number on this, is becasue some people would like to use a different port to listen to DB for security reasons.

    Regards,

    P.S. Thank for all your support to ADempiere Project

     
  • Carlos Ruiz

    Carlos Ruiz - 2010-03-16
    • assigned_to: nobody --> globalqss
    • status: open-remind --> pending-remind
     
  • SourceForge Robot

    This Tracker item was closed automatically by the system. It was
    previously set to a Pending status, and the original submitter
    did not respond within 14 days (the time period specified by
    the administrator of this Tracker).

     
  • SourceForge Robot

    • status: pending-remind --> closed-remind
     

Log in to post a comment.