• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

cannot connect to firebird when restarted using Runtime.exec

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Good day every1 i'm new to the site, i'm have a serious problem:

I start the inetd daemon using Runtime.exec, i'm sure it starts because when i exit my java program and start again i can connect. However when i start inetd from inside my application i cannot connect using java.sql.Connection, i have to close the app and start again....Can someone please help me!!! (by the way i'm using Ubuntu 9.0 server

here is the code to start the process :
Process p = Runtime.getRuntime().exec("sudo /usr/sbin/inetd"));
p.waitFor();
connection = DriverManager.getConnection(url, user, password);

it says:

org.firebirdsql.jdbc.FBSQLException: GDS Exception. 335544721. Unable to complete network request to host "ip address".
Reason: Unable to complete network request to host "ip address".
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic