The post Connect your WordPress site to Github/Sentry via your EC2 instance appeared first on Freelance Wordpress developer Melbourne | Sydney | Gold Coast | Brisbane |.
]]>Fortunately companies have recognised this and Sentry does an excellent job of error reporting that is way beyond what you will get out of google console. You can choose from many languages including javascript, ruby, ASP, elixir and so on but for this example I am going to select PHP since WordPress is a PHP application.
Note: There is a Sentry wordpress plugin which does the same thing, but I had trouble using it with AWS so I have made the connection via SSH.
Before we do anything, you need you go into your AWS dashboard, Ec2 – Security groups – inbound rules and make sure your IP address is added in to SSH on port 22. I have blurred the IP addresses but as long as your Ip is added into your default group, you are good to go.
Next go to EC2 – instances, select your instance and click “connect.” This will bring you to this screen here, where you will see details of how to connect to your Ec2. First, go into terminal and CD to the file where your .pem file is saved for your instance. Once you have done this you can run chmod 400 pemfilename.pem and connect to linux
Now we are connected to linux Amazon ec2, we are going to go to our root directory. For me I ran cd /var/www/html but you should go to the folder containing your HTML files.
Now we are going to run the below commands excluding the dollar signs.
#update ec2 files
$sudo yum update -y
#Install git in your EC2 instance
$sudo yum install git -y
#Check git version
$git version
To connect to your Github account run the following:
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
Your terminal will ask you to enter a file name to save the key and some pass phrases. Just hit enter to save the key to the default file, and continue without using a passphrase.
login to your SFTP client (I use transmit for Mac Os) and file the .ssh hidden folder. and open the file titled id_rsa.pub in text edit. Copy the entire string to your clipboard.
Go to https://github.com/settings/keys and make a new ssh key. You can give it whatever title you want. Paste the key you just copied from id_rsa.pub within the ‘key’ text field and click ‘add ssh key.’ You are now connected to Github and won’t have to sign in every time you want to push to your ec2 instance.
Next, return to your ec2 root directory and make a new directory to clone Github:
$ mkdir projects $ cd projects $ git clone [email protected]:my-github-repo
Next we need to install Sentry cli from our root directory in our instance. The docs for php are here. Once you install the Sentry cli, the symfony scripts will run and you will see them install in your terminal like this:
Now we need to check that Sentry CLI has installed in our instance. If you run sentry –version and you return a version number you know Sentry has been installed on your Ec2.
Ok remember how we made a directory called projects in our ec2 that is connected to Github? We are going to CD to that directory, which is currently empty and then clone our site files to that directory using transmit. In the below image, the file on the left is the github directory we created and the one on the right is the root folder of your wordpress directory. Select all files on the right and click upload
Once your files have uploaded (this may take a while) check your remote is setup to fetch and push but typing git remote -v in terminal, and if your branches are correct then don’t forget to do a git commit and send your files from ec2 to your repository.
Once you have finished you can see your Ec2 is connected to Sentry via Github and can now receive error tracking:
Alpha Omega Digital is a WordPress web development agency based in Melbourne, Australia but also services clients from Sydney, Brisbane, Newcastle, Perth, Adelaide, Darwin and Hobart.
The post Connect your WordPress site to Github/Sentry via your EC2 instance appeared first on Freelance Wordpress developer Melbourne | Sydney | Gold Coast | Brisbane |.
]]>The post How to launch and configure a WordPress instance on AWS – 2021 guide for beginners appeared first on Freelance Wordpress developer Melbourne | Sydney | Gold Coast | Brisbane |.
]]>You client may request AWS hosting for many reasons, but the main two are cost and security. The cost of hosting the same amount of data on AWS vs something such as WpEngine is significantly cheaper.
I have setup and run WordPress through an EC2, and using Lightsail and for beginners lightsail can’t be beat. Here’s why:
So, here’s a walkthrough on how to setup a WordPress server on AWS using lightsail.

2. Select WordPress from the blueprint options.

3. Select the plan you require for your server. I recommend the 2GB plan, which is suitable for most websites, however if you select the 512mb or 1G plan, you can always upgrade your server size later on as needed.

4. Click on the orange square to connect to your instance via SSH

5. Once you SSH to your instance in the browser, the terminal will open and you run this command below to get your WordPress username and password. By default your wordpress username will be ‘user’ but the password will appear in the terminal as circled.
cat $HOME/bitnami_application_password

6. Once you have this, go into https://ipaddress/wp-admin and log in to your site.
7. You should now see your WordPress dashboard.

I hope this helps some of you out, and it really is the lowest barrier to entry in terms of getting started with AWS. I will be posting more complex AWS tutorials in the future, as I’m going for my developer certification, but if you have any questions please drop me an email and I’ll do my best to help you out.
Alpha Omega Digital is a WordPress web development agency based in Melbourne, Australia but also services clients from Sydney, Brisbane, Newcastle, Perth, Adelaide, Darwin and Hobart.
The post How to launch and configure a WordPress instance on AWS – 2021 guide for beginners appeared first on Freelance Wordpress developer Melbourne | Sydney | Gold Coast | Brisbane |.
]]>