Installing ffmpeg on EC2 AMI Centos

May 09, 2016 by admin Category: Blog 0 comments

sudo touch ffmpeg.sh sudo vim ffmpeg.sh copy the code below in a file and run. #!/bin/sh # Based on instructions found here: http://wiki.razuna.com/display/ecp/FFMpeg+Installation+on+CentOS+and+RedHat#FFMpegInstallationonCentOSandRedHat-InstallX264 if [ "`/usr/bin/whoami`" != "root" ]; then echo "You need to execute this script as root." exit 1 fi cat > /etc/yum.repos.d/centos.repo /etc/ld.so.conf.d/custom-libs.conf echo $HOME/ffmpeg_build/lib/ >> /etc/ld.so.conf.d/custom-libs.conf ldconfig cd /opt git clone […]

Setting Up Vhosts On A EC2 AMI

May 09, 2016 by admin Category: Blog 0 comments

In this brief tutorial we will go through setting up vhosts on a EC2 vhosts are a great way to use your EC2 for multiple websites instead of a single website at /var/www/html if you have your domain setup with Route 53 it is also a great way to create multiple subdomains for clients as […]

Full Setup of WordPress On Amazon EC2 Amazon Linux AMI

May 06, 2016 by admin Category: Blog, Development, Web Services 0 comments

In this tutorial we will be taking you through the full setup of installing a WordPress install on a Amazon Web Services EC2 AMI using a FREE t2.micro. Please leave any comments below. Log into AWS account and go to EC2 dashboard. https://eu-west-1.console.aws.amazon.com/ec2/v2/home?region=eu-west-1# Click launch instance Select Amazon Linux AMI 2016.03.0 (HVM), SSD Volume Type […]