Category: Security, Ubuntu

In this new edge software development world, it is almost obvious that as a developer you will one day find yourself in a situation where you want to build , deploy , run and maintain your application all by yourself or maybe by yourself. DevOps is complementary with Agile software development; several DevOps aspects came from Agile methodology.

Choose an AMI (Amazon machine Image ) this is the OS that will run in our ec2 instance follow the wizard and finish the process (download and keep the .pem file)4.By now we have an application running in our localhost and also a server setup and running aws.5. since I am hosting a java application , we will need to install the nessesary resources needed to run a java web app, luckily springboot comes bundled with almost everything we would need so lets dive in right away.6.Let us connect to our server (ec2 instance) , this will vary depending on the operating system your local computer is running , follow this aws guide7.we are now connected to our ec2 instance and ready to run commands to the online machine.

this command runs the application and opens it on port 8080, ensure your security groups is set to allow access of this application via the ports 80 and 8080, Your app is running at yourec2ip:8080

Related Articles