본문 바로가기

개발일지

(46)
AWS SAM CLI 설치 및 초기설정 https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-sam-cli.html Install the AWS SAM CLI - AWS Serverless Application ModelThe AWS SAM CLI might interact with filepaths that exceed the Windows max path limitation. This may cause errors when running sam init due to Windows 10 MAX_PATH limitations. To resolve this issue, the new long paths behavior must be config..
AWS 초기설정 -RDS MySQL
AWS 초기설정 1. apache 설치 후 확인2. java 설치 후 확인3. tomcat 설치 후 확인4. mysql 설치 후 확인 (bastion host를 위한 client 설치) 1. apache 설치 후 확인sudo apt update sudo apt upgrade -y sudo apt install apache2 -y sudo systemctl status apache2    2.java 설치 후 확인 OpenJDK 17 설치 (최신 LTS 버전) sudo apt install openjdk-17-jdk OpenJDK 21 설치 (최신 버전) sudo apt install openjdk-21-jdk 3. tomcat 설치 후 확인sudo wget https://dlcdn.apache.org/tomcat/tom..
AWS 로 웹 어플리케이션을 만들기 위한 초기 설정1 ec2 인스턴스 생성 후 ssh로 접속
AWS 결제방법 추가
AWS 가입1
yaml to properties/ properties to yaml convertor https://mageddo.com/tools/yaml-converter
DBeaver 맥 환경에서 사용하기 좋은 강력한 DB 클라이언트 https://dbeaver.io/download/ Download | DBeaver Community Download DBeaver Community 23.3.3 Released on january 22th 2024 (Milestones). It is free and open source (license). Also you can get it from the GitHub mirror. DBeaver PRO 23.3 Released on December 11th, 2023 PRO version website: dbeaver.com Trial version dbeaver.io 내 노트북은 맥북에서 m1 이기 때문에 MacOS for Apple Sillicon(dmg) 를 선택한다. 실행하여 설치한다. 프로..
IntelliJ 인텔리제이 전역 데이터 소스 - 프로젝트 데이터소스 IntelliJ 인텔리제이 전역 데이터 소스 - 프로젝트 데이터소스 데이터베이스 탭에서 데이터 베이스를 클릭하고 프로퍼티를 누르면 좌측에 데이터 소스라는 탭이 보인다. 데이터 소스는 전역 데이터소스와 프로젝트 데이터 소스로 나뉘는데 전역 데이터소스는 전역이다. 인텔리제이의 다른 프로젝트에서 데이터 베이스탭을 들어가도 전역 데이터소스는 전역으로 보인다. 프로젝트 데이터 소스는 해당 프로젝트에서만 보인다. aws- 개발서버 cafe24 운영서버를 [전역으로 만들기] 버튼을 눌러서 전역으로 만들었다. 데이터 베이스 탭에서 전역으로 보인다. 끝.
AWS ec2 에서 root 권한 사용하기 - AWS ec2 기본 사용자는 ec2-user 이다. - 톰캣을 설치하고 war 파일을 배포하려하니 권한이 없다고 나온다. 들어가지지도 않는다. ##root 사용자 권한 가정 sudo su ##root 사용자 비밀번호 설정 (비밀번호 2번 입력) passwd root ##root 사용자 비밀번호 삭제 passwd -d root 이걸 치면 root 사용자 권한을 이용할 수 있다.