핸드폰을 변경하고나서 오라클 서버 접속하려고 보니푸시 알림이 변경된 핸드폰으로 오지 않았다.모바일 토큰을 등록해서 알림을 보내는듯 했다.그래서 방법을 계속 찾아보다가 비슷한 사람이 있어서 찾았고 간단하게 정리하려고 한다. 1. 오라클 클라우드와 같은 메일 주소로 가입을 한다.https://support.oracle.com/ My Oracle Support support.oracle.com 2. 서비스 요청 -> 기술적 SR 생성 3. 쟁점 유형, 비즈니스 영향, 시스템 수명 주기, 문제 유형 설정하고문제 요약, 문제 설명에 핸드폰을 바꿔서 인증이 안되어 로그인을 못한다고 적었다.영어로 해야됨(When I try to log in to Oracle Cloud, I'm supposed to receive p..
Server
1. PostgreSQL Repository 추가ubuntu@instance-20240916-2008:~$ sudo apt updateubuntu@instance-20240916-2008:~$ sudo apt install gnupg2 wget vimubuntu@instance-20240916-2008:~$ sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'ubuntu@instance-20240916-2008:~$ curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | ..
1. docker 컨테이너의 id 만 전체 출력 $ docker ps -qa 1357fd8e7ed2 9f85ba573af7 2. 출력한 id 의 컨테이너 전체 삭제 $ docker rm -f $(docker ps -qa) 1357fd8e7ed2 9f85ba573af7 3. docker 이미지의 id 만 전체 출력 $ docker images -q f686a76a6e1c b5d7662188e5 4475769c9d8b 4. docker 이미지 전체 삭제 $ docker rmi $(docker images -q) Untagged: go-mongodb-exam-web:latest Deleted: sha256:896c8003e43ceb723a6f76590fd0237384130fe7e17e034ebdcdc09ffd..
docker 실행시 에러가 나는데..failed to solve: failed to read dockerfile: open /var/lib/docker/tmp/buildkit-mount3119749486/Dockerfile: no such file or directory 파일명을 다시 확인해 보시길! DockerFile 이 아니고 Dockerfile 로 되어야 한다.$ docker compose up [+] Building 48.5s (10/10) FINISHED docker:desktop-linux => [server internal] load .dockerignore 0.0s => => transferring context: 2B 0.0s => [server internal] load build de..
2023.08.16 - [Server/ETC] - [Tistory] Open API (자동화) [Tistory] Open API (자동화) Tistory에서 API 를 통해 자동화 해보고 싶은 부분이 있어서 Open API 를 제공하길래 등록해서 사용해보려고 한다. 1. 티스토리 앱 등록 https://www.tistory.com/guide/api/manage/register Tistory 좀 아는 블로거들의 jiaaan90.tistory.com 이전 글을 통해 app 등록을 완료한 다음에 API를 사용하면 정보, 글 읽기, 목록, 쓰기가 가능하다. https://tistory.github.io/document-tistory-apis/ 소개 · GitBook No results matching "" ti..
Tistory에서 API 를 통해 자동화 해보고 싶은 부분이 있어서 Open API 를 제공하길래 등록해서 사용해보려고 한다. 1. 티스토리 앱 등록 https://www.tistory.com/guide/api/manage/register Tistory 좀 아는 블로거들의 유용한 이야기 www.tistory.com 2. 작성 3. 등록 (App ID, Secret Key) 4. Authorize Code 확인 https://tistory.github.io/document-tistory-apis/auth/authorization_code.html Authorization Code 방식 · GitBook No results matching "" tistory.github.io (위 URL 참고) https:..
wget curl 과 유사하지만 curl 처럼 다양한 프로토콜과 많은 기능을 지원하지 않고 파일 받는 기능에 특화되어 사용 쉽다. 1. 설치 ubuntu sudo apt install wget mac brew install wget 2. 활용 (1) 다운로드 wget https://go.dev/dl/go1.20.7.darwin-arm64.tar.gz ubuntu@dev1990 ~ $ wget https://go.dev/dl/go1.20.7.linux-amd64.tar.gz --2023-08-11 16:13:13-- https://go.dev/dl/go1.20.7.linux-amd64.tar.gz Resolving go.dev (go.dev)... 216.239.36.21, 216.239.34.21, 21..
ubuntu@dev1990 mattermost (master) $ git push Enumerating objects: 8, done. Counting objects: 100% (8/8), done. Delta compression using up to 8 threads Compressing objects: 100% (4/4), done. Writing objects: 100% (5/5), 1.67 KiB | 21.00 KiB/s, done. Total 5 (delta 3), reused 2 (delta 1), pack-reused 0 remote: Resolving deltas: 100% (3/3), completed with 3 local objects. To https://github.com/Lim..