How to install MySQL on Ubuntu with a particular IP address on a particular port?
Clash Royale CLAN TAG#URR8PPP
up vote
-2
down vote
favorite
How do I install MySQL on ubuntu 14.04 with the bind address as a particular IP address on port 1723?
ubuntu mysql ip-address port
add a comment |Â
up vote
-2
down vote
favorite
How do I install MySQL on ubuntu 14.04 with the bind address as a particular IP address on port 1723?
ubuntu mysql ip-address port
1
I thinks it is one question how to install a package like MySQL. My guess is that you have done that or can do so. Maybe you want to ask: How do I configure MySQL to listen on a particular port? (NB: Security by obscurity does not work, please google this.)
â Ned64
Mar 24 at 18:14
1
@Ned64 The main problem of the question is that it takes 10 seconds to get the answer from a search engine.
â Hauke Laging
Mar 25 at 11:12
@HaukeLaging That's right. And sad.
â Ned64
Mar 25 at 16:52
add a comment |Â
up vote
-2
down vote
favorite
up vote
-2
down vote
favorite
How do I install MySQL on ubuntu 14.04 with the bind address as a particular IP address on port 1723?
ubuntu mysql ip-address port
How do I install MySQL on ubuntu 14.04 with the bind address as a particular IP address on port 1723?
ubuntu mysql ip-address port
asked Mar 24 at 16:49
Sampad Mund
305
305
1
I thinks it is one question how to install a package like MySQL. My guess is that you have done that or can do so. Maybe you want to ask: How do I configure MySQL to listen on a particular port? (NB: Security by obscurity does not work, please google this.)
â Ned64
Mar 24 at 18:14
1
@Ned64 The main problem of the question is that it takes 10 seconds to get the answer from a search engine.
â Hauke Laging
Mar 25 at 11:12
@HaukeLaging That's right. And sad.
â Ned64
Mar 25 at 16:52
add a comment |Â
1
I thinks it is one question how to install a package like MySQL. My guess is that you have done that or can do so. Maybe you want to ask: How do I configure MySQL to listen on a particular port? (NB: Security by obscurity does not work, please google this.)
â Ned64
Mar 24 at 18:14
1
@Ned64 The main problem of the question is that it takes 10 seconds to get the answer from a search engine.
â Hauke Laging
Mar 25 at 11:12
@HaukeLaging That's right. And sad.
â Ned64
Mar 25 at 16:52
1
1
I thinks it is one question how to install a package like MySQL. My guess is that you have done that or can do so. Maybe you want to ask: How do I configure MySQL to listen on a particular port? (NB: Security by obscurity does not work, please google this.)
â Ned64
Mar 24 at 18:14
I thinks it is one question how to install a package like MySQL. My guess is that you have done that or can do so. Maybe you want to ask: How do I configure MySQL to listen on a particular port? (NB: Security by obscurity does not work, please google this.)
â Ned64
Mar 24 at 18:14
1
1
@Ned64 The main problem of the question is that it takes 10 seconds to get the answer from a search engine.
â Hauke Laging
Mar 25 at 11:12
@Ned64 The main problem of the question is that it takes 10 seconds to get the answer from a search engine.
â Hauke Laging
Mar 25 at 11:12
@HaukeLaging That's right. And sad.
â Ned64
Mar 25 at 16:52
@HaukeLaging That's right. And sad.
â Ned64
Mar 25 at 16:52
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
5
down vote
accepted
This configuration typically happens in my.cnf
, which is usually is /etc/my.cnf
or /etc/mysql/my.cnf
.
[mysqld]
bind-address = 127.0.0.1
port = 3306
Edit the configuration file specifying your values and restart the MySQL server.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
accepted
This configuration typically happens in my.cnf
, which is usually is /etc/my.cnf
or /etc/mysql/my.cnf
.
[mysqld]
bind-address = 127.0.0.1
port = 3306
Edit the configuration file specifying your values and restart the MySQL server.
add a comment |Â
up vote
5
down vote
accepted
This configuration typically happens in my.cnf
, which is usually is /etc/my.cnf
or /etc/mysql/my.cnf
.
[mysqld]
bind-address = 127.0.0.1
port = 3306
Edit the configuration file specifying your values and restart the MySQL server.
add a comment |Â
up vote
5
down vote
accepted
up vote
5
down vote
accepted
This configuration typically happens in my.cnf
, which is usually is /etc/my.cnf
or /etc/mysql/my.cnf
.
[mysqld]
bind-address = 127.0.0.1
port = 3306
Edit the configuration file specifying your values and restart the MySQL server.
This configuration typically happens in my.cnf
, which is usually is /etc/my.cnf
or /etc/mysql/my.cnf
.
[mysqld]
bind-address = 127.0.0.1
port = 3306
Edit the configuration file specifying your values and restart the MySQL server.
answered Mar 24 at 22:52
arcsin
845
845
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f433284%2fhow-to-install-mysql-on-ubuntu-with-a-particular-ip-address-on-a-particular-port%23new-answer', 'question_page');
);
Post as a guest
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
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
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
1
I thinks it is one question how to install a package like MySQL. My guess is that you have done that or can do so. Maybe you want to ask: How do I configure MySQL to listen on a particular port? (NB: Security by obscurity does not work, please google this.)
â Ned64
Mar 24 at 18:14
1
@Ned64 The main problem of the question is that it takes 10 seconds to get the answer from a search engine.
â Hauke Laging
Mar 25 at 11:12
@HaukeLaging That's right. And sad.
â Ned64
Mar 25 at 16:52