0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Azure App ServiceにcURLコマンドでwarファイルをデプロイする方法

Last updated at Posted at 2020-06-16

Azure App ServiceにcURLコマンドでwarファイルをデプロイする方法をご紹介します。

参考にしたサイト

内容

  • App Serviceの作成
  • ユーザの資格情報の設定
  • cURLコマンド実行
  • 動作確認

※こちらではwarファイルの作成方法は記載しておりません。

App Serviceの作成

  • Azureポータルにアクセス

  • App Serviceを選択選択
    ホーム_-_Microsoft_Azure.png

  • 追加を選択
    App_Service_-_Microsoft_Azure.png

  • 「ランタイムスタック」でTomcatを選択する

  • その他の項目を設定して、「確認および作成」をクリック。確認ページが表示されるので「作成」をクリックする。
    Web_アプリ_-_Microsoft_Azure.png

ユーザの資格情報の設定

  • 一度ホームに戻って「App Service」 - 「デプロイセンター」にアクセスする
    war-deploy-test_-_Microsoft_Azure.png

  • FTPを選択してダッシュボードををクリックする
    war-deploy-test___デプロイ_センター_-_Microsoft_Azure.png

  • ユーザーの資格情報で資格情報を作成する
    war-deploy-test___デプロイ_センター_-_Microsoft_Azure.png

cURLコマンド実行

  • warファイルが置いてあるディレクトリに移動する
  • 以下のコマンドを実行する
curl -X POST -u <ユーザーの資格情報で設定したユーザ名> --data-binary @"<warファイル名>" https://<app-name>.scm.azurewebsites.net/api/wardeploy
Enter host password for user 'hogehoge': #パスワードを聞かれるのでユーザーの資格情報で設定したパスワードを入力

動作確認

  • 高度なツールにアクセスして「移動」を選択する
    war-deploy-test___高度なツール_-_Microsoft_Azure.png

  • Deploymentsを選択する
    Azure_App_Service.png

  • デプロイされた内容が表示されることを確認する。(失敗している場合は[]が表示されます。)

  • 「概要」に記載されているURLにアクセスする
    war-deploy-test_-_Microsoft_Azure.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?