분류 전체보기300 Mariadb 비밀번호 초기화(centOS7, Mariadb10.6.5) 예전에도 올렸을 지 모르겠지만.. 나를 위해 다시 올림. 1. server.cnf 파일이 있는 위치로 이동 [root@centos my.cnf.d]# cd /etc/my.cnf.d/ 2. 권한 테이블 스킵 # this is only for the mysqld standalone daemon [mysqld] skip-grant-tables 3. 재시작 [root@centos my.cnf.d]# systemctl restart mariadb 4. 접속(패스워드는 엔터 누르면 생략되서 접속된다.) [root@centos my.cnf.d]# mysql -u root -p Enter password: 5. 명령어 실행 MariaDB [(none)]> FLUSH PRIVILEGES; Query OK, 0 rows .. 2022. 1. 26. Mariadb Version up 10.5 -> 10.6.5 개인용 프로젝트를 위해 만들어놨던 오라클 클라우드에 존재하는 Mariadb를 업데이트 하려 한다. 작업전 주의 사항을 읽어보자. 환경 설정 파일 날아감. 백업 잘 해두고 해야함. 압축형식 쓰기 디폴트값, 문자 집합 기본값 변경 등.. 만약 DBA면 옵션 설정을 더 자세히 봐야한다. https://mariadb.com/kb/en/upgrading-from-mariadb-105-to-mariadb-106/ Upgrading from MariaDB 10.5 to MariaDB 10.6 How to upgrade from MariaDB 10.5 to MariaDB 10.6. mariadb.com 1. Centos에 로그인하여 cd /etc/yum.repos.d/로 이동 2. vi 명령을 통해 파일을 열어 내용을.. 2022. 1. 25. Java 토마토 final static int[] xArray = {1, 0, -1, 0}; final static int[] yArray = {0, 1, 0, -1}; public static class Node { int x; int y; public Node(int x, int y) { this.x = x; this.y = y; } public void setX(int x) { this.x = x; } public void setY(int y) { this.y = y; } public int getX() { return this.x; } public int getY() { return this.y; } } public static void main(String[] args) { tomato(); } private .. 2021. 12. 20. Java 미로찾기 final static int[] xArray = {1, 0, -1, 0}; final static int[] yArray = {0, 1, 0, -1}; public static class Node { int x; int y; public Node(int x, int y) { this.x = x; this.y = y; } public void setX(int x) { this.x = x; } public void setY(int y) { this.y = y; } public int getX() { return this.x; } public int getY() { return this.y; } } public static void main(String[] args) { maze(); } private st.. 2021. 12. 17. 이전 1 ··· 6 7 8 9 10 11 12 ··· 75 다음