Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Connection refused

Status
Not open for further replies.

zeero

Programmer
Aug 4, 2004
60
US
hi all, I installed a new jtds driver, set the classpath, and wrote a test program to go into a db and print out part of a table. anyways, here's my set up:

I have a linux server running apache tomcat and I'm connecting to a windows server 2000 machine with ms sql 2000 and getting the following error:
Code:
org.apache.jasper.JasperException: Network error IOException: Connection refused
could this be an internal error as in somehting wrong with the linux machine or would it be a permission thing on the ms sql 2000 on the windows machine? As far as I know, everything seems to be setup correctly, just not sure why I can't connect. here's my connection setup code btw:
Code:
Class.forName("net.sourceforge.jtds.jdbc.Driver");
String url = "jdbc:jtds:sqlserver://<IP>:<port>/petdata";
Connection con = DriverManager.getConnection(url,"<user>","<pass>");
Statement stmt = con.createStatement();

the "<>" are replacements not actually in the code ;)
 
Can you telnet to the db port ? I expect it is a network/firewall issue.

--------------------------------------------------
Free Database Connection Pooling Software
 
I was just messing around with the code and this seemed to work:
Code:
String url = "jdbc:jtds:sqlserver://<IP>/<db>;INSTANCE=<myinstance>";

*assuming default port
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top