Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am working in Windows Xp platform and i want to access a another computer database so that database is a mysql and that computer is working on Linux platform ..so problem is i cant not connect with this different two OS (XP to LINUX) ... so please give me some solution...

share|improve this question
1  
The OS of the server is completely irrelevant. Are you facing any specific problem? – Álvaro G. Vicario Jan 17 '11 at 11:10
what is error message while you try to connect ? – Jigar Joshi Jan 17 '11 at 11:12
Your problem is not related to operating systems. It may be about the connection parameters of the database, maybe typo? – fmucar Jan 17 '11 at 11:12
1  
you need to provide the correct port number, correct host, ensure privileges is granted, ensure network is connected, and also check the firewall – ajreal Jan 17 '11 at 11:13
1  
How do you try to connect? What did you do and try? What failed? What are your implications, how do you think it works? As the previous commenter said, OSes are completely irrelevant. You just connect to mysqls open port and that’s it. – Kissaki Jan 17 '11 at 11:13
show 2 more comments

2 Answers

up vote 1 down vote accepted

In java it goes like this. Use your own IP, port, database name, userId and password. MySQL default port is 3306 but it may be a little safer to use another port that is not so well known.

try {
 linuxCon = DriverManager.getConnection("jdbc:mysql://191.91.9.19:5900/linuxdb?user=loginID&password=myPassword&useUnicode=true&characterEncoding=UTF-8");
 linuxStmt = linuxCon.createStatement();
} catch ...
share|improve this answer

Java will not care about the OS when connecting to a MySQL server. You simply need to pass the correct connection URL. You'll need to provide more details about how you connect (configuration) and also check that your Linux server accepts connections from outside (firewall/MySQL configuration).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.