Today we will learn how to provide root permission to your SSH user. So, We can provide SSH user root permission either move them in root user group or We can add simple line in sudoers file to provide root permission. Lets use the first method. Provide ROOT permission to this user by move it to root user. 1usermod -aG …
Read MoreToday I will show you, how can you create you private and public key using ssh-keygen command. Connect to you Linux system. Open Linux terminal. Run below command to generate keys. 1ssh-keygen -t rsa -b 2048 Enter the name of the key and press Enter Now private and public key has been generated. Now you can use those …
Read MoreToday we will create a Powershell Script, which will delete your old files. You can also configure a scheduler which can delete the files automatically. Let's start the scripting: Step 1: Create a variable to get the old date by getting current date and subtracting the retention days: 1$cutoffDate = …
Read MoreToday, we faced a problem where our client application was not working because of the database connection issue. I have checked and found that their credentials were incorrect. As per the client, this was that same credentials which their application was using. So, To resolve the problem, we decided to reset the root …
Read MoreToday we will learn, how to create AWS Cloudformation script. So in this script, we will create a VPC and two subnets. One public subnet and one private subnet. First, we have to define the script Cloudformation template format version. 1{ 2 "AWSTemplateFormatVersion": "2010-09-09", 3 "Description" : "Create 8 private …
Read MoreSavings Plans is a new and flexible discount model, which will provide the same discounts as Reserved Instances, in exchange for a commitment to use a specific amount (measured in dollars per hour) of compute over a one or three year period. Savings Plans are available in all AWS regions except China. You can start …
Read MoreToday we will learn, How to extend your AWS EC2 EBS volume disk without Downtime. If you are using Linux you can click on this link and follow the steps. So, Once you increases the size of an EBS volume from the AWS console, use the Windows Disk Management utility to extend the disk size to the new size of the volume. …
Read MoreToday we will learn, How to extend your AWS EC2 EBS volume disk without Downtime. If you are using Windows you can easily extend your EBS drive without downtime and without any problem. You can use this link for window process. But if come to Linux, Disk extend part will become some headache. So, Let start the process …
Read MoreToday we will learn, How to set up AWS Kinesis logging for your AWS Pinpoint service. This may be needed, when you want to create your custom Pinpoint dashboard from the logs. Lets start the configuring the logging step by step: A. Sign in to the Amazon Kinesis console in the same region that you are using for Amazon …
Read MoreRotating SSL/TLS Certificate Current Certificate Expiry: If application connects to an RDS DB instance using Secure Socket Layer (SSL) or Transport Layer Security (TLS), certificate must be rotated before March 5, 2020 Problem Description: As of September 19, 2019, Amazon RDS has published new Certificate Authority …
Read More