This week's book giveaway is in the Cloud/Virtualization forum.
We're giving away four copies of Cloud Application Architecture Patterns: Designing, Building, and Modernizing for the Cloud and have Kyle Brown, Bobby Woolf and Joseph Yodor on-line!
See this thread for details.
  • 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Accessing Linux Database from windows Under Weblogic6.0

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Out database is kept on windows machine (Oracle 8i) and i want to connect it from linux machine ..
When i apply utils.dbping from linux machine it gives the error like NT_CONNECTION_FAILED ....
i would really appreciate if u could let me know the real solution
Regards
Nand Keswani
 
Saloon Keeper
Posts: 28758
211
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It thinks that no TCP/IP port at the configured port on the configured machine is responding.
I don't know Oracle's setup, but for MS SQL Server, it's going to try and connect on port 1433 to whichever server you specify.
DBPing is a handy utility to test to see if your setup is OK without things being confused by all the complex subsystems of the WebLogic Server, so if DBPing fails, check to make sure your port # is OK (check with the DBA to make sure that they didn't assign it to another port #) and that the server name was correctly supplied. You probably also need a valid database user ID and password.
 
reply
    Bookmark Topic Watch Topic
  • New Topic