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 |
Tags
- 자바
- 개발
- Portfolio
- it
- C lanuage
- 해석
- kakao
- C
- 프래그먼트
- ubuntu
- 구글
- NGINX
- 번역
- 개발자
- MySQL
- centOS7
- mariadb
- java
- 컴퓨터과학총론
- 안드로이드
- 한글
- techEmpower
- server
- php
- H2O
- unity
- javascript
- android
- error
- caddy
Archives
- Today
- Total
개발모음집
mysql8.0 install in ubuntu 18.04 본문
설치
$ wget -c https://repo.mysql.com//mysql-apt-config_0.8.13-1_all.deb
$ sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb
$ sudo apt update
$ sudo apt-get install mysql-server
$ sudo mysql_secure_installation
$ mysql -u root -p
출처 :https://www.tecmint.com/install-mysql-8-in-ubuntu/
security는 아래의 글을 참고하였음.
root는 원격접속 불가하게 하기위해서 n으로 설정
출처 : https://whitepaek.tistory.com/16
계정 추가
$ create user '사용자'@'localhost' identified by '비밀번호';
# 특정 계정 테이블 권한 부여
$ grant all privileges on DB이름.* to '사용자'@'localhost';
출처 : https://cjh5414.github.io/mysql-create-user/
참고
# 계정 권한 확인
$ show grants for '사용자'@'localhost';
출처 : https://sleepyeyes.tistory.com/32
아래와 같이 나왔다.
GRANT USAGE ON *.* TO `node`@`localhost` => 권한없음을 뜻한다.
출처 ; https://stackoverflow.com/questions/2126225/why-is-a-grant-usage-created-the-first-time-i-grant-a-user-privileges
'DB > RDBMS' 카테고리의 다른 글
MySQL server has gone awayLost connection to MySQL server at 'reading initial communication packet', system error: 102 (0) | 2020.01.14 |
---|---|
mysql8.0 Client does not support authentication protocol requested by server; consider upgrading MySQL client (0) | 2020.01.07 |
node crawler (0) | 2019.02.28 |
nginx rtmp (0) | 2019.01.29 |
Postgresql PsqlConnect.java (0) | 2019.01.29 |