Categories
Tags
AI airflow alias book build clang closure collection commandline config container DB decorator docker draft format functional generic git gradle intellij java JPA k3s k8s kafka kotlin linux loki monitoring msa neovim network nix poetry pointer python reflection shortcut Spring sql system-design testing web zero-copy
67 words
1 minutes
[Linux]Linux container timezone 설정
개요
리눅스 ec2 인스턴스에서 생성된 기본 timezone은 UTC이다. 이를 local KST로 변경하자.
1. timezone 확인
date
2. timezone 변경
- 현재 timezone 이 설정된 symbolic link 삭제
sudo rm /etc/localtime
- symbolic link 재생성
sudo ln -s /usr/share/zoneinfo/Asia/Seoul /etc/localtime
- timezone 변경 확인
date
[Linux]Linux container timezone 설정
https://yjinheon.netlify.app/posts/05system/linux/de-linux-set_timezone/