Answers for "fedora install mysql 8"

SQL
0

install mysql 8 linux

Step 1: Update/Upgrade Package Repository

sudo apt update

Step 2: Install MySQL

sudo apt install mysql-server
mysql --version

Step 3: Securing MySQL

sudo mysql_secure_installation
type y and 1 and enter a strong password 
and answer y for rest of questions 

Step 4: Check if MySQL Service Is Running
sudo systemctl status mysql

you must see active as a status

Step 5: Log in to MySQL Server
sudo mysql -u root
Posted by: Guest on December-29-2021
0

install mysql for fedora 34

Please follow the link for full details

https://www.osradar.com/install-mysql-fedora/
Posted by: Guest on August-13-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language