데이터베이스 설정 매니페스트인 db.pp에서 선언한 변수 값을 각각 입력합니다. 데이터베이스 이름(wp_db_name), 데이터베이스에 접근할 사용자(wp_user), 데이터베이스 사용자의 패스워드(wp_user_password)에 해당합니다.
/* /home/administrator/code/environments/production/modules/webapp/files/wp-config.php */ /* 워드프레스 초기화 설정 파일 */ // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'masterblog' ); /** MySQL database username */ define( 'DB_USER', 'master' ); /** MySQL database password */ define( 'DB_PASSWORD', 'ppassword' ); /** MySQL hostname */ define( 'DB_HOST', 'localhost' ); /** Database Charset to use in creating database tables. */ define( 'DB_CHARSET', 'utf8' ); /** The Database Collate type. Don't change this if in doubt. */ define( 'DB_COLLATE', '' );