标签:service lin ken ase 安装 oracle include alter oracl
https://dev.mysql.com/doc/mysql-installation-excerpt/5.7/en/linux-installation-yum-repo.html
yum localinstall https://dev.mysql.com/get/mysql80-community-release-el8-1.noarch.rpm
(EL8 systems only) EL8-based systems such as RHEL8 and Oracle Linux 8 include a MySQL module that is enabled by default. Unless this module is disabled, it masks packages provided by MySQL repositories. To disable the included module and make the MySQL repository packages visible, use the following command (for dnf-enabled systems, replace yum in the command with dnf):
sudo yum module disable mysql
sudo yum install mysql-community-server
service mysqld start
grep ‘temporary password‘ /var/log/mysqld.log
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘MyNewPass4@‘;
标签:service lin ken ase 安装 oracle include alter oracl
原文地址:https://www.cnblogs.com/kaisim/p/12547611.html