일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- logstash
- s3
- mariadb
- MSSQL
- elasticsearch
- AWS
- MySQL
- 구글
- Python
- Git
- Windows
- build
- JS
- API
- ChatGPT
- docker
- sample
- 영어
- Ai
- unity
- error
- JavaScript
- ssh
- Kibana
- nodejs
- Linux
- 엘라스틱서치
- 설정
- 유니티
- Today
- Total
목록개발 이야기/개발 및 서비스 (101)
가끔 보자, 하늘.
빌드 에러가 다음과 같은 경우... /** CommandInvokationFailure: Gradle build failed. ... ... stderr[ FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project 'gradleOut'. > Failed to install the following Android SDK packages as some licences have not been accepted. build-tools;28.0.2 Android SDK Build-Tools 28.0.2 To build this project, accept the SDK license ag..
자주 사용하는 기능들 모아서 정리한 코드입니다. 필요하신 분들은 가져다 그대로 사용하시면 됩니다. Date.prototype.mmddyyyy = function() { return (this.getMonth() + 1) + "/" + this.padZero(this.getDate()) + "/" + this.padZero(this.getFullYear());};Date.prototype.yyyymmdd = function() { return this.getFullYear() + "/" + this.padZero((this.getMonth() + 1)) + "/" + this.padZero(this.getDate());};Date.prototype.mmddyyyytime = function(){ retur..
[about setting command line tools ] react-native run-ios 로 실행을 시도했을 때 command line tools 없다는 에러가 발생하는데, xcode-select --install로 설치를 해도 반응이 없다. 단순히 설치만 해서는 안되고 xcode preferences에 설정을 해야 한다. XCode > Preferences > Locations 화면에서 Command Line Tools 이 비어 있다면 이를 설정하면 된다. -------------------------------------------------------------------------------------------------------- when it occurs an error the..
Cognito 유저가 비공개 S3로 접근하려고 할 때... https://docs.aws.amazon.com/ko_kr/IAM/latest/UserGuide/reference_policies_examples_s3_cognito-bucket.html=> 이 문서 중 sample rule script에서 Principal 관련된 코드가 빠져 있다. 실제 이 룰을 적용하려면 principal 에러가 발생한다. 문서 내용에는 언급되어 있지 않았다.
다음과 같은 순서로 작성되어 있습니다. 1. 개요 2. 준비 3. 쿼리 알아보기 4. nodejs와 통합 5. chart로 표현하기 1. 개요 최근 회사에 Elasticsearch(이하 ES)로 통계 시스템을 구축했습니다. Mysql MyISAM 엔진으로 구축하던 것과 비교해보면 엄청나게 편리해졌네요. Kibana로 쿼리하고 결과를 손쉽게 출력하여 담당자가 아닌 컨텐츠 개발자도 자신이 보고 싶은 결과를 바로 추가하여 볼 수 있을 정도니, 작은 개발사에는 이보다 더 좋은 솔루션이 있을까 싶네요. 그런데 ES에서 나온 다른 두 결과의 비교가 필요한 경우 불가능한 경우가 있어서 조금 아쉽더군요. 그래서 이를 직접 만들어 보기로 했습니다. 시간을 기준으로 데이터를 비교하는 경우는 timelion을 사용하면 되나..
javascript로 aws cognito 연동 할 때, app 설정에서 "클라이언트 보안키 생성" 옵션을 해제해야 한다. https://github.com/aws-amplify/amplify-js/tree/master/packages/amazon-cognito-identity-js "When creating the App, the generate client secret box must be unchecked because the JavaScript SDK doesn't support apps that have a client secret." 클라이언트 보안 옵션은 기본으로 체크 되어 있어서 생각없이 넘어 갔는데, 켜져 있으면 "Unable to verify secret hash for client ...
공식 사이트는 이 곳!!http://jsoncpp.sourceforge.net/ >> 현재는 github로 링크가 이동된다. 최근 코드는 많이 달라져 있어서 최근 코드 사용에 대해서는 추후 다시 한번 정리할 예정이다. 이번은 예전에 사용하던 코드를 활용하여 ( 파일 >> 일단 설치는 그냥 압축을 풀어 프로젝트에 적용하면 끝!! (h와 cpp 파일 각 하나씩만 존재한다.) 사용법은 아래와 같다. - 읽기 json 파일의 내용을 어딘가에서 읽어왔다면 Json::Reader를 사용하여 파싱하여야 한다. std::string data;
redis config 파일에서 암호를 지정할 수 있는데... requirepass 원하는암호 이렇게 설정할 수 있다. nodejs 에서 암호 설정 안하고 접근하면 아래와 같은 에러가 발생한다. ReplyError: Ready check failed: NOAUTH Authentication required. at parseError (/home/ec2-user/mwsdss/node_modules/redis-parser/lib/parser.js:193:12) at parseType (/home/ec2-user/mwsdss/node_modules/redis-parser/lib/parser.js:303:14) 그래서 아래와 같이 처리하면 된다. const redisCli = redis.createClient(..