-
-
Save lvnilesh/6487467 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget http://wordpress.org/latest.tar.gz | |
tar xfz latest.tar.gz | |
mv wordpress /var/www | |
rm -f latest.tar.gz | |
cd /var/www | |
mv wordpress cloudmaster.thencta.com | |
DB PART | |
mysql -u root -p | |
mysql> create database wordpressdb; | |
mysql> create user 'wordpressuser'@'localhost' identified by 'password'; | |
mysql> grant usage on *.* to wordpressuser@localhost identified by 'password'; | |
mysql> grant all privileges on wordpressdb.* to wordpressuser@localhost; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment