250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Docker
- 설정
- IntelliJ
- myBatis
- Core Java
- SpringBoot
- spring
- PostgreSQL
- 오픈소스
- Open Source
- oracle
- STS
- MySQL
- Tomcat
- ubuntu
- Eclipse
- Spring Boot
- Python
- JDBC
- git
- Exception
- jpa
- error
- Thymeleaf
- MSSQL
- AJAX
- JavaScript
- Source
- 문서
- maven
Archives
- Today
- Total
헤르메스 LIFE
[MySQL] DB 추가 및 사용자 추가 본문
728x90
-- DB 목록 보기
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.10 sec)
-- DB 생성
-- 사용자 생성
-- DB 생성
mysql> create database springdb;
Query OK, 1 row affected (0.06 sec) -- 사용자 생성
mysql> use mysql;
-- 사용자 계정생성
mysql> show tables;
+---------------------------+
| Tables_in_mysql |
+---------------------------+
| columns_priv |
| db |
| event |
| func |
| general_log |
| help_category |
| help_keyword |
| help_relation |
| help_topic
|
| host |
| ndb_binlog_index |
| plugin
|
| proc |
| procs_priv |
| proxies_priv |
| servers |
| slow_log |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+
24 rows in set (0.30 sec)
-- 사용자 계정생성
mysql> create user '계정명'@'localhost' identified by '패스워드';
Query OK, 0 rows affected (0.18 sec)
-- 사용자 권한 추가
Query OK, 0 rows affected (0.18 sec)
-- 사용자 권한 추가
mysql> grant all privileges on *.* to '계정명'@'localhost';
Query OK, 0 rows affected (0.06 sec)
-- 변경된 내용을 메모리에 반영
Query OK, 0 rows affected (0.06 sec)
-- 변경된 내용을 메모리에 반영
mysql> flush privileges;
Query OK, 0 rows affected (0.07 sec)
Query OK, 0 rows affected (0.07 sec)
728x90
'Database' 카테고리의 다른 글
[MySQL] MYSQL 많이 사용하는 명령어 (0) | 2012.05.13 |
---|---|
[mysql] 토비의 Spring3.0 예제 DB 구축 (0) | 2012.04.15 |
[MySQL] ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) (0) | 2012.01.27 |
[MySQL] MySQL 설치 (0) | 2012.01.26 |
[HSQL] HyperSQL 2.2.6 Released (0) | 2011.12.29 |