演習 - Azure Database for MySQL をデプロイする
この演習では、Azure Database for MySQL のインスタンスを作成し、それにサンプル データを読み込みます。
サンプル アプリケーションとスクリプトを入手する
最初に、サンプル アプリケーションとシェル スクリプトを 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 にまだサインインしていない場合は Azure にサインインします。
az login
既定のインストール場所を設定する
このモジュールで使用されるスクリプトで実行されるコマンドには --location
オプションが必要です。 次のコマンドでこのオプションの既定値を指定できます。
az configure --defaults location=<desired location>
Note
Java EE アプリケーションのデプロイも同じリージョンに変更することをお勧めします。
Azure Database for MySQL インスタンスを作成する
サインインした後、プロジェクト スクリプト setup_mysql.sh
を使用して、Azure Database for MySQL のインスタンスを作成します。 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 の公式 Web サイトから 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>
world
データベースとそのテーブルが MySQL データベース内に自動的に作成されます。 この操作には数分かかります。
データベースとテーブルを確認する
データベースがサーバーに存在することを確認します。
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)
人口が 100 万を超えるすべての都市を取得します。
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) アプリケーションを JBoss EAP on Azure App Service にデプロイして構成する手順を確認します。