nihaogirl 发表于 2018-10-4 08:18:18

RHEL AS 5 安装MYSQL

# /etc/init.d/mysql stop  # mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
  # mysql -u root mysql
  mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
  mysql> FLUSH PRIVILEGES;
  mysql> quit
  # /etc/init.d/mysql restart
  # mysql -uroot -p
  Enter password: <

页: [1]
查看完整版本: RHEL AS 5 安装MYSQL