일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xrdp
- db utf8
- IOT
- #spring boot admin
- mariadb 다국어
- mariadb 한국어
- Access-Control-Allow-Origin
- com.netflix.zuul.exception.ZuulException
- Set
- mosquitto
- message protocol
- HashMap
- java collection
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- emqx
- CORS policy: No 'Access-Control-Allow-Origin'
- #MSA
- TreeMap
- 원격
- cors
- ArrayList
- Hystrix Read time out
- #spring boot
- mqtt
- mysql 다국어
- backtracking
- mstsc
- #actuator
- mysql 한국어
- 크로스도메인
- Today
- Total
목록분류 전체보기 (23)
miin29na
MQTT MQTT(Message Queuing Telemetry Transport) 는 M2M(machine-to-machine), IoT(Internet of things) 환경에서와 같이 저전력, 낮은 대역폭 환경에서 사용 할수 있도록 설계된 경량의 메시지 프로토콜이다. Push 기술로, Server/Client 방식이 아닌 Broker 를 통해 송신자(Publisher)가 메시지를 발행(publish) 하고 수신자(Subscriber)가 메시지를 구독(subscribe) 하는 방식을 사용한다. Facebook Messenger 에서 사용되고 있다. MQTT Protocol http://docs.oasis-open.org/mqtt/mqtt/v3.1.1/os/mqtt-v3.1.1-os.html MQTT..
MariaDB 에서 컬럼에 한국어 데이터를 저장 -> 다음과 같은 오류 발생 /* SQL 류 (1366): Incorrect string value: '\xEA\xB0\x80"}' for column `database`.`table`.`column` at row 1 */ 한국어 뿐 아니라 아시아계 언어들에 대해 오류 발생 설정 확인 mysql> show variables like 'c%'; 다국어를 처리할 수 있는 UTF-8 저장방식이 있으므로 설정을 해줘야 한다. UTF-8 : 가변 4바이트 전세계 모든 언어 문자는 3바이트가 안되므로 공간절약, 속도향상을 위해서는 utf8은 가변 3바이트로 설계 되었다. Emoji 같은 새로나온 문자는 utf8 로 지원이 안된다. mysql/mariadb 는 vers..
Spring Cloud Zuul 을 사용한 API Gateway 에서 Rest API 호출 시, response 의 Data 가 커서 response 응답이 오래 걸리는 문제 Rest API 호출 Error Log { "timestamp": "2020-02-18T10:16:18.507+0000", "status": 504, "error": "Gateway Timeout", "message": "com.netflix.zuul.exception.ZuulException: Hystrix Readed time out" } Zuule Server Error Log com.netflix.zuul.exception.ZuulException: at org.springframework.cloud.netflix.zuul...
Spring 기반 Server Rest API 를 javascript 로 테스트 도중 다음과 같은 에러가 발생(크롬) 로컬 개발 서버에서는 Success, 원격 배포 서버에서는 Fail. index.html:1 Access to XMLHttpRequest at 'http://원격지:8080/abc/' from origin 'null' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. index2.html:154 {readyState: 0, getResponseHeader: ƒ, getAllResponseHeaders: ƒ, setRequestHeader: ƒ..
Hosting Supported OSs Priicing CD Jenkins on-premise, cloud Windonws, Linux, macOS, Unix-like OS Free O Gitlab CI on-premise, cloud Linus distributions : Ubuntu, Debian, CenOS, Oracle Linux 무료체험판 : 30일 per user per month : $4 - $99 O Travis on-premise, cloud Linux, macOS $69 - $489 X codeship cloud Windows, macOS $75 - $1500 O TeamCity on-premise, Windonws, Linux, macOS, Solaris, FreeBSD etc per..
권한 설정 - 모든 대역에 대해서 허용 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
logstash download page https://www.elastic.co/downloads/logstash zip 버전을 다운받아 원하는 폴더에 압축을 푼다. (이 때, 공백이 포함된 폴더는 오류를 발생) logstsh outpu plugin install logstsah-plugin.bat install logstsah-output-jdbc Validating logstash-output-jdbc Installing logstash-output-jdbc Installation successful ddd 1234567891011121314151617181920212223# Sample Logstash configuration for creating a simple# Beats -> Logstas..
MSA 를 구성하기 위해, config-service 를 구성 후에 이번 포스팅에서는, discovery service를 구성한다. Config-service 는 이전글을 참조한다. Spring Cloud Discovery Server (Eureka Server) 는 Micro service 들을 감시하고 관리하는 서비스이다. 이전 글에서, "Config-service, discovery-service, proxy-service, A-service, B-service 5개의 서버가 물리적으로 다른 서버에서 수행된다. "discovery-service : Eureka Server proxy-service, A-service, B-servie : Eureka Client -Micro service 들의 목록..