Each time you push the code in the application repository bit bucket is an automated process for deploying applications on AWS EC2 instances. This can be achieved by combining several useful tools such as AWS CodeDeploy and Bitbucket Pipelines. AWS Console Login in AWS console with registered email i.e. with the root. IAM Group First create IAM group with AmazonS3FullAccess and AWSCodeDeployFullAccess permissions. Step1: In AWS console, from services search IAM and goto IAM console Step2: Goto Groups by clicking Groups in left navigation panel. Step3: Click on Create New Group, Step4: Enter Group Name (I have entered TestDeployGroup), click on Next Step. Step5: Allow AmazonS3FullAccess and AWSCodeDeployFullAccess permissions by selecting them and click on Next Step. Step6: Now review tab will open. Here are you can review the group information and now click on Create Group. IAM User Now create IAM user that Bitbucket can use to upload artifacts to S3 and inform CodeDeploy that a n...
How to Install PHP 7.4 / PHP 7.3 on Ubuntu?. This guide will help you Install PHP 7.4 / PHP 7.3 on Ubuntu 18 / Ubuntu 16 / Ubuntu 19 . PHP is an open-source server-side scripting language which has been widely adopted for the creation of dynamic web pages. PHP is secure, fast, simple, efficient, flexible and a loosely typed scripting language. The PHP release 7.4.0 has been made available for the general public and for use in Production environments. How to install PHP 7.4 on Ubuntu 18.04 / Ubuntu 19.04 / Ubuntu 16.04 Step 1: Add PHP 7.4 PPA Repository We’ll add ppa:ondrej/php PPA repository which has the latest build packages of PHP. sudo apt-get update sudo apt -y install software-properties-common sudo add-apt-repository ppa:ondrej/php sudo apt-get update Step 2: Install PHP 7.4 on Ubuntu 18/ Ubuntu 19/ Ubuntu 16 Install PHP 7.4 on Ubuntu 18.04/19.04/16.04 using the command: sudo apt -y install php7.4 Check version inst...