본문 바로가기

WSL wsl Processing fstab with mount -a failed. WSL (17) ERROR: CreateProcessEntryCommon:370: getpwuid(0) failed 2 WSL (17) ERROR: CreateProcessEntryCommon:374: getpwuid(0) failed 2 WSL (17) ERROR: CreateProcessEntryCommon:577: execvpe /bin/sh failed 2 WSL (17) ERROR: CreateProcessEntryCommon:586: Create process not expected to return 다음과 같은 에러가 났을때 해결하는 방법 wsl -l # Linux용 윈도우 하위 시스템 배포 리스트 확인 docker.. 더보기
springboot EntityManagerFactory error A component required a bean of type 'javax.persistence.EntityManagerFactory' that could not be found. org.hibernate hibernate-core 5.6.15.Final org.hibernate hibernate-entitymanager 5.6.15.Final 추가하자 더보기
ChatGPT 활용법 모음 https://twitter.com/lennysan/status/1645807004026540039 더보기
서촌마을 이색음식 파스트라미 원본 - 내 네이버 블로그. 친구랑 이색음식 미국음식인 #파스트라미를 먹으러 왔다. 평일 대략 12:30분 쯤 도착했는데 대기기 6명 있엇다. 30분 정도 기다린거 같았다. ​ 피클을 싫어해서 코을슬로 파스트라미랑 고트피자를 시켜 먹었다. ​ 역시 미국음식(?) 답게 정말짯다. 하지만 내용물는 사진이랑 같이 꽉꽉차있어서 좋았다 한번 가볼만 하다 ​ 더보기
docker compose 명령어 정리 및 yml 파일 보호되어 있는 글입니다. 더보기
갱신법 Apple Push Services 인증서가 30일 후에 만료됨 https://developer.apple.com/account/resources/certificates/list 에 접속해서 만료되는 Apple Push Services Type 을 revoke 한다 맥에서 유틸리티 > '키체인 접근' 실행한다 메뉴에서 인증 기관에서 인증서 요청 선택한후 사용자 이메일 주소, 일반 이름, 디스크에 저장됨, 본인이 키 페어 정보 지정 을 입력 및 선택한다. 생성된 certSigningRequest 파일을 가지고 애플 개발자 센터에서 푸시 서비스 인증서 등록한다. 아래 사이트에 접속 > + 버튼 클릭 > Services의 'Apple Push Notification service SSL (Sandbox & Production)' 선택 그리고 Continue 클릭하여 다음페.. 더보기
AMAZON Linux2 nginx 설치 #nginx 확인 yum info nginx #add nginx repo. sudo vi /etc/yumrepos.d/nginx.repo nginx.repo 파일에 복붙하기 [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1 #re check yum info nginx #install nginx sudo yum install nginx -y nginx sudo systemctl start nginx #start sudo systemctl stop nginx #stop sudo systemctl status nginx #status 더보기
AMAZON Linux2 git ssh 설정 git 설치 및 ssh public key 생성 sudo yum install git ssh-keygen -t rsa -C "당신의 이메일주소" cat ~/.id_rsa.pub #보통 id_rsa로 저장됨. 바꿀수 있음 cat 해서 나온 내용 복사해서 git > settings > SSH and GPG Keys > new Key 해서 등록 더보기
Amazon Linux2 node 설치 sudo yum install gcc-c++ make #몇몇 의존성 라이브러리 떄문에 설치 curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash sudo yum install -y nodejs node -v npm -v 더보기
amazon linux2 certbot 설치 및 설정 #AWS 서버에 접속 및 Let's Encrypt(certbot) 설치 sudo wget -r --no-parent -A 'epel-release-*.rpm' http://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/ #리포지토리 패키지 설치 sudo rpm -Uvh dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-*.rpm #완료 후 epel를 활성화 sudo yum-config-manager --enable epel* #certbot을 설치 sudo yum install -y certbot python2-certbot-apache sudo yum install certbot-nginx #cer.. 더보기