Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
sudo apt-get install mysql-server 

For the root administration database password, use the standard password algorithm based on the server name.

...

Code Block
languagebash
sudo apt-get install php5-mysql 

 

Create the Accounts in MySQL

Connect into MySQL,

Code Block
languagebash
mysql -u root -p 

Enter the following MySQL commands,

Code Block
languagesql
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?

...