AWS EC2 Setup
Create an account in AWS and go to EC2 in the aws Dashboard. In the AWS EC2 dashboard, you can see a launch instance button,
click on the launch instance button and it will ask you to select the virtual instance operating system and storage.
Select any free tier instance (operating system) that you want, and continue the process.
After that, it will ask you to select the type of instance that you want for your server.
Once you click the launch, you need to review all the configuration that you have selected and generate the key value pair,
if you already have aws key, you can use the existing key for this server also, Or else you can create a new one.
Remember, this key should be shared with anyone else under any circumstance. also, make sure you do not lose the key. that's very important.
After completing the process, you're ec2 instance will be ready.
Now, it is time to install the nodejs in the aws ec2.
Installing Nodejs in AWS EC2
Mainly, we will be using nvm to install and manage nodejs. important feature of nvm is we can upgrade and downgrade nodejs easily using nvm.
Let's install nvm in AWS EC2 using the command
1curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
it will install the nvm in our ec2 instance.
After that,you need to activate the nvm to use it. activate the nvm using the command,
1. ~/.nvm/nvm.sh
Now, use nvm to install the nodejson ec2 instance
1nvm install node
Node is installed successfully on the instance. you can test the nodejs byb checking the version of nodejs and npm.
Summary
To sum up, it installs the nodejs on AWS ec2 instance. important thing to note here is, you can upgrade the nodejs version easily using nvm.
Comments
Post a Comment