Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
/
MySQL 또는 MariaDB에 WASup 연결하기
MySQL 또는 MariaDB에 WASup 연결하기
Jul 08, 2020
Database와 User 생성
• WASup Manager에서 접속하려는 데이터베이스 사용자를 생성한다 (예. wasup). • WASup Manager가 데이터를 저장하기 위한 데이터베이스를 생성한다 (예. wasupdb).
Create Database and User
]$ mysql -u root -p
mysql> CREATE DATABASE wasupdb CHARACTER SET utf8 COLLATE utf8_bin;
mysql> GRANT ALL PRIVILEGES ON wasupdb.* TO wasup@'%' IDENTIFIED BY '<PASSWORD>';