You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo apt update && sudo apt install mysql-server
sudo mysql -p -u root
CREATE USER 'pdclab'@'140.115.52.21' IDENTIFIED BY 'pdclab1234';
GRANT ALL PRIVILEGES ON orderlist .* TO 'pdclab'@'140.115.52.21';
FLUSH PRIVILEGES;
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
在VSCODE上使用MySQL
sudo mysql -p -u root
ALTER USER 'pdclab'@'%' IDENTIFIED WITH mysql_native_password BY 'pdclab1234';\q
執行程式
cd flask案例
flask run -p 8888 -h 0.0.0.0
# or
python3 app.py