Unable to connect to SQL Server via JDBC on Linux
I am able to connect to my SQL Server instance via the following JDBC connection on a Windows machine:
jdbc:sqlserver://<my_server>;databaseName=<my_db>;integratedSecurity=true;authenticationScheme=JavaKerberos;username=<my_user>;password=<my_pwd>
However, when the same connection string is invoked on a Linux machine, I get the following error stack:
com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host <my_server>, port 1433 has failed. Error: "Connection timed out: no further information.. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.".
I have tried altering the JDBC string to remove the integratedSecurity=true
, according to this forum, but I am encountering the same error message.
Is the error message related to authentication or networking?
I am able to SSH into the Linux machine and successfully ping <my_server>
sql-server linux jdbc
add a comment |
I am able to connect to my SQL Server instance via the following JDBC connection on a Windows machine:
jdbc:sqlserver://<my_server>;databaseName=<my_db>;integratedSecurity=true;authenticationScheme=JavaKerberos;username=<my_user>;password=<my_pwd>
However, when the same connection string is invoked on a Linux machine, I get the following error stack:
com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host <my_server>, port 1433 has failed. Error: "Connection timed out: no further information.. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.".
I have tried altering the JDBC string to remove the integratedSecurity=true
, according to this forum, but I am encountering the same error message.
Is the error message related to authentication or networking?
I am able to SSH into the Linux machine and successfully ping <my_server>
sql-server linux jdbc
Start with the minimal URL: jdbc:sqlserver://<my_server>;databaseName=<my_db>. You assume that port is the default 3306. There's a Connection method that lets you enter username and password as method parameters in addition to the URL.
– duffymo
Jan 3 at 14:49
add a comment |
I am able to connect to my SQL Server instance via the following JDBC connection on a Windows machine:
jdbc:sqlserver://<my_server>;databaseName=<my_db>;integratedSecurity=true;authenticationScheme=JavaKerberos;username=<my_user>;password=<my_pwd>
However, when the same connection string is invoked on a Linux machine, I get the following error stack:
com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host <my_server>, port 1433 has failed. Error: "Connection timed out: no further information.. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.".
I have tried altering the JDBC string to remove the integratedSecurity=true
, according to this forum, but I am encountering the same error message.
Is the error message related to authentication or networking?
I am able to SSH into the Linux machine and successfully ping <my_server>
sql-server linux jdbc
I am able to connect to my SQL Server instance via the following JDBC connection on a Windows machine:
jdbc:sqlserver://<my_server>;databaseName=<my_db>;integratedSecurity=true;authenticationScheme=JavaKerberos;username=<my_user>;password=<my_pwd>
However, when the same connection string is invoked on a Linux machine, I get the following error stack:
com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host <my_server>, port 1433 has failed. Error: "Connection timed out: no further information.. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.".
I have tried altering the JDBC string to remove the integratedSecurity=true
, according to this forum, but I am encountering the same error message.
Is the error message related to authentication or networking?
I am able to SSH into the Linux machine and successfully ping <my_server>
sql-server linux jdbc
sql-server linux jdbc
asked Jan 3 at 14:43
rs79rs79
1,84512834
1,84512834
Start with the minimal URL: jdbc:sqlserver://<my_server>;databaseName=<my_db>. You assume that port is the default 3306. There's a Connection method that lets you enter username and password as method parameters in addition to the URL.
– duffymo
Jan 3 at 14:49
add a comment |
Start with the minimal URL: jdbc:sqlserver://<my_server>;databaseName=<my_db>. You assume that port is the default 3306. There's a Connection method that lets you enter username and password as method parameters in addition to the URL.
– duffymo
Jan 3 at 14:49
Start with the minimal URL: jdbc:sqlserver://<my_server>;databaseName=<my_db>. You assume that port is the default 3306. There's a Connection method that lets you enter username and password as method parameters in addition to the URL.
– duffymo
Jan 3 at 14:49
Start with the minimal URL: jdbc:sqlserver://<my_server>;databaseName=<my_db>. You assume that port is the default 3306. There's a Connection method that lets you enter username and password as method parameters in addition to the URL.
– duffymo
Jan 3 at 14:49
add a comment |
1 Answer
1
active
oldest
votes
I would first try if I can reach 'my_server' on the standard port from your Linux client, e.g.
telnet my_server 1433
as MS Sql Server is listening on port 1433, MySQL is listening on 3306.
If this is fine, use the basic URL as duffymo mentioned above. Probably add username and password:
jdbc:sqlserver://myserver:1433;databaseName=my_db;user=my_user;password=my_password
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54024520%2funable-to-connect-to-sql-server-via-jdbc-on-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I would first try if I can reach 'my_server' on the standard port from your Linux client, e.g.
telnet my_server 1433
as MS Sql Server is listening on port 1433, MySQL is listening on 3306.
If this is fine, use the basic URL as duffymo mentioned above. Probably add username and password:
jdbc:sqlserver://myserver:1433;databaseName=my_db;user=my_user;password=my_password
add a comment |
I would first try if I can reach 'my_server' on the standard port from your Linux client, e.g.
telnet my_server 1433
as MS Sql Server is listening on port 1433, MySQL is listening on 3306.
If this is fine, use the basic URL as duffymo mentioned above. Probably add username and password:
jdbc:sqlserver://myserver:1433;databaseName=my_db;user=my_user;password=my_password
add a comment |
I would first try if I can reach 'my_server' on the standard port from your Linux client, e.g.
telnet my_server 1433
as MS Sql Server is listening on port 1433, MySQL is listening on 3306.
If this is fine, use the basic URL as duffymo mentioned above. Probably add username and password:
jdbc:sqlserver://myserver:1433;databaseName=my_db;user=my_user;password=my_password
I would first try if I can reach 'my_server' on the standard port from your Linux client, e.g.
telnet my_server 1433
as MS Sql Server is listening on port 1433, MySQL is listening on 3306.
If this is fine, use the basic URL as duffymo mentioned above. Probably add username and password:
jdbc:sqlserver://myserver:1433;databaseName=my_db;user=my_user;password=my_password
edited Jan 4 at 7:20
answered Jan 4 at 7:03
Fredy FischerFredy Fischer
24028
24028
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54024520%2funable-to-connect-to-sql-server-via-jdbc-on-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Start with the minimal URL: jdbc:sqlserver://<my_server>;databaseName=<my_db>. You assume that port is the default 3306. There's a Connection method that lets you enter username and password as method parameters in addition to the URL.
– duffymo
Jan 3 at 14:49