Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem that you can't start MySQL with root account

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

How to solve the problem that I can't start MySQL with my root account? I believe that many inexperienced people are at a loss about this. This article summarizes the solution to the problem of not starting MySQL with a root account. Through this article, I hope you can solve this problem.

Scene

Version 5.6.44, [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root! Here, mysql refuses to start the mysql service with the root account by default for security reasons.

Solve

1. Start by forcing the use of a root account by adding-user=root to the command

Mysqld-user=root

two。 Start mysqld with a normal user. This user must belong to the mysqld user group and be in the my.cnf file. Use vi / etc/my.cnf

Add user=mysql to specify mysql users to start the mysql service, or add user=root directly

[set permissions]

Use the following command to see if there are any mysql users and user groups

$cat / etc/passwd # View user list

$cat / etc/group # View the list of user groups

If not, create it.

$groupadd mysql

$useradd-g mysql mysql

Modify / usr/local/mysqld permissions

$chown-R mysql:mysql / usr/local/mysqld

The above is the solution to the problem that you can't start MySQL with your root account, and you have to use it before you know the details. If you want to read more related articles, you are welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report