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 I will show you, how can you get SSH private key from AWS console and convert that key into public key. So, that you can use that key for create a SSH user. So, First lets with downloading a key from AWS Console. To create your key pair. Please follow the below steps: Open the Amazon EC2 console at …
Read MoreToday we will create new user that can connect to my Linux instance/Server using SSH key Authentication method. When you launches a Linux server, a default system user account created with administrative access to the server. If you wants multiple users access to the instance, it's a security best practice to create a …
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 MoreHello Everyone, Today we will learn How to create FTP user in Linux/EC2 server. We will use this ftp user to connect our Linux server from our local machine via Filezilla or other FTP clients. So, First connect the Linux Server: Install FTP Server(vsftpd) For Ubuntu:
sudo apt-get install vsftpd
For Centos or …
Read MoreToday we will learn, How to change/reset/update MySQL root password. First, the most important thing is "Are you able to access the data using root credentials." If No, Please follow the below steps: Log-in to your server using SSH. Stop Mysql Service: For CentOS and Fedora, Run below command: 1service mysqld stop For …
Read MoreSometimes you need to find the servers state of all servers launched in your AWS Account. If you have only one region and few servers, you can get these details from AWS console very easily but if you have multiples server in multiple regions, then this task may create a problem. You have to check each region …
Read MoreMany time to secure our Windows server, we have to change the Default RDP port to some Custom port. Which is also a good practice to secure the servers. Today we will learn, how to change the Default RDP port (3389 port) to your Custom port. To change the RDP port, please follow the below steps: Connect to your Windows …
Read More