2019鐵人賽
PHP 提供了許多可以操作 MySQL 資料庫的相關方法,可以讓使用者存取 MySQL 資料庫中的資料。
sudo apt-get update
sudo apt-get install mysql-server
sudo apt-get install php7.2-mysql
mysql --version
可以看出 MySQL 的版本
sudo mysql
GRANT ALL ON *.* TO 'username'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
自行把 username, password 換掉即可.
說明:
reference from https://www.mysql.com/
reference from https://blog.longwin.com.tw/2006/02/mysql_adduser_grant_2006/