登入資料庫方式,請執行以下的命令:
sudo mysql -u root -p

CREATE DATABASE itslinuxfoss;

為新建立的資料庫設定新的使用者名稱和密碼:
GRANT ALL PRIVILEGES ON itslinuxfoss.* TO 'itslinuxfoss'@'localhost' IDENTIFIED BY "Root";

儲存設定並離開 MariaDB:
FLUSH PRIVILEGES;
QUIT;

登入資料庫方式,請執行以下的命令:
sudo mysql -u root -p

CREATE DATABASE itslinuxfoss;

為新建立的資料庫設定新的使用者名稱和密碼:
GRANT ALL PRIVILEGES ON itslinuxfoss.* TO 'itslinuxfoss'@'localhost' IDENTIFIED BY "Root";

儲存設定並離開 MariaDB:
FLUSH PRIVILEGES;
QUIT;
















