August 30, 2021
In the previous post we talked about bastion host in VPC and how using it we can make our environment more secure. One of the things we had to do is to configure an AWS Security group, which is some Read more…
August 30, 2021
In the previous post we talked about bastion host in VPC and how using it we can make our environment more secure. One of the things we had to do is to configure an AWS Security group, which is some Read more…
November 9, 2020
One of the ways how you connect and maintain your Linux EC2 instances in AWS VPC is connecting to them using SSH protocol. You can ssh to any EC2 instance which is in a public subnet and corresponding security group Read more…
November 2, 2020
Securing your AWS account according to best practices is extremely important, but unfortunately the AWS IAM password policy feature is ignored in most cases. In this post we will go through the steps needed to be taken to secure your Read more…
October 26, 2020
When you deploy your web application in AWS VPC subnet, most probably you will follow best practices and separate your app in at least 2 layers – web/application layer and database layer. It is recommended to have a database EC2 Read more…
October 19, 2020
In the previous post we talked about creating a new IAM role and assigning it to our running EC2 instance. This will allow to authenticate any calls made towards AWS resources from any application running on this EC2. If we Read more…
October 15, 2020
There are some applications running on your EC2 instance and you need these applications to access some AWS resources. As you know, all requests (REST API calls in this case) should be authenticated. One option is to create a login Read more…
October 13, 2020
In the previous post we discussed the basic terms related to relational (SQL) databases – what is a relational (SQL) database, why data should be stored in multiple tables. What issues we face if store data in one SQL table Read more…
October 8, 2020
SQL DataBase (DB) – is a number of tables (objects) which are connected which each other. Using a special software called management system the one can interact with such a system by writing data into database and when needed reading Read more…
July 20, 2020
In the previous post https://dataguru.guide/index.php/2020/05/07/while-loop-in-java/ we talked about while loop in Java, today we are gonna focus on do-while loop which is slightly different from while loop. The main difference is that the condition of loop execution is checked after Read more…
May 7, 2020
In this post I will go through the basic syntax of while loop in Java. More info will follow in the video available on my YouTube channel. So while loop does the same thing basically as for loop, but while Read more…
Recent Comments