← Krallığa Dön
29 January 2026

Linux Mysql Server Yükleme

JB
Baron Kodun Karanlık Lordu

Herhangi bir güncelleme var mı onu kontrol edelim.

sudo apt-get update

Şimdi mysql-server'i indirelim.

sudo apt install mysql-server
mysql --version
sudo systemctl status mysql

Çalışıyorsa artık mysql inmiştir ve burda artık root için bir parola belirtelim.

sudo mysql -u root
SELECT user,host,authentication_string,plugin FROM mysql.user WHERE user='root';
ALTER USER 'root'@'localhost' IDENTIFIED WITH 'mysql_native_password' BY 'password';
FLUSH PRIVILEGES;
exit;