Why does mysql server not accept nonlocal connection request, but still listen on a tcp port?2019 Community Moderator ElectionWhy is mysql server accepting nonlocal request, while postgresql server is not?Trying to create tunnel to MySQL through SSHWhy does the root user have control over mysql directories but not show as a member of the mysql group?Establish connection between Qemu Raspbian machine and HostIf I install MySQL-python using pip, does that means that I can use MySQL server/client?Mysql server not startingReroute mysql connection through external machineCouldn't connect to Larvel homestead database with MYSQL workbenchMySQL Remote connection not succeedingWhy can't I connect to mysql remotely?Why is mysql server accepting nonlocal request, while postgresql server is not?
How do I fix the group tension caused by my character stealing and possibly killing without provocation?
Microchip documentation does not label CAN buss pins on micro controller pinout diagram
Does the Linux kernel need a file system to run?
What does "Scientists rise up against statistical significance" mean? (Comment in Nature)
How would you translate "more" for use as an interface button?
Why should universal income be universal?
Change the color of a single dot in `ddot` symbol
Were Persian-Median kings illiterate?
A Trivial Diagnosis
Stack Interview Code methods made from class Node and Smart Pointers
Quoting Keynes in a lecture
What is the English pronunciation of "pain au chocolat"?
Make a Bowl of Alphabet Soup
Why does AES have exactly 10 rounds for a 128-bit key, 12 for 192 bits and 14 for a 256-bit key size?
How could a planet have erratic days?
Doesn't the system of the Supreme Court oppose justice?
Why does Carol not get rid of the Kree symbol on her suit when she changes its colours?
What (the heck) is a Super Worm Equinox Moon?
The Digit Triangles
Giving feedback to someone without sounding prejudiced
How much theory knowledge is actually used while playing?
Will number of steps recorded on FitBit/any fitness tracker add up distance in PokemonGo?
Is there a way to have vectors outlined in a Vector Plot?
How many arrows is an archer expected to fire by the end of the Tyranny of Dragons pair of adventures?
Why does mysql server not accept nonlocal connection request, but still listen on a tcp port?
2019 Community Moderator ElectionWhy is mysql server accepting nonlocal request, while postgresql server is not?Trying to create tunnel to MySQL through SSHWhy does the root user have control over mysql directories but not show as a member of the mysql group?Establish connection between Qemu Raspbian machine and HostIf I install MySQL-python using pip, does that means that I can use MySQL server/client?Mysql server not startingReroute mysql connection through external machineCouldn't connect to Larvel homestead database with MYSQL workbenchMySQL Remote connection not succeedingWhy can't I connect to mysql remotely?Why is mysql server accepting nonlocal request, while postgresql server is not?
A mysql server with default settings is listening on a port on a machine:
$ nmap -p0-65535 192.168.1.97
Starting Nmap 7.60 ( https://nmap.org ) at 2019-03-20 14:34 EDT
Nmap scan report for ocean.fios-router.home (192.168.1.97)
Host is up (0.00036s latency).
Not shown: 65533 closed ports
PORT STATE SERVICE
22/tcp open ssh
3306/tcp open mysql
33060/tcp open mysqlx
Nmap done: 1 IP address (1 host up) scanned in 4.50 seconds
I can't connect to the mysql server from another machine:
$ mysql --user=root --host=ocean --password test
Enter password:
ERROR 1130 (HY000): Host 'olive.fios-router.home' is not allowed to connect to this MySQL server
How shall I understand the two contradictory results?
Did mysql server receive the connection request, but then refuses it?
If it doesn't accept nonlocal connection request, why does it listen on a tcp port?
Thanks.
mysql
add a comment |
A mysql server with default settings is listening on a port on a machine:
$ nmap -p0-65535 192.168.1.97
Starting Nmap 7.60 ( https://nmap.org ) at 2019-03-20 14:34 EDT
Nmap scan report for ocean.fios-router.home (192.168.1.97)
Host is up (0.00036s latency).
Not shown: 65533 closed ports
PORT STATE SERVICE
22/tcp open ssh
3306/tcp open mysql
33060/tcp open mysqlx
Nmap done: 1 IP address (1 host up) scanned in 4.50 seconds
I can't connect to the mysql server from another machine:
$ mysql --user=root --host=ocean --password test
Enter password:
ERROR 1130 (HY000): Host 'olive.fios-router.home' is not allowed to connect to this MySQL server
How shall I understand the two contradictory results?
Did mysql server receive the connection request, but then refuses it?
If it doesn't accept nonlocal connection request, why does it listen on a tcp port?
Thanks.
mysql
4
Possible duplicate of Why is mysql server accepting nonlocal request, while postgresql server is not?
– nwildner
yesterday
@nwildner, that one looks like it's about what address mysql is listening to, this seems to be about what it does when it gets a connection. That's not really the same.
– ilkkachu
8 hours ago
Maybe not the exact same question(2 or 3 words different), but it seems from the title, the time between those question and being the same user, that he just asked this question before even trying to use what was said on that queston. Take your time to look at both and my comments at the answer of that other question...
– nwildner
6 hours ago
add a comment |
A mysql server with default settings is listening on a port on a machine:
$ nmap -p0-65535 192.168.1.97
Starting Nmap 7.60 ( https://nmap.org ) at 2019-03-20 14:34 EDT
Nmap scan report for ocean.fios-router.home (192.168.1.97)
Host is up (0.00036s latency).
Not shown: 65533 closed ports
PORT STATE SERVICE
22/tcp open ssh
3306/tcp open mysql
33060/tcp open mysqlx
Nmap done: 1 IP address (1 host up) scanned in 4.50 seconds
I can't connect to the mysql server from another machine:
$ mysql --user=root --host=ocean --password test
Enter password:
ERROR 1130 (HY000): Host 'olive.fios-router.home' is not allowed to connect to this MySQL server
How shall I understand the two contradictory results?
Did mysql server receive the connection request, but then refuses it?
If it doesn't accept nonlocal connection request, why does it listen on a tcp port?
Thanks.
mysql
A mysql server with default settings is listening on a port on a machine:
$ nmap -p0-65535 192.168.1.97
Starting Nmap 7.60 ( https://nmap.org ) at 2019-03-20 14:34 EDT
Nmap scan report for ocean.fios-router.home (192.168.1.97)
Host is up (0.00036s latency).
Not shown: 65533 closed ports
PORT STATE SERVICE
22/tcp open ssh
3306/tcp open mysql
33060/tcp open mysqlx
Nmap done: 1 IP address (1 host up) scanned in 4.50 seconds
I can't connect to the mysql server from another machine:
$ mysql --user=root --host=ocean --password test
Enter password:
ERROR 1130 (HY000): Host 'olive.fios-router.home' is not allowed to connect to this MySQL server
How shall I understand the two contradictory results?
Did mysql server receive the connection request, but then refuses it?
If it doesn't accept nonlocal connection request, why does it listen on a tcp port?
Thanks.
mysql
mysql
asked yesterday
TimTim
27.9k78269486
27.9k78269486
4
Possible duplicate of Why is mysql server accepting nonlocal request, while postgresql server is not?
– nwildner
yesterday
@nwildner, that one looks like it's about what address mysql is listening to, this seems to be about what it does when it gets a connection. That's not really the same.
– ilkkachu
8 hours ago
Maybe not the exact same question(2 or 3 words different), but it seems from the title, the time between those question and being the same user, that he just asked this question before even trying to use what was said on that queston. Take your time to look at both and my comments at the answer of that other question...
– nwildner
6 hours ago
add a comment |
4
Possible duplicate of Why is mysql server accepting nonlocal request, while postgresql server is not?
– nwildner
yesterday
@nwildner, that one looks like it's about what address mysql is listening to, this seems to be about what it does when it gets a connection. That's not really the same.
– ilkkachu
8 hours ago
Maybe not the exact same question(2 or 3 words different), but it seems from the title, the time between those question and being the same user, that he just asked this question before even trying to use what was said on that queston. Take your time to look at both and my comments at the answer of that other question...
– nwildner
6 hours ago
4
4
Possible duplicate of Why is mysql server accepting nonlocal request, while postgresql server is not?
– nwildner
yesterday
Possible duplicate of Why is mysql server accepting nonlocal request, while postgresql server is not?
– nwildner
yesterday
@nwildner, that one looks like it's about what address mysql is listening to, this seems to be about what it does when it gets a connection. That's not really the same.
– ilkkachu
8 hours ago
@nwildner, that one looks like it's about what address mysql is listening to, this seems to be about what it does when it gets a connection. That's not really the same.
– ilkkachu
8 hours ago
Maybe not the exact same question(2 or 3 words different), but it seems from the title, the time between those question and being the same user, that he just asked this question before even trying to use what was said on that queston. Take your time to look at both and my comments at the answer of that other question...
– nwildner
6 hours ago
Maybe not the exact same question(2 or 3 words different), but it seems from the title, the time between those question and being the same user, that he just asked this question before even trying to use what was said on that queston. Take your time to look at both and my comments at the answer of that other question...
– nwildner
6 hours ago
add a comment |
2 Answers
2
active
oldest
votes
That's because what MySQL does consider as a users. In MySQL You grant privileges to user+host combination written as user@host
.
Following each of following examples are is different
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'%';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'localhost';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'192.168.1.97';
Each user+host combination can have a different password (… if append IDENTIFIED BY 'your-password';
You can find more examples and better description in MySQL GRANT documentation
add a comment |
Well, it seems that you have duplicated your question instead of editing the original one.
If you have edited bind-address
as said at the other question, your service should not listen to other ip address than the one configured on that parameter.
Second, you are not allowed to connect to this server because you need to also provide access at the application level of MySQL.
At the local shell of that remote server, access your mysql
prompt and execute the following
`GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password';`
You seem to be missing 2 basic things at MySQL: network configuration and application level authorization/permission. I suggest you to study that technology further.
Google it further by ERROR 1130 (HY000): Host is not allowed
. You will be surprised that the FIRST RESULT of that search will also lead you to StackExchange. Here: ERROR 1130 (HY000): Host '' is not allowed to connect to this MySQL server [duplicate]
Thanks. If it doesn't accept nonlocal connection request in terms of application level authorization/permission, why does it listen on a tcp port?
– Tim
yesterday
Cause to make it listen to other addresses than0.0.0.0
(all addresses at all interfaces) you need to edit yourmy.cnf
file and configure it no NOT LISTEN to all existing addresses you have. I have already answered that at the other question, and even explained WHY this behavior exists. Take your time to read it carefully
– nwildner
yesterday
Maybe I wasn't clear. If mysql server doesn't grant application level authorization/permission to nonlocal authentication request, why does it bother to listen at a TCP port?
– Tim
yesterday
Cause, again, you need to configure yourmy.cnf
to bind ONLY no localhost ip address(127.0.0.1
). Otherwise, it will bind to ALL existing IP addresses of your computer....
– nwildner
yesterday
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f507548%2fwhy-does-mysql-server-not-accept-nonlocal-connection-request-but-still-listen-o%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
That's because what MySQL does consider as a users. In MySQL You grant privileges to user+host combination written as user@host
.
Following each of following examples are is different
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'%';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'localhost';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'192.168.1.97';
Each user+host combination can have a different password (… if append IDENTIFIED BY 'your-password';
You can find more examples and better description in MySQL GRANT documentation
add a comment |
That's because what MySQL does consider as a users. In MySQL You grant privileges to user+host combination written as user@host
.
Following each of following examples are is different
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'%';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'localhost';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'192.168.1.97';
Each user+host combination can have a different password (… if append IDENTIFIED BY 'your-password';
You can find more examples and better description in MySQL GRANT documentation
add a comment |
That's because what MySQL does consider as a users. In MySQL You grant privileges to user+host combination written as user@host
.
Following each of following examples are is different
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'%';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'localhost';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'192.168.1.97';
Each user+host combination can have a different password (… if append IDENTIFIED BY 'your-password';
You can find more examples and better description in MySQL GRANT documentation
That's because what MySQL does consider as a users. In MySQL You grant privileges to user+host combination written as user@host
.
Following each of following examples are is different
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'%';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'localhost';
GRANT ALL PRIVILEGES ON db.* TO 'user1'@'192.168.1.97';
Each user+host combination can have a different password (… if append IDENTIFIED BY 'your-password';
You can find more examples and better description in MySQL GRANT documentation
answered yesterday
Jakub JindraJakub Jindra
379310
379310
add a comment |
add a comment |
Well, it seems that you have duplicated your question instead of editing the original one.
If you have edited bind-address
as said at the other question, your service should not listen to other ip address than the one configured on that parameter.
Second, you are not allowed to connect to this server because you need to also provide access at the application level of MySQL.
At the local shell of that remote server, access your mysql
prompt and execute the following
`GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password';`
You seem to be missing 2 basic things at MySQL: network configuration and application level authorization/permission. I suggest you to study that technology further.
Google it further by ERROR 1130 (HY000): Host is not allowed
. You will be surprised that the FIRST RESULT of that search will also lead you to StackExchange. Here: ERROR 1130 (HY000): Host '' is not allowed to connect to this MySQL server [duplicate]
Thanks. If it doesn't accept nonlocal connection request in terms of application level authorization/permission, why does it listen on a tcp port?
– Tim
yesterday
Cause to make it listen to other addresses than0.0.0.0
(all addresses at all interfaces) you need to edit yourmy.cnf
file and configure it no NOT LISTEN to all existing addresses you have. I have already answered that at the other question, and even explained WHY this behavior exists. Take your time to read it carefully
– nwildner
yesterday
Maybe I wasn't clear. If mysql server doesn't grant application level authorization/permission to nonlocal authentication request, why does it bother to listen at a TCP port?
– Tim
yesterday
Cause, again, you need to configure yourmy.cnf
to bind ONLY no localhost ip address(127.0.0.1
). Otherwise, it will bind to ALL existing IP addresses of your computer....
– nwildner
yesterday
add a comment |
Well, it seems that you have duplicated your question instead of editing the original one.
If you have edited bind-address
as said at the other question, your service should not listen to other ip address than the one configured on that parameter.
Second, you are not allowed to connect to this server because you need to also provide access at the application level of MySQL.
At the local shell of that remote server, access your mysql
prompt and execute the following
`GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password';`
You seem to be missing 2 basic things at MySQL: network configuration and application level authorization/permission. I suggest you to study that technology further.
Google it further by ERROR 1130 (HY000): Host is not allowed
. You will be surprised that the FIRST RESULT of that search will also lead you to StackExchange. Here: ERROR 1130 (HY000): Host '' is not allowed to connect to this MySQL server [duplicate]
Thanks. If it doesn't accept nonlocal connection request in terms of application level authorization/permission, why does it listen on a tcp port?
– Tim
yesterday
Cause to make it listen to other addresses than0.0.0.0
(all addresses at all interfaces) you need to edit yourmy.cnf
file and configure it no NOT LISTEN to all existing addresses you have. I have already answered that at the other question, and even explained WHY this behavior exists. Take your time to read it carefully
– nwildner
yesterday
Maybe I wasn't clear. If mysql server doesn't grant application level authorization/permission to nonlocal authentication request, why does it bother to listen at a TCP port?
– Tim
yesterday
Cause, again, you need to configure yourmy.cnf
to bind ONLY no localhost ip address(127.0.0.1
). Otherwise, it will bind to ALL existing IP addresses of your computer....
– nwildner
yesterday
add a comment |
Well, it seems that you have duplicated your question instead of editing the original one.
If you have edited bind-address
as said at the other question, your service should not listen to other ip address than the one configured on that parameter.
Second, you are not allowed to connect to this server because you need to also provide access at the application level of MySQL.
At the local shell of that remote server, access your mysql
prompt and execute the following
`GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password';`
You seem to be missing 2 basic things at MySQL: network configuration and application level authorization/permission. I suggest you to study that technology further.
Google it further by ERROR 1130 (HY000): Host is not allowed
. You will be surprised that the FIRST RESULT of that search will also lead you to StackExchange. Here: ERROR 1130 (HY000): Host '' is not allowed to connect to this MySQL server [duplicate]
Well, it seems that you have duplicated your question instead of editing the original one.
If you have edited bind-address
as said at the other question, your service should not listen to other ip address than the one configured on that parameter.
Second, you are not allowed to connect to this server because you need to also provide access at the application level of MySQL.
At the local shell of that remote server, access your mysql
prompt and execute the following
`GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password';`
You seem to be missing 2 basic things at MySQL: network configuration and application level authorization/permission. I suggest you to study that technology further.
Google it further by ERROR 1130 (HY000): Host is not allowed
. You will be surprised that the FIRST RESULT of that search will also lead you to StackExchange. Here: ERROR 1130 (HY000): Host '' is not allowed to connect to this MySQL server [duplicate]
answered yesterday
nwildnernwildner
14.8k34480
14.8k34480
Thanks. If it doesn't accept nonlocal connection request in terms of application level authorization/permission, why does it listen on a tcp port?
– Tim
yesterday
Cause to make it listen to other addresses than0.0.0.0
(all addresses at all interfaces) you need to edit yourmy.cnf
file and configure it no NOT LISTEN to all existing addresses you have. I have already answered that at the other question, and even explained WHY this behavior exists. Take your time to read it carefully
– nwildner
yesterday
Maybe I wasn't clear. If mysql server doesn't grant application level authorization/permission to nonlocal authentication request, why does it bother to listen at a TCP port?
– Tim
yesterday
Cause, again, you need to configure yourmy.cnf
to bind ONLY no localhost ip address(127.0.0.1
). Otherwise, it will bind to ALL existing IP addresses of your computer....
– nwildner
yesterday
add a comment |
Thanks. If it doesn't accept nonlocal connection request in terms of application level authorization/permission, why does it listen on a tcp port?
– Tim
yesterday
Cause to make it listen to other addresses than0.0.0.0
(all addresses at all interfaces) you need to edit yourmy.cnf
file and configure it no NOT LISTEN to all existing addresses you have. I have already answered that at the other question, and even explained WHY this behavior exists. Take your time to read it carefully
– nwildner
yesterday
Maybe I wasn't clear. If mysql server doesn't grant application level authorization/permission to nonlocal authentication request, why does it bother to listen at a TCP port?
– Tim
yesterday
Cause, again, you need to configure yourmy.cnf
to bind ONLY no localhost ip address(127.0.0.1
). Otherwise, it will bind to ALL existing IP addresses of your computer....
– nwildner
yesterday
Thanks. If it doesn't accept nonlocal connection request in terms of application level authorization/permission, why does it listen on a tcp port?
– Tim
yesterday
Thanks. If it doesn't accept nonlocal connection request in terms of application level authorization/permission, why does it listen on a tcp port?
– Tim
yesterday
Cause to make it listen to other addresses than
0.0.0.0
(all addresses at all interfaces) you need to edit your my.cnf
file and configure it no NOT LISTEN to all existing addresses you have. I have already answered that at the other question, and even explained WHY this behavior exists. Take your time to read it carefully– nwildner
yesterday
Cause to make it listen to other addresses than
0.0.0.0
(all addresses at all interfaces) you need to edit your my.cnf
file and configure it no NOT LISTEN to all existing addresses you have. I have already answered that at the other question, and even explained WHY this behavior exists. Take your time to read it carefully– nwildner
yesterday
Maybe I wasn't clear. If mysql server doesn't grant application level authorization/permission to nonlocal authentication request, why does it bother to listen at a TCP port?
– Tim
yesterday
Maybe I wasn't clear. If mysql server doesn't grant application level authorization/permission to nonlocal authentication request, why does it bother to listen at a TCP port?
– Tim
yesterday
Cause, again, you need to configure your
my.cnf
to bind ONLY no localhost ip address(127.0.0.1
). Otherwise, it will bind to ALL existing IP addresses of your computer....– nwildner
yesterday
Cause, again, you need to configure your
my.cnf
to bind ONLY no localhost ip address(127.0.0.1
). Otherwise, it will bind to ALL existing IP addresses of your computer....– nwildner
yesterday
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f507548%2fwhy-does-mysql-server-not-accept-nonlocal-connection-request-but-still-listen-o%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
4
Possible duplicate of Why is mysql server accepting nonlocal request, while postgresql server is not?
– nwildner
yesterday
@nwildner, that one looks like it's about what address mysql is listening to, this seems to be about what it does when it gets a connection. That's not really the same.
– ilkkachu
8 hours ago
Maybe not the exact same question(2 or 3 words different), but it seems from the title, the time between those question and being the same user, that he just asked this question before even trying to use what was said on that queston. Take your time to look at both and my comments at the answer of that other question...
– nwildner
6 hours ago