반응형
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
- app
- gemini
- 재테크
- elasticsearch
- Kibana
- AWS
- 주식
- Windows
- MySQL
- unity
- error
- Ai
- 투자
- nodejs
- JS
- JavaScript
- 설정
- docker
- MSSQL
- Python
- 구글
- ChatGPT
- LLM
- 유니티
- Linux
- API
- FLUTTER
- 분석
- 바보
Archives
- Today
- Total
목록2018/08 (2)
가끔 보자, 하늘.
시스템 기본 사양 확인하기
CentOS 기준.. 매번 사용하지 않는 것들이라 기록해둔다. OS 버전 확인cat /etc/redhat-release(el7 ~) or cat /etc/issue(~el6) 커널 버전 확인cat /proc/version Kernel bits 확인getconf WORD_BIT cpu 정보 확인 cat /proc/cpuinfo실 CPU 수 : grep ^processor /proc/cpuinfo | wc -lCPU당 코어 수 : grep 'cpu cores' /proc/cpuinfo | tail -1 메모리 cat /proc/meminfo 디스크 용량 확인 df -h
개발 이야기/인프라 구축 및 운영
2018. 8. 30. 11:58
amazon-cognito-identity-js 사용 시 주의 사항
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 ...
개발 이야기/개발 및 서비스
2018. 8. 9. 19:33