일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- configure
- DSL
- KoA
- airflow
- ubuntu
- grok
- Crontab
- json
- Data Engineering
- logstash
- node.js
- filebeat
- PYTHON
- query
- path.data
- kibana
- OPCUA
- ELK
- dense_vector
- elastic
- windows
- devtools
- venv
- CSV
- elasticsearch
- Tutorial
- 7.7.1
- package.json
- typescript
- framework
- Today
- Total
목록windows (3)
Gibbs Kim's playground
AWS CLI는 AWS의 다양한 기능을 명령어를 통해 실행할 수 있게 하는 기능이다.(공식문서 참조: LINK) 설치 순서는 다음과 같다.1. Windows용 AWS CLI 설치프로그램 (MSI 64bit) 다운로드 및 실행> https://awscli.amazonaws.com/AWSCLIV2.msi 또는 msiexec 명령어를 통해 설치 프로그램을 실행할 수도 있다.$ msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi 2. 설치된 버전 확인$ aws --versionaws-cli/2.17.22 Python/3.11.9 Windows/10 exe/AMD64AWS 공식문서: LINK
Linux에서 모듈이나 프로세스 검색 시 "pip list | grep py*" 과 같이 자주 사용하곤 했다.Windows에서도 당연히 이렇게 사용을 시도했는데 해당 명령어가 설정되어 있지 않으므로 다음의 명령어를 사용하여 해결하였다. $ pip list | findstr apache# apache 문자열의 패턴을 가지는 모든 python 모듈 리스트를 반환 참고링크 : https://realforce111.tistory.com/10 윈도우 find, findstr 명령어리눅스에서 grep 명령어는 특정 문자열만 출력하는 기능으로 리눅스에서 가장 많이 사용되는 명령어 중 하나입니다. 윈도우에도 grep 명령어와 비슷한 find, findstr 명령어가 있습니다. find에서 기능realforce111.t..
PowerShell execution 정책의 기본값은 다음과 같다. Default Restricted for Windows clients. RemoteSigned for Windows server. 'install-service-filebeat.ps1'을 PowerShell로 실행 시, 오류가 발생한다면, 기본적으로는 다음과 같은 명령어를 사용하면 권한 할당이 정상적으로 이루어져 .ps1 스크립트를 실행 가능하다. > Set-ExecutionPolicy -ExecutionPolicy RemoteSigned 나머지 Policy 정책을 보고 싶다면 다음 링크를 참고하면 된다. MicrosoftDocs about_Execution_Policies - PowerShell About Execution Polici..