Encoding::CompatibilityError: incompatible character encodings: UTF-8 and CP-949 Vagrant up 실행 시 발생하는 에러 Encoding::CompatibilityError: incompatible character encodings: UTF-8 and CP-949 c:\사용자\사용자명\vagrant.d 파일 이동 예를들어 vagrant 설치 할 때 기본적으로 생겨지는 폴더 c:\HashiCorp\.vagrant.d 그리고 환경변수 설정 다른 글을 보면 사용자 계정을 영어로 해야한다는데 굳이 안그래도 되는 것으로 보임 IaC 2021.12.29
[Vagrant] nginx 기동 vagrantfile 내용 # -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| # Vagrant 설정형식 2를 사용한다 의미 # All server set config.vm.box = "centos/8" config.vm.box_check_update = true # Create CentOS config.vm.define "centvm" do |centvm| centvm.vm.hostname="centvm" centvm.vm.network "private_network", ip: "192.168.1.4" centvm.vm.provision "shell", inline: $SHELL_Script end $SHELL_Scri.. IaC 2021.12.04
[Vagrant] vagrantfile 설정 IaC 도구로 아래의 작업을 코드화 가능 아래의 작업 내용을 vagrantfile에 정의하고 공유한다. - VM 생성 - OS 설정 - MW나 Application 배포 등 Windows 다운로드 링크: Downloads | Vagrant by HashiCorp (vagrantup.com) Downloads | Vagrant by HashiCorp Vagrant enables users to create and configure lightweight, reproducible, and portable development environments. www.vagrantup.com Vagrant 기본 명령어 - vagrant init: vagrant를 배포하기 위한 vagrantfile 생성 - vagrant.. IaC 2021.12.04