Hướng dẫn cài đặt MySQL 8.0 trên CentOS 7.x
Bước 1: Cài đặt gói yum cho MySQL
# rpm -Uvh https://repo.mysql.com/mysql57-community-release-el7-11.noarch.rpm
Bước 2: Cài đặt MySQL
# yum --enablerepo=mysql80-community install mysql-community-server
Bước 3: Khởi động dịch vụ MySQL
# systemctl start mysqld.service
# systemctl enable mysqld.service
Bước 4: Tìm mật khẩu mặc định MySQL
# grep "A temporary password" /var/log/mysqld.log
Bước 5: Khởi tạo thông tin mật khẩu root MySQL
# mysql_secure_installation
Bước 6: Kiểm tra
#mysql -u root -p
Xem thêm video
Chúc bạn thành công !
Lưu ý: Nên gỡ bỏ gói rpm cho MySQL khi cài đặt xong
# rpm -ivh https://repo.mysql.com/mysql57-community-release-el7-11.noarch.rpm
No comments: