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.

AWSでWebアプリをデプロイする方法(Java)⑧

Last updated at Posted at 2021-04-10

#Javaのインストール
JavaをインストールすることでJavaを動かせる環境を整えます

###利用環境
OS:MacOS
ブラウザ:Chrome

###前提条件
Apacheがインストールできている状態
まだ、Apacheがインストールできていない方は[こちら]
(https://qiita.com/kunrenyouAcount/items/d10fb9a73e911d7f4937)

##Javaをインストールする

###接続する
下記のsshコマンドを入力して接続します
※キーペアのファイルのパスと、ec2-user@以降は、変更して使用してください

ssh -i "/Users/koyamatakumi/Documents/Development/practice/aws/myserverkey.pem" ec2-user@13.115.141.44

###接続確認
下記のように表示されていれば、接続完了です
スクリーンショット 2021-04-07 0.34.00.png

##SSHでの操作とrootユーザーへの切り替え
###rootユーザーのサインイン
ソフトウェアのインストールはrootユーザーで行います
下記コマンドを入力し、rootユーザーへサインインします

sudo -i

スクリーンショット 2021-04-07 0.37.57.png

###ダウンロード

wget https://d3pxv6yz143wms.cloudfront.net/11.0.2.9.3/java-11-amazon-corretto-devel-11.0.2.9-3.x86_64.rpm

下記の画面になればダウンロード完了

###インストール

sudo yum localinstall java-11-amazon-corretto-devel-11.0.2.9-3.x86_64.rpm

###確認

java -version

下記の画面になれば成功

#AWSでWebアプリをデプロイする方法⑨
Tomcatのインストール

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?