The dawn of the cloud has transformed business technology. For example, allowing users to access Microsoft Office 365 on tablets, and Salesforce on mobile devices has become more effective. According to what I have read, this has caused companies to switch to cloud computing. Businesses of every size and industry are using the cloud for a variety of use cases. Cloud is an crucial part in remote working. Cloud computing has also been the world’s biggest bless during the COVID-19 crisis. The cloud has helped businesses transform from short term projects to long term projects, from short-term deadlines to long-term innovations. Multi-Cloud Multi-cloud refers to the presence of more than one cloud service (public or private). The service is sourced from different cloud vendors. Multi-cloud distributes workloads across multiple cloud environments. You can use a private cloud for storing sensitive data. At the same time, host less sensitive workloads on the p...
INSTALLING MYSQL in AWS: To Install MySQL sever in AWS, first ensure you have created an EC2 Instance and it is connected to the client. Procedure: 1. Create an EC2 instance and connect it. (for details on how to do it refer my old blogs.) 2. Then type the following commands to install MySQL sudo su cd ../.. sudo apt-get update sudo apt-get install mysql-server 3. Then to set a password for root user, use mysql session and run ALTER USER command: ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password by 'password'; 4. Now execute the following command for secure installation: sudo mysql_secure_insta...
Requirements: AWS Account ISO image Putty(Linux) / Remote desktop sever connection(windows) Putty Gen Aim: To create an EC2 instance using AWS. Procedure: First Step is to create account in AWS. Then the next step is to create a Key-Pair. Click on the EC2 console and it will open the EC2 Dashboard. Choose Key Pairs and in the next tab select the 'Create Key Pair' option at the top. Once you have filled the key pair name and chose the other options click 'Create Key Pair'. And then your key pair will be created and a .ppk file (the file format you chose before) with the private key will be downloaded automatically. Then the next step is to create a Security Group. Let's add HTTP, HTTPS, SSH rules in Inbound rules and let the outbound rules as default. Now create security group. Now the pre-requisite setup is completed. Let's launch an instance now. Click on 'Launch Instance' on EC2 Dashboard. Now give a name to the server. Then select a Amazon Mach...
Comments
Post a Comment