Steps Involved in creation of EC2 instance are : Open the amazon EC2 console and in navigation pane choose key pair, you use a key pair to log in to your instance securely. You specify the name of the key pair when you launch your instance. For Name, enter a descriptive name for the key pair. For Key pair type ,To save the private key in a format that can be used with OpenSSH, choose pem . To save the private key in a format that can be used with PUTTY, choose PPK. Choose Create key pair . The private key file is automatically downloaded by your browser. Next choose security group and description and create inbound and outbound rules for the instance From the EC2 console dashboard, in the Launch instance box, choose Launch instance, and then choose Launch instance from the options that appear. Under Key pair (login) , for Key pair name , choose the key pair that you created when getting set up. Next to Network settings , choose Edit . For Security group name , you’ll see t...
Hello everyone, Today I am going to share my experience regarding installation of MySQL server. The pre-requisites required for the following are An AWS account An EC-2 instance with ubuntu iso image file preferably Here are the steps that I followed to install MySQL server inside EC-2 Connect to your instance through SSH if you are using a Linux machine or through putty if you are using windows 2. After connecting to the instance use the following commands in order to install MySQL Server sudo su cd ../.. sudo apt-get update sudo apt-get install mysql-server After the following commands enter mysql server using the following command sudo mysql of course, sudo asks system root password. Once provided the right root password, we will be connected on MySQL as root MySQL user. use MySQL session to run ALTER USER: mysql > ALTER USER 'root' @ 'localhost' IDENTIFIED WITH mysql_native_password by 'my-secret-password' ; Now its time to run secure installation...
Create a VM and configure security groups with defined Inbound and Outbound rules like letting traffic through HTTP, ICMP, TCP, SSL(TLS). Hello everyone, Today I am going to share my experience regarding configuration of security groups the pre-requisites required for the following are An AWS account Step-1: First create a ec-2 machine but before launching instance create a security group as follows and add the following rules as required step-2 : During creation of ec-2 instance choose the the rule we have created previously
Comments
Post a Comment