How to Install MySQL 8 on Ubuntu
Master MySQL Today:
How to install mysql 8 database server on Ubuntu Desktop. I am using Ubuntu 19.10, however, Ubuntu 16.04 and above will do.
Ubuntu Desktop Terminal Commands to install MySQL 8
sudo apt update && upgrade
sudo apt install mysql-server -y
sudo mysql
ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘password’;
FLUSH PRIVILEGES;
exit
mysql -u root -p
— type your root user password
Disclaimer: This video description contains few affiliate links, that means anything you buy through these links, I get commission from these websites, but that does not cost you anything extra. How cool is that!
Nguồn: https://ftlinuxcourse.com
Xem thêm bài viết khác: https://ftlinuxcourse.com/lap-trinh-linux
Xem thêm Bài Viết:
- Trải nghiệm mới hay ho với hướng dẫn cài Mac Os trên vmware
- Bật mí cách cài đặt ssl miễn phí lên Let’s Encrypt
- Tuyệt chiêu tạo usb boot kali linux đơn giản dành cho bạn
- Hướng dẫn chi tiết từ A – Z các bước cài đặt Python trên Windows 10
- Bật mí quy trình cài đặt Kali Linux trên Vmware đúng chuẩn và chi tiết
Comments