Created
April 1, 2012 12:30
-
-
Save snickerjp/2275068 to your computer and use it in GitHub Desktop.
Install WordPress for Ubuntu
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
INSERT INTO user (Host,User,Password) VALUES('localhost','wordpress',PASSWORD('xxxxx')); | |
CREATE DATABASE wordpress; | |
GRANT ALL ON wordpress.* to wordpress@localhost; | |
FLUSH PRIVILEGES; |
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
sudo aptitude update | |
sudo aptitude upgrade | |
sudo aptitude install apache2 | |
sudo aptitude install mysql-server | |
sudo aptitude install php5-mysql | |
sudo aptitude install php5-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment