Cloud computing has become integral to modern technology, with major corporations relying on it for operational efficiency and rapid advancement. The rise of cloud computing, particularly through Amazon Web Services (AWS), has created numerous high-paying IT job opportunities. AWS certifications validate expertise and open doors to rewarding careers. Vinsys, an authorized AWS training provider, offers certifications and training in AWS, PMP, Prince2, ITIL, SRE, DevOps, Machine Learning, Data Science, AI, and more. 7 AWS Certifications for Rewarding Careers and Significant Salary Increases AWS offers certifications tailored to various job roles,…
Category: AWS
How to Connect AWS EC2 Server With SFTP
You can connect with aws ec2 server via filezila using below process.. Step 1:- Collect server informations. First you have to collect some required informations for your AWS instance like public DNS, PEM file, User etc… If you use ubuntu image for creating a instance then you can use ubuntu as defaul user. PEM file:- This is the file use for creating a instance. you have to save in to your computer for future use. Public DNS:- You can either use public elastic IP address or its public DNS. Read More: How…
How To Host A Website On AWS using Elastic Load Balancers (ELB)?
I found most developers struggling to host a website on AWS. Even some of my friends ask me several time to make them understand some easiest way to host a website on AWS. Also many of developers are fears to host their websites on AWS due to high charges associated on AWS. But you have all the control on AWS. So you can minimise the charges as you wants.I have already describe a simplest process for hosting a website on AWS using vista panel. you can check Easy Process to Host…
Easy Process to Host website on AWS
Hosting a website on Amazon Web Services (AWS) can be challenging for many professionals. This step-by-step guide simplifies the process, helping you save costs and host multiple small websites efficiently. Note: This process is suitable for medium-traffic websites. For high-traffic sites, consider using AWS load balancers. Step-by-Step Process to Host a Website on AWS Launch an EC2 Instance: Start by launching an EC2 instance using the Ubuntu 16.04 AMI from the AWS Marketplace. Download the PEM file during the final step of the instance setup. Configure Security Group: Ensure ports…
How to Setup Vista Panel on AWS.
You can follow below step by step process to setup vista panel aws EC2 instance. Install Vista Panel Step 1:- First you have to login into your EC2 instance on terminal using below command. sudo ssh -i /home/user/Downloads/aws_admin.pem ubuntu@52.66.129.45 Note:- make sure you have given a right path of PEM file to access ec2 instance. Step 2:- Now just run below command one by one. -> apt-get update -y -> apt-get upgrade -y -> nano /etc/hosts -> 127.0.0.1 vestacp.linuxbuz.com -> wget http://vestacp.com/pub/vst-install.sh -> chmod 755…
Process to Create AWS Lambda Function in Python
In this article I am sharing the full and easy process of creating a AWS lambda function using python. So follow step by step process for creating AWS lambda using python 3. ********************** process to create lambda function ***************** > fill basic information like name, runtime envoironment, permission
Process To Test AWS Route53 ChangeResourceRecordSets API from Terminal
image credit: google images Here I am explaining the process to test AWS Route53 ChangeResourceRecordSets API from terminal. you can copy below code and paste that to your terminal then hit an ENTER from your keyboard. aws route53 change-resource-record-sets –hosted-zone-id ZGN2AVYTFOA –change-batch ‘{ “Comment”: “”, “Changes”: [ { “Action”: “CREATE”, “ResourceRecordSet”: { “Name”: “anilc.phpmypassion.com.”, “Type”: “A”, “AliasTarget”: { “HostedZoneId”: “Z26RNL4JYFTOTI”, “DNSName”: “phpmypassion-event-0ddd4472d016751e.elb.us-east-1.amazonaws.com”, “EvaluateTargetHealth”: false } } } ] }’ “HostedZoneId”: Z26RNL4JYFTOTI :- This hosted zone id belongs to Load Balancer Id –hosted-zone-id ZGN2AVYTFOA :- This hosted zone id belongs to…
How To Setup Cron Job on AWS
Cron job is a process to run a page automatically in background without interrupting user. You can execute a page automatically at any time on daily basis by setting up a cron job. I have already explained about setting up a cron job on godaddy server in one of my article. So now here I am going to explain a step by step process for setting up cron job in AWS too for ubuntu users. Process to Setting Up AWS Cron:- Step #1. Login to your AWS instance through Terminal by…