일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 갈레라
- ZipArchive 오류
- 복구
- php excel
- mysql.proc 오류
- author style
- postfix
- DOTCOM 마케팅 설계자 SECRET
- nginx
- wsrep
- nginx 1.12.0
- disk 100% 사용
- Oracle
- Laravel
- 디스크 용량 확인
- centos7
- OTP 보정오류
- MariaDB
- error 1728
- php zip 모듈
- OTP 오류
- disk full
- html 구성
- user style
- php 파일 삭제
- navicat
- 국민은행(기업)
- CSS
- php 7.3
- php 업로드 파일 삭제
- Today
- Total
Jehna :)
CentOS7+Laravel, 데이터베이스 설정 본문
"CentOS7+Laravel, 데이터베이스 설정"
<시스템 환경>
- CentOS 7
- Nginx 1.12.2
- MariaDB 10.1.28
- Laravel 5.5
1. 라라벨 기본 설정 값 확인
- .env 파일을 확인하면 된다. (프로젝트 안에 ls -al를 통해 .env파일을 확인할 수 있다.)
- 기본적으로 DB_DATABASE와 DB_USERNAME은 homestead로 되어 있고 DB_PASSWORD는 secret으로 되어 있음
APP_NAME=Laravel APP_ENV=local APP_KEY=base64:sctcBYpVj0bYbUSKk/WmuNgl2BzejGml0DGtobDWBbM= APP_DEBUG=true APP_LOG_LEVEL=debug APP_URL=http://localhost DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=homestead DB_USERNAME=homestead DB_PASSWORD=secret ... |
2. .env파일 수정
- DATABASE, USERNAME, PASSWORD를 원하는 값으로 수정 후 저장
APP_NAME=Laravel APP_ENV=local APP_KEY=base64:sctcBYpVj0bYbUSKk/WmuNgl2BzejGml0DGtobDWBbM= APP_DEBUG=true APP_LOG_LEVEL=debug APP_URL=http://localhost DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=test DB_USERNAME=test DB_PASSWORD=test ... |
3. 적용
- DATABASE, USERNAME, PASSWORD를 원하는 값으로 수정 후 저장
# php artisan config:clear // config cache 삭제 # php artisan cache:clear // laravel cache 삭제 |
'윌리 > System 이것저것' 카테고리의 다른 글
postfix 메일큐 명령어 (0) | 2018.11.12 |
---|---|
윈도우 설치 "GPT"파티션이 아닙니다. (0) | 2017.11.13 |
CentOS7, Laravel 설치 (1) | 2017.10.20 |
Nginx 버전확인 (0) | 2017.10.18 |
CentOS7, nginx에서 drupal설치하기 (0) | 2017.05.04 |