教育-安装数据库连接工具

时间:2023-11-01 16:19:53

安装数据库连接工具

sudo yum --enablerepo=mysql80-community install mysql-community-server --nogpgcheck

启动mysql服务

service mysqld start
图1 启动

查看root临时密码

grep "A temporary password" /var/log/mysqld.log

登录数据库

mysql -uroot -p"数据库密码"

修改数据库密码并授权

ALTER USER 'root'@'localhost' IDENTIFIED BY '数据库密码';create user 'root'@'%' identified by '数据库密码' ;grant all privileges on *.* to  'root'@'%' with grant option ;flush privileges;
support.huaweicloud.com/educationcloudplatform-education/educationcloudplatform_43.html