Cannot start MySQL in Linux
up vote
-1
down vote
favorite
Have downloaded MySQL repository through the APT repository, then already did sudo apt-get update
and sudo apt-get install mysql-server
. But I got the error below:
asus@asus-K40IJ:~$ sudo mysqld
[sudo] password for asus:
2018-11-10T04:34:58.070075Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2018-11-10T04:34:58.074324Z 0 [Note] mysqld (mysqld 5.7.24) starting as process 3686 ...
2018-11-10T04:34:58.077869Z 0 [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
2018-11-10T04:34:58.077928Z 0 [ERROR] Aborting
2018-11-10T04:34:58.077959Z 0 [Note] Binlog end
2018-11-10T04:34:58.078047Z 0 [Note] mysqld: Shutdown complete
Why is this and how to solve this..?
mysql ubuntu
add a comment |
up vote
-1
down vote
favorite
Have downloaded MySQL repository through the APT repository, then already did sudo apt-get update
and sudo apt-get install mysql-server
. But I got the error below:
asus@asus-K40IJ:~$ sudo mysqld
[sudo] password for asus:
2018-11-10T04:34:58.070075Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2018-11-10T04:34:58.074324Z 0 [Note] mysqld (mysqld 5.7.24) starting as process 3686 ...
2018-11-10T04:34:58.077869Z 0 [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
2018-11-10T04:34:58.077928Z 0 [ERROR] Aborting
2018-11-10T04:34:58.077959Z 0 [Note] Binlog end
2018-11-10T04:34:58.078047Z 0 [Note] mysqld: Shutdown complete
Why is this and how to solve this..?
mysql ubuntu
@KenWhite I have read dev.mysql.com/doc/refman/5.5/en/changing-mysql-user.html but still confused about thechown -R user_name /path/to/mysql/datadir
– Arief
Nov 10 at 5:17
Don't run it with sudo
– mrpatg
Nov 10 at 15:11
$mysql thats the proper way to run mysql
– Antonio
Nov 10 at 20:47
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
Have downloaded MySQL repository through the APT repository, then already did sudo apt-get update
and sudo apt-get install mysql-server
. But I got the error below:
asus@asus-K40IJ:~$ sudo mysqld
[sudo] password for asus:
2018-11-10T04:34:58.070075Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2018-11-10T04:34:58.074324Z 0 [Note] mysqld (mysqld 5.7.24) starting as process 3686 ...
2018-11-10T04:34:58.077869Z 0 [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
2018-11-10T04:34:58.077928Z 0 [ERROR] Aborting
2018-11-10T04:34:58.077959Z 0 [Note] Binlog end
2018-11-10T04:34:58.078047Z 0 [Note] mysqld: Shutdown complete
Why is this and how to solve this..?
mysql ubuntu
Have downloaded MySQL repository through the APT repository, then already did sudo apt-get update
and sudo apt-get install mysql-server
. But I got the error below:
asus@asus-K40IJ:~$ sudo mysqld
[sudo] password for asus:
2018-11-10T04:34:58.070075Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2018-11-10T04:34:58.074324Z 0 [Note] mysqld (mysqld 5.7.24) starting as process 3686 ...
2018-11-10T04:34:58.077869Z 0 [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
2018-11-10T04:34:58.077928Z 0 [ERROR] Aborting
2018-11-10T04:34:58.077959Z 0 [Note] Binlog end
2018-11-10T04:34:58.078047Z 0 [Note] mysqld: Shutdown complete
Why is this and how to solve this..?
mysql ubuntu
mysql ubuntu
asked Nov 10 at 4:40
Arief
163
163
@KenWhite I have read dev.mysql.com/doc/refman/5.5/en/changing-mysql-user.html but still confused about thechown -R user_name /path/to/mysql/datadir
– Arief
Nov 10 at 5:17
Don't run it with sudo
– mrpatg
Nov 10 at 15:11
$mysql thats the proper way to run mysql
– Antonio
Nov 10 at 20:47
add a comment |
@KenWhite I have read dev.mysql.com/doc/refman/5.5/en/changing-mysql-user.html but still confused about thechown -R user_name /path/to/mysql/datadir
– Arief
Nov 10 at 5:17
Don't run it with sudo
– mrpatg
Nov 10 at 15:11
$mysql thats the proper way to run mysql
– Antonio
Nov 10 at 20:47
@KenWhite I have read dev.mysql.com/doc/refman/5.5/en/changing-mysql-user.html but still confused about the
chown -R user_name /path/to/mysql/datadir
– Arief
Nov 10 at 5:17
@KenWhite I have read dev.mysql.com/doc/refman/5.5/en/changing-mysql-user.html but still confused about the
chown -R user_name /path/to/mysql/datadir
– Arief
Nov 10 at 5:17
Don't run it with sudo
– mrpatg
Nov 10 at 15:11
Don't run it with sudo
– mrpatg
Nov 10 at 15:11
$mysql thats the proper way to run mysql
– Antonio
Nov 10 at 20:47
$mysql thats the proper way to run mysql
– Antonio
Nov 10 at 20:47
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
It is not recommended to run 'mysqld' as root for security. But you can do it with '--user=root' option.
Please see for more details.
https://dev.mysql.com/doc/refman/8.0/en/security-against-attack.html
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
It is not recommended to run 'mysqld' as root for security. But you can do it with '--user=root' option.
Please see for more details.
https://dev.mysql.com/doc/refman/8.0/en/security-against-attack.html
add a comment |
up vote
0
down vote
It is not recommended to run 'mysqld' as root for security. But you can do it with '--user=root' option.
Please see for more details.
https://dev.mysql.com/doc/refman/8.0/en/security-against-attack.html
add a comment |
up vote
0
down vote
up vote
0
down vote
It is not recommended to run 'mysqld' as root for security. But you can do it with '--user=root' option.
Please see for more details.
https://dev.mysql.com/doc/refman/8.0/en/security-against-attack.html
It is not recommended to run 'mysqld' as root for security. But you can do it with '--user=root' option.
Please see for more details.
https://dev.mysql.com/doc/refman/8.0/en/security-against-attack.html
answered Nov 11 at 17:17
MR.ROBOT
81
81
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53236041%2fcannot-start-mysql-in-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
@KenWhite I have read dev.mysql.com/doc/refman/5.5/en/changing-mysql-user.html but still confused about the
chown -R user_name /path/to/mysql/datadir
– Arief
Nov 10 at 5:17
Don't run it with sudo
– mrpatg
Nov 10 at 15:11
$mysql thats the proper way to run mysql
– Antonio
Nov 10 at 20:47