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.

Node.js実行環境構築

Posted at

#目的
Node.jsを用いて簡易なWebシステムを構築することを目的に、まずは動作環境の構築を行う。

#環境条件

  • Node.jsサーバ
    • EC2:t2.micro
    • OS:Red Hat Enterprise Linux 8 (HVM), SSD Volume Type
    • Disk:汎用SSD(GP2) 10GB

セキュリティグループの設定等はいい感じに。

#構築手順

ec2-userでログイン

# rootユーザにスイッチ
sudo su - 
# Node.js用ディレクトリの作成
mkdir -p /opt/nodejs
# 作成したディレクトリへ移動
cd /opt/nodejs
# Node.jsのモジュールインストール
yum module install nodejs:14
# nodeの配置先の確認
which node

/usr/bin/node

# Node.jsのバージョン確認
node -v

v14.16.0

# NPMのバージョン確認
npm -v

6.14.11

この後のアプリケーション開発のために、同サーバにmysqlをインストールしたが、手順については割愛。
8.0.21をインストールし、rootアカウントのパスワードを設定。

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?