TimeZone 썸네일형 리스트형 [Docker] Run Mysql Server container and setup # Make Data folders for mysql volumnmkdir /data # Run mysql container docker run \-p 3306:3306 \--name mysql_server \-v /data:/var/lib/mysql \-e MYSQL_ROOT_PASSWORD={{SERVER ROOT}} \-e MYSQL_USER={{USER_ID}} \-e MYSQL_PASSWORD={{USER_PASSWORD}}} \-e TZ='{{TIMEZONE}}' \-d mysql:8.0.13 # Got error with message "MySQL 8.0 - Client does not support authentication protocol requested by server; consid.. 더보기 [PHP] date 함수 사용시 경고.. Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. 위와 같은 경고가 뜬다면.. php.ini 파일에서 date.timezone을 설정해주면됨. 주석 제거를 한 후 asia/seoul을 입력해주고 서버 재시작. date.timezone=asia/seoul 더보기 이전 1 다음