MicroNugget: WordPress on AWS

CBT Nuggets trainer Jeremy Cioara explains how to set up WordPress on Amazon Web Services in less than 5 minutes and provides viewers with a list of commands at the end of this description. Visit for the full training course. Commands: sudo su apt-get update apt-get install apache2 apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql mysql_install_db /usr/bin/mysql_secure_installation mysqladmin -uroot -ppassword create blog apt-get install php5 libapache2-mod-php5 php5-mcrypt service apache2 restart cd /var/www wget tar -xzvf cd wordpress mv vi define(ëDB_NAMEí, ëblogí); define(ëDB_USERí, ërootí); define(ëDB_PASSWORDí, ëYOUR_PASSWORDí); define(ëDB_HOSTí, ëlocalhostí);
Back to Top