Skip to content

Instantly share code, notes, and snippets.

@snickerjp
Created April 1, 2012 12:30
Show Gist options
  • Save snickerjp/2275068 to your computer and use it in GitHub Desktop.
Save snickerjp/2275068 to your computer and use it in GitHub Desktop.
Install WordPress for Ubuntu
INSERT INTO user (Host,User,Password) VALUES('localhost','wordpress',PASSWORD('xxxxx'));
CREATE DATABASE wordpress;
GRANT ALL ON wordpress.* to wordpress@localhost;
FLUSH PRIVILEGES;
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