This file contains hidden or 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
| cd /var/www/html | |
| wget http://wordpress.org/latest.tar.gz | |
| tar -xzvf latest.tar.gz | |
| mv wordpress blog | |
| //setup wp-config | |
| cd blog | |
| mv wp-config-sample.php wp-config.php | |
| vi wp-config.php |
This file contains hidden or 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
| /** The name of the database for WordPress */ | |
| define('DB_NAME', 'wp_db_prod_main'); | |
| /** MySQL database username */ | |
| define('DB_USER', 'wp_db_prod'); | |
| /** MySQL database password */ | |
| define('DB_PASSWORD', 'passmyWPw0rd!'); | |
| /** MySQL hostname */ |
OlderNewer