...
Code Block | ||
---|---|---|
| ||
sudo apt-get install mysql-server |
For the root administration database password, use the standard password algorithm based on the server name.
...
Code Block | ||
---|---|---|
| ||
sudo apt-get install php5-mysql |
Create the Accounts in MySQL
Connect into MySQL,
Code Block | ||
---|---|---|
| ||
mysql -u root -p |
Enter the following MySQL commands,
Code Block | ||
---|---|---|
| ||
CREATE DATABASE wordpresskryptondb;
GRANT ALL PRIVILEGES ON wordpresskryptondb.* TO "wpkryptonuser"@"localhost" IDENTIFIED BY "password";
FLUSH PRIVILEGES;
EXIT |
Explain variables on a table, wordpresskryptondb, wpkryptonuser, localhost, password.
FAQ
Why do some of the php5 installations say to use install libapache2-mod-php5?
...