일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 원격
- HashMap
- xrdp
- CORS policy: No 'Access-Control-Allow-Origin'
- mosquitto
- #spring boot
- backtracking
- mysql 한국어
- TreeMap
- mysql 다국어
- Set
- #actuator
- message protocol
- cors
- Hystrix Read time out
- IOT
- 크로스도메인
- db utf8
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- mariadb 한국어
- Access-Control-Allow-Origin
- #spring boot admin
- java collection
- ArrayList
- mstsc
- #MSA
- mariadb 다국어
- emqx
- mqtt
- com.netflix.zuul.exception.ZuulException
- Today
- Total
목록IT (8)
miin29na
Windows 10 환경에서 리눅스 Ubuntu 18.04 서버에 원격 접속 시, sudo apt install xrdp xrdp를 통해 연결할 때, 접속은 되는데 검정 화면만 뜰 경우: 아래 링크를 참고하였다. http://catch22cats.blogspot.com/2018/05/xrdp-blank-screen-with-ubuntu-1804.html sudo vim /etc/xrdp/startwm.sh 그리고 파일에서 test ~~~ Xsession 뭐시기 써진 줄 바로 위에 아래 내용을 입력한다. unset DBUS_SESSION_BUS_ADDRESS unset XDG_RUNTIME_DIR . $HOME/.profile 저장하고 아래 명령어를 입력하여 xrdp를 재시작해준다. sudo ser..
AWS Certification 0.기초 자격증 : AWS Cloud Practitioner 1. 어소시에이트 자격증 2. 프로페셔널 자격증 3. 전분 분야 자격증 Contents 도메인 비중 도메인 1 : 클라우드 개념 28% 도메인 2: 보안 24% 도메인 3: 기술 36% 도메인 4: 결제 및 요금 12% Reference -AWS Cloud Practitioner 강의 https://aws.amazon.com/ko/training/course-descriptions/cloud-practitioner-essentials/ AWS Cloud Practitioner Essentials 이 디지털 자습형 과정에서는 특정 기술 역할과 관계없이 AWS 클라우드를 전반적으로 이해할 수 있습니다. 클라우드 개념..
1. Mosquitto Broker 설치 js-MacBookPro:~ js.k$ brew install mosquitto Updating Homebrew... ==> Auto-updated Homebrew! ==> Installing dependencies for mosquitto: openssl@1.1, libevent, libuv and libwebsockets ==> Installing mosquitto dependency: openssl@1.1 ==> Downloading https://homebrew.bintray.com/bottles/openssl@1.1-1.1.1f.catalina.bottle.tar.gz ==> Downloading from https://akamai.bintray.com/..
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..
권한 설정 - 모든 대역에 대해서 허용 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..
ubuntu version 18.04 $sudo apt-get update 수행 시, 'kr.archive.ubuntu.com'의 주소를 알아낼 수 없습니다.' 오류가 발생한다. 검색 해보니 해결방법이 여럿 있다. - 저장소 서버 변경 (kr.archive.ubuntu.com -> ftp.daumkakao.com)$cd /etc/apt/$sudo vi sources.list :%s/kr.archive.ubuntu.com/ftp.daumkakao.com 하지만 나는 안되서, 다시 서치해 본 결과 고정 IP 로 변경 하고 나서 DNS 서버 설정을 안한것이 원인이였다 .$sudo vi /etc/network/interfaces iface eth0 inet static...dns-nameservers xx.xx..