Page tree

Versions Compared

Key

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

...

Code Block
languagesql
CREATE DATABASE wpkryptondb;
GRANT ALL PRIVILEGES ON wpkryptondb.* TO "wpkryptonuser"@"localhost" IDENTIFIED BY "password";
FLUSH PRIVILEGES;
EXIT

Explain variables on a table, wpkryptondb, wpkryptonuser, localhost, passwordAdjust the variables for your application.

wpkryptondb - Name of the database for the WordPress application instance. We use the domain name of the website.

wpkryptonuser - User account for accessing the database.

localhost - Address of the database server. In this example, the database is on the same server so use localhost.

password - Change to password using algorithm based on name of the website domain, in this case krypton.

Setup WordPress

Install WordPress

...