Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 크로스도메인
- HashMap
- IOT
- 원격
- #spring boot
- mariadb 한국어
- emqx
- cors
- message protocol
- #actuator
- db utf8
- ArrayList
- #spring boot admin
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- mqtt
- TreeMap
- CORS policy: No 'Access-Control-Allow-Origin'
- com.netflix.zuul.exception.ZuulException
- mosquitto
- mysql 한국어
- xrdp
- backtracking
- Set
- #MSA
- mstsc
- mariadb 다국어
- Hystrix Read time out
- Access-Control-Allow-Origin
- mysql 다국어
- java collection
Archives
- Today
- Total
miin29na
[Mysql] MySql 외부 접근 허용 본문
- 권한 설정
- 모든 대역에 대해서 허용
MYSQL> grant all pivileges on *.* to 'root'@'%' identified by 'root의 패스워드';
- 특정 IP 대역에 대해서 허용
MYSQL> grant all pivileges on *.* to 'root'@'192.168.%' identified by 'root의 패스워드'; - 등록 후 적용
MYSQL> flush privileges; - 설정 파일
- 설정파일에서 외부 접속 관련 내용 변경
vi /etc/my.cnf 에서 bind-address 주석 처리
#bind-address=127.0.0.1 - 서비스 재시작
- service mysql restart
'IT > database' 카테고리의 다른 글
MariaDB/MySql 다국어 지원(utf8, utf8mb4) (0) | 2020.03.13 |
---|
Comments