728x90 728x90 계정2 [MariaDB; 마리아디비] MariaDB 데이터베이스 디비 생성 유저 계정 권한 데이터베이스 목록 SHOW DATABASES; 데이터베이스 생성 CREATE DATABASE [데이터베이스]; # 인코딩 설정 CREATE DATABASE [데이터베이스] CHARACTER SET Utf8mb4 COLLATE utf8mb4_unicode_ci; 데이터베이스 바꾸기 USE mysql; 사용자 확인 SELECT HOST, USER, PASSWORD FROM USER; 사용자 / 유저 계정 생성 -- 전부 허용 CREATE USER 'ID'@'%' IDENTIFIED BY 'PASSWORD'; -- localhost만 허용 CREATE USER 'ID'@'localhost' IDENTIFIED BY 'PASSWORD'; 권한 부여 -- 특정 데이터베이스의 특정 테이블만 허용 GRAN.. 2023. 10. 25. [Git; 깃] GitHub CLI 인증 사용자 변경하기 ( Git Bash ) https://github.com/ GitHub: Let’s build from here GitHub is where over 83 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com 두 개 이상의 GitHub 계정을 사용할 때 CLI에서 계정을 바꾸는 방법입니다. 계정을 변경할 디렉터리에서 git bash 로 아래 명령어를 실행하면 됩니다. git config credentail.username "깃헙이메일" 2022. 11. 4. 이전 1 다음 728x90 728x90