MySQL2 [Kubernetes] Mysql 구축하기 Mysql을 Pod로 구축하기 기본셋팅 클러스터 구축 https://librat.kr/entry/Kubernetes-쿠버네티스-클러스터-구축 nfs-dynamic-provisioner 배포되어있어야함 https://librat.kr/entry/Kubernetes-Dynamic-provisioning-NFS-구축https://librat.kr/entry/Kubernetes-Dynamic-provisioning-NFS-구축 [Kubernetes] 쿠버네티스 클러스터 구축 마스터노드 1개 워커노드 3개 구조로 쿠버네티스 클러스터를 구축하는 방법에 대해 포스팅하겠다. 우선 쿠버네티스는 container runtime과 kubernetes가 설치되어있어야하기 때문에 아래의 링크로 들어 librat.kr [Kube.. 2023. 8. 11. mysql / mariadb 유저생성 및 권한설정 간단명령어 create user 'root'@'%' identified by 'root'; grant all privileges on *.* to 'root'@'%'; 사용자 생성 create user '사용자'@'localhost' identified by '비밀번호'; create user '사용자'@'192.168.0.1' identified by '비밀번호'; create user '사용자'@'192.168.0.%' identified by '비밀번호'; DB 권한 grant all privileges on *.* to '사용자'@'localhost'; grant all privileges on DB이름.* to '사용자'@'192.168.0.%'; grant all privileges on DB.. 2023. 7. 28. 이전 1 다음