# systemctl start mysqld# systemctl enable mysqld
Created symlink /etc/systemd/system/multi-user.target.wants/mysqld.service → /usr/lib/systemd/system/mysqld.service.# systemctl status mysqld
● mysqld.service - MySQL 8.0 database server
Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset>
Active: active (running)..
2. 配置MySQL
运行 mysql_secure_installation 脚本快速设置
# mysql_secure_installation
Securing the MySQL server deployment.
Connecting to MySQL using a blank password.
VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?// 需要验证密码
Press y|Y for Yes, any other key for No: y
There are three levels of password validation policy:
LOW Length >=8
MEDIUM Length >=8, numeric, mixed case, and special characters
STRONG Length >=8, numeric, mixed case, special characters and dictionary file
// 密码强度等级,可根据自己的需求填写
Please enter 0= LOW,1= MEDIUM and 2= STRONG:0
Please set the password for root here.
New password:
Re-enter new password:
Estimated strength of the password:50// 继续使用刚设置的密码
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No): y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.// 移除匿名用户
Remove anonymous users?(Press y|Y for Yes, any other key for No): y
Success.
Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.// 允许远程访问MySQL
Disallow root login remotely?(Press y|Y for Yes, any other key for No): n
... skipping.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.// 移除测试数据库
Remove test database and access to it?(Press y|Y for Yes, any other key for No): y
- Dropping test database...
Success.- Removing privileges on test database...
Success.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.// 重新加载权限表
Reload privilege tables now?(Press y|Y for Yes, any other key for No): y
Success.
All done!
设置root用户能远程访问MySQL
# mysql -u root -p
mysql> show databases;
mysql> use mysql;
mysql> update user set host='%' where user='root';
mysql> flush privileges;
mysql> exit
3. 开放端口
查看MySQL的端口号,默认为 3306
# mysql -u root -p
mysql> show global variables like 'port';+---------------+-------+| Variable_name | Value |+---------------+-------+| port |3306|+---------------+-------+1 row in set (0.01 sec)
mysql> exit