Home
home

Step 2. DataBase Setup

1. MariaDB 설치

MariaDB version 10.6.x 설치
Windows, x86_64, MSI Package, South Korea
설치 시 Root 비밀번호 설정
root password : kist
kist 이외의 비밀번호 사용 가능. (본인이 편한 비밀번호로 설정)
기본 인코딩 UTF-8 설정 체크

2. Windows 환경변수에 MariaDB 추가

Windows 환경변수에 : ‘C:\Program Files\MariaDB 10.6\bin’ 추가
환경변수 추가 방법
내 PC → 우측 마우스 → 속성 → 고급 시스템 설정
환경 변수(N) → 새로 만들기(N)
MariaDB 경로(‘C:\Program Files\MariaDB 10.6\bin’) 추가
디렉터리 찾아보기 → 내 PC → 로컬 C → Program Files → MariaDB 10.6 → bin

3. DataBase 생성

WXR-Platform-Server-develop 폴더 → DDL.sql
CMD 창 열기
# root 유저로 로그인 MYSQL -u root -p
Shell
복사
DDL.sql로 DB 생성 (파일 경로에 가급적이면 한글 X)
# DDL.sql로 DB 생성 # SOURCE C:/Hyeok/WXR-Platform-Server-develop/DDL.sql; SOURCE 파일경로/WXR-Platform-Server-develop/DDL.sql
SQL
복사
WXR 서버에서 데이터베이스 서버에 접속할 계정 생성권한 부여
# In the mariadb client, run the following command to create a new user. CREATE USER 'wxrDBadmin'@'localhost' IDENTIFIED BY 'dbpasswd'; # Grant permissions to access the tables in the wxr_server database. GRANT ALL PRIVILEGES ON wxr_server.* TO 'wxrDBadmin'@'localhost'; FLUSH PRIVILEGES; # Check assigned permissions. SHOW GRANTS FOR 'wxrDBadmin'@'localhost';
SQL
복사