Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

  1. Root 계정으로 접속

    mysql -u root -p

  2. 데이터베이스 생성

    CREATE DATABASE jiradb CHARACTER SET utf8 COLLATE utf8_bin;

  3. 사용자 생성 및 권한 설정

    GRANT ALL PRIVILEGES ON jiradb.* TO 'jirauser'@'localhost or IP address' IDENTIFIED BY 'jirapass';
    flush privileges;

  4. 권한확인

    SHOW GRANTS FOR jirauser@'localhost';

  5. JDBC 드라이브 복사

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.