What is server & connection to server in aws through SSH(Secured Shell)

VIJAY KAMMARIVIJAY KAMMARI
2 min read

What is server ??πŸ€”

Wait Wait Wait

I am not here to tell you the bookish definition , if 2nd class person reads this blog also can understand.

So, lets Start πŸš€

Server is nothing but the PC/laptop only , But the server don’t have the UI(user interface), As pc server will have RAM,ROM,MEMORY,CPU.

Hold on not yet Finished , why no UI ??? πŸ€·β€β™‚οΈ

Because if we add UI then it will consume more CPU and leads to the performance issue So, Then they thought like server is basically for the serving the request what is the need of the UI ?? and then removed the UI.
In most of the servers Linux kernel will be used , Because of its performance, stability, fast, open source , security .

Linux vs Windows ??πŸ₯Š

Linux is kernel not a OS(operating system).
On top of that companies like RHEL , Fedora added the packages , shell , UI and made the OS.
These all are Flavors of LINUX kernel .

Windows is a Operating System

How to connect with the server through the SSH πŸ”‘

Lets talk about the SSH
SSH protocol means , we will put the lock(server1.pub) to the server and will open with one private key(server1.pem) . πŸ”
Example:

ssh-keygen -f <file_name>

Here i need to give the file name

ssh-keygen -f server1

After executing this you can see two files in your file manager

server1.pub β€”β€”β€”> public key
server1.pem β€”β€”> private key

while configuring the server in the aws we need to upload the server1.pub file in the key value pair

So , now successfully generated the two files and configured the server in AWS

Then how can we connect ???

ssh -i <private_key_file_name> <user_nmae>@ip_address 

ssh -i server1.pem ec2-user@52.12.34.90

By using this you can connect to the server successfully !!! πŸŽ‰

10
Subscribe to my newsletter

Read articles from VIJAY KAMMARI directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

VIJAY KAMMARI
VIJAY KAMMARI