練習 - 部署適用於 MySQL 的 Azure 資料庫
在此練習中,您將建立適用於 MySQL 的 Azure 資料庫執行個體,並使用範例資料載入。
取得範例應用程式和指令碼
首先,從 GitHub 存放庫複製範例應用程式和 殼層指令碼:
git clone https://github.com/MicrosoftDocs/mslearn-jakarta-ee-azure.git
複製專案之後,您會看到下列目錄和檔案:
├── Azure-MySQL-Setup-For-Sample-App.md
├── README.md
├── pom.xml
├── setup_mysql.sh
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── microsoft
│ │ │ └── azure
│ │ │ └── samples
│ │ │ ├── JAXRSConfiguration.java
│ │ │ ├── controllers
│ │ │ │ ├── CityService.java
│ │ │ │ └── CountryService.java
│ │ │ ├── entities
│ │ │ │ ├── City.java
│ │ │ │ └── Country.java
│ │ │ └── rest
│ │ │ └── WorldServiceEndpoint.java
│ │ ├── resources
│ │ │ └── META-INF
│ │ │ └── persistence.xml
│ │ └── webapp
│ │ └── WEB-INF
│ │ ├── beans.xml
│ │ ├── createMySQLDataSource.sh
│ │ └── web.xml
│ └── test
│ └── java
│ └── com
│ └── microsoft
│ └── azure
│ └── samples
│ └── SampleTest.java
└── world.sql
登入 Azure
如果您尚未登入 Azure,請於此時登入:
az login
設定預設安裝位置
此課程模組中使用之指令碼所執行的命令預期 --location
選項。 您可以使用下列命令來指定這個選項的預設值。
az configure --defaults location=<desired location>
注意
建議您變更為相同的區域,以部署您的 Java EE 應用程式。
建立適用於 MySQL 的 Azure 資料庫執行個體
登入之後,請使用專案指令碼 setup_mysql.sh
來建立您的適用於 MySQL 的 Azure 資料庫執行個體。 請確定您處於 mslearn-jakarta-ee-azure
目錄。
重要
在 IPv4 環境中執行下列命令。 如果您的環境具有 IPv6 位址,此命令將會失敗,因為防火牆設定還不支援 IPv6 位址。
./setup_mysql.sh flexible
請注意出現在命令輸出中的索引鍵值。 您會在稍後的步驟中使用這些值。
[INFO] -------------------------------------------------------
[INFO] Azure Database for MySQL Setup Completed SUCCESS
[INFO] -------------------------------------------------------
[INFO] 1. Please copy the following value into your temporal file
[INFO]
[INFO] RESOURCE GROUP is MySQL-RG-20201208152233
[INFO] MySQL HOSTNAME is mysqlserver-wqcnzwhqvw.mysql.database.azure.com
[INFO] MySQL USERNAME is azureuser
[INFO] MySQL PASSWORD is **********
[INFO]
[INFO]
[INFO] 2. Please execute the following command.
[INFO]
[INFO] mysql -u azureuser -h mysqlserver-wqcnzwhqvw.mysql.database.azure.com -p [Enter Key]
[INFO] Enter password: ********** [COPY&PASTE]
[INFO]
[INFO]
[INFO] 3. Clean up Resource (Delete MySQL DB)
[INFO] az group delete -n MySQL-RG-20201208152233
[INFO] -------------------------------------------------------
從範例資料庫取得資料
在本課程模組中,您將使用官方 MySQL 網站的範例資料庫 world
。 若要取得資料:
下載資料庫檔案:
curl -o world-db.zip https://downloads.mysql.com/docs/world-db.zip
將資料庫檔案解壓縮:
unzip world-db.zip
存取 SQL 檔案:
cd world-db ls -l world.sql
-rw-r--r-- 1 ****** wheel 398635 1 7 12:25 world.sql
登入 MySQL 資料庫
取得 MySQL 資料庫之後,您可以使用在建立彈性伺服器執行個體時所記錄的 mysql
命令和密碼來存取資料庫:
mysql -u azureuser -h mysqlserver-<your instance>.mysql.database.azure.com -p [Enter]
Enter password: [**********]
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 5.7.29-log MySQL Community Server (GPL)
Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
為您的應用程式建立資料庫和資料表
執行下列 mysql
命令:
mysql> source world.sql
Query OK, 0 rows affected (0.01 sec)
....
....
Query OK, 0 rows affected (0.01 sec)
mysql>
系統會自動在 MySQL 資料庫中建立 world
資料庫及其資料表。 此動作需要幾分鐘的時間。
確認資料庫和資料表
確認資料庫在您的伺服器中:
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | | world | +--------------------+ 5 rows in set (0.02 sec)
指向
world
資料庫中的資料:mysql> use world; Database changed
確認
world
資料庫中的所有資料表:mysql> show tables; +-----------------+ | Tables_in_world | +-----------------+ | city | | country | | countrylanguage | +-----------------+ 3 rows in set (0.04 sec)
查詢範例資料庫
現在您可以查看 world
資料庫的內容。
取得所有大陸的資訊:
mysql> select distinct Continent from country ; +---------------+ | Continent | +---------------+ | North America | | Asia | | Africa | | Europe | | South America | | Oceania | | Antarctica | +---------------+
依大陸取得國家/地區名稱和國碼 (地區碼):
mysql> select code,name from country where Continent='Asia'; +------+----------------------+ | code | Name | +------+----------------------+ | AFG | Afghanistan | | ARE | United Arab Emirates | | ARM | Armenia | | AZE | Azerbaijan | | BGD | Bangladesh | | BHR | Bahrain | | BRN | Brunei | | BTN | Bhutan | | CHN | China | | CYP | Cyprus | | GEO | Georgia | | HKG | Hong Kong SAR | | IDN | Indonesia | | IND | India | | IRN | Iran | | IRQ | Iraq | | ISR | Israel | | JOR | Jordan | | JPN | Japan | ..... | VNM | Vietnam | | YEM | Yemen | +------+----------------------+ 51 rows in set (0.02 sec)
取得人口大於一百萬的所有城市:
mysql> select * from city where CountryCode='JPN' AND Population > 1000000 ORDER BY Population DESC; +------+---------------------+-------------+-----------+------------+ | ID | Name | CountryCode | District | Population | +------+---------------------+-------------+-----------+------------+ | 1532 | Tokyo | JPN | Tokyo-to | 7980230 | | 1533 | Jokohama [Yokohama] | JPN | Kanagawa | 3339594 | | 1534 | Osaka | JPN | Osaka | 2595674 | | 1535 | Nagoya | JPN | Aichi | 2154376 | | 1536 | Sapporo | JPN | Hokkaido | 1790886 | | 1537 | Kioto | JPN | Kyoto | 1461974 | | 1538 | Kobe | JPN | Hyogo | 1425139 | | 1539 | Fukuoka | JPN | Fukuoka | 1308379 | | 1540 | Kawasaki | JPN | Kanagawa | 1217359 | | 1541 | Hiroshima | JPN | Hiroshima | 1119117 | | 1542 | Kitakyushu | JPN | Fukuoka | 1016264 | +------+---------------------+-------------+-----------+------------+ 11 rows in set (0.33 sec)
單元摘要
您現在已完成 MySQL 伺服器的設定和準備工作。 在下一個單元中,您將會看到以下步驟,說明如何將 Java EE (Jakarta EE) 應用程式部署到 Azure App Service 上的 JBoss EAP 並進行設定。