AWS IAM
참고 https://brunch.co.kr/@alden/50
AWS CLI를 이용해 다양한 AWS 서비스를 사용하려면 Credential이 요구된다. 기본 profile 생성 default profile 생성은 aws configure 명령으로 한다. aws configure 위 명령을 사용하면 아래와 같은 정보를 입력한다. AWS Access…
AWS Configure profile aws configure --profile "your username" https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/cli-configure-profiles.html git clone 자격 증명 문제 https://docs.aws.amazon.com/ko_kr/codecommit/latest/userguide/troubleshooting-ch.html#troubleshooting-macoshttps Setup for HTTPS users using Git credentials https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-gc.html#setting-up-gc-iam
AWS CLI 2.0 설치 $ curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg" $ sudo installer -pkg AWSCLIV2.pkg -target / 설치확인 aws cli가 정상적으로 설치되면 aws 명령 사용이 가능하다. 아래와 같이 aws --version 명령으로…
numpy import 하기 import numpy as np numpy array 기본 생성 nd1 = np.array([[1,2], [3,4]]) nd1 array([[1, 2, 3], [3, 4, 1]]) numpy 주요 속성 nd1.ndim ## 차원(rank) nd1.size ##…
우분투 서버에 보조용으로 달아둔 하드디스크에 문제가 생겼다. 깨진 파일이 들어가면서 이상해졌는지 무슨 작업을 하다가 블럭이 깨진건지 명확히 알 수 없는데 아래 명령을 사용해서 고쳤다. $ sudo ntfsfix /dev/sdc1 Mounting volume...…
nextcloud 17.0.10에서 18.0.10으로 업데이트하는데 아래와 같은 오류가 발생했다. InvalidArgumentException: Column name "oc_flow_operations"."entity" is NotNull, but has empty string or null as default. 데이터베이스에서 발생한 문제인데 db에서 다음과 같은 쿼리를 수행해준다.…
윈도우에서 webdav를 연결하려는데 에러가 났다. 보통은 아이디, 패스워드를 입력하는 창이 나오는데 네트워크가 아에 연결이 안 되는 것과 같은 에러가 발생했다. nginx 설정에 문제가 있는 것으로 보여 설정 관련 내용을 찾았다.…
k3s(Kubernetes) 설치 및 실행 k3s는 간단한 shell 명령으로 설치와 실행이 가능하다. $ curl -sfL https://get.k3s.io | sh - 위 명령으로 간단한 설치와 실행이 가능한데, 필자의 경우 이미 서버에서 web 서비스들을…