전체 글 썸네일형 리스트형 vagrant 설치 및 ubuntu 서버 배포 vagrant 설치 및 ubuntu 서버 배포 원도우 패키지 관리자 설치(CHOCOLATEY) 요구 사항 Windows 7+ / Windows Server 2003+ PowerShell v2+ (minimum is v3 for install from this website due to TLS 1.2 requirement) .NET Framework 4+ Windows PowerShell(오른쪽 마우스 클릭) > 관리자 권한으로 실행 chocolatey 설치 Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::Sec.. 더보기 [Mac] Parallels Desktop에서 Vagrant를 사용하는 방법 Parallels Desktop에서 Vagrant를 사용하는 방법(설치 실패) mac os version(mac m1) $ sw_vers ProductName:macOS ProductVersion:12.5.1 BuildVersion:21G83 vagrent 설치 brew install vagrant $ vagrant --version Vagrant 2.3.0 vagrant-parallels 플러그인 설치 vagrant plugin install vagrant-parallels $ vagrant plugin list vagrant-parallels (2.2.5, global) mkdir vagrant-test cd vagrant-test vagrant 이미지 검색 Discover Vagrant Boxes .. 더보기 Amazon Route 53 Invalid Change Batch 오류(InvalidChangeBatch 400) Amazon Route 53 Invalid Change Batch 오류(InvalidChangeBatch 400) cname_txt_record_txt CNAME 레코드 추가 cname_txt_record_txt TXT 레코드 추가 cname_txt_record_txt CNAME 레코드가 있는 상태에서 cname_txt_record_txt TXT 레코드를 생성하면 아래와 같이 오류가 발생합니다. 오류 발생 잘못된 요청입니다. (InvalidChangeBatch 400: RRSet of type TXT with DNS name cname_txt_record_txt.scbyun.com. is not permitted because a conflicting RRSet of type CNAME with the .. 더보기 [python] dns(hostname) 정보 확인 python dns(hostname) 정보 확인 socket.gethostbyname : 도메인 이름에 대한 IP 주소를 반환 socket.gethostbyname('naver.com') socket.gethostbyname_ex : 확장판(다른 이름의 리스트, 주소의 리스트를 반환) socket.gethostbyname_ex('naver.com') $ python Python 3.9.13 (main, Aug 7 2022, 01:19:39) [Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import socket >>> socket.ge.. 더보기 [python] tcp 소켓 통신 python tcp 소켓 통신 code : https://github.com/madscheme/introducing-python tcp_server.py 작성 from datetime import datetime import socket address = ('localhost', 6789) max_size = 1000 print('Starting the server at', datetime.now()) print('Waiting for a client to call.') server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server.bind(address) server.listen(5) client, addr = server.accept() data.. 더보기 [python] udp 소켓 통신 python udp 소켓 통신 code : https://github.com/madscheme/introducing-python udp_server.py 작성 from datetime import datetime import socket server_address = ('localhost', 6789) max_size = 4096 print('Starting the server at', datetime.now()) print('Waiting for a client to call.') server = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) server.bind(server_address) data, client = server.recvfrom(max_size.. 더보기 Ubuntu Server 22.04 LTS (Jammy Jellyfish) Ubuntu Server 22.04 LTS (Jammy Jellyfish) LTS Releases old releases - old-releases.ubuntu.com Ubuntu 22.04.1 LTS (Jammy Jellyfish) Ubuntu 20.04.4 LTS (Focal Fossa) Ubuntu 18.04.6 LTS (Bionic Beaver) Ubuntu Server 22.04 LTS (Jammy Jellyfish) Ubuntu Server 22.04 LTS (Jammy Jellyfish) Daily Build https://cdimage.ubuntu.com/ubuntu-server/daily-live/current/ Ubuntu 22.04 LTS (Jammy Jellyfish) Beta ht.. 더보기 [aws] AWS CodeDeploy 사용법 AWS CodeDeploy 사용법 AWS 개발자 도구 코드를 호스팅하고 자동으로 애플리케이션을 AWS로 빌드, 테스트 및 배포합니다. 웹 소스 생성 spring boot 프로젝트 생성 - vscode spring boot 프로젝트 세팅 및 실행 : https://sangchul.kr/552 appspec.yml 생성 version: 0.0 os: linux files: - source: / destination: /home/ec2-user/build/ IAM(Identity and Access Management) Role 생성 ec2 인스턴스에서 사용할 iam role 생성 Identity and Access Management(IAM) > 액세스 관리 > 역할 > 역할 만들기 정책 이름 AmazonS.. 더보기 이전 1 ··· 124 125 126 127 128 129 130 ··· 171 다음