oracle12c-vagrant
A vagrant box that provisions Oracle 12c automatically.
파일 탐색기
- db_install.rsp
- dbca.rsp
- netca.rsp
- .gitignore
- install.sh
- oracle-rdbms.service
- tablespace.sql
- .gitignore
- LICENSE
- README.md
- Vagrantfile
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
unzip
설명 보기 ▼
unzip
Zip 아카이브에서 파일/디렉토리를 추출.
관련 항목: `zip`.
더 많은 정보: <https://manned.org/unzip>.
unzip {{path/to/archive1.zip path/to/archive2.zip ...}}
특정 아카이브에서 모든 파일/디렉토리를 현재 디렉토리에 추출:
unzip {{path/to/archive1.zip path/to/archive2.zip ...}} -d {{path/to/output}}
아카이브에서 파일/디렉토리를 특정 경로로 추출:
unzip -c {{path/to/archive1.zip path/to/archive2.zip ...}}
아카이브에서 파일/디렉토리를 추출하고 추출된 파일 이름과 함께 `stdout`으로 출력:
vagrant halt
설명 보기 ▼
vagrant halt
Shuts down the running machine Vagrant is managing.
See also: `vagrant`, `vagrant box`, `vagrant plugin`, `vagrant validate`.
vagrant halt
Halt the currently running Vagrant machine gracefully:
vagrant halt {{id_or_name}}
Halt a specific machine by its ID or name gracefully:
vagrant halt {{[-f|--force]}}
Forcefully halt the current running machine(s) (This can affect multiple running machines if they are part of the same Vagrant environment):
vagrant plugin
설명 보기 ▼
vagrant plugin
Manage Vagrant plugins.
See also: `vagrant`.
vagrant plugin list
List all the plugins currently installed:
vagrant plugin install {{vagrant_vbguest}}
Install a plugin from remote repositories, usually RubyGems:
vagrant plugin install {{path/to/my_plugin.gem}}
Install a plugin from a local file source:
vagrant reload
설명 보기 ▼
vagrant reload
Equivalent of running `halt` followed by `up`.
A reload is usually required for changes in a Vagrantfile to take effect.
See also: `vagrant`.
vagrant reload
Reload the currently running machine:
vagrant reload {{name|id}}
Target a machine by name or ID:
vagrant reload --provision
Force the provisioners to run:
vagrant ssh
설명 보기 ▼
vagrant ssh
SSH into a running Vagrant machine.
See also: `vagrant`.
vagrant ssh
SSH into the machine running in the current directory:
vagrant ssh {{name|id}}
Target a running machine by name or ID:
vagrant ssh {{[-c|--command]}} {{ssh_command}}
Execute an SSH command and exit:
vagrant
설명 보기 ▼
vagrant
경량, 재생 가능, 휴대 가능한 개발 환경 관리 도구.
더 많은 정보: <https://developer.hashicorp.com/vagrant/docs/cli>.
vagrant init
현재 디렉토리에 기본 Vagrant 박스로 Vagrantfile 생성:
vagrant init {{ubuntu/focal64}}
HashiCorp Atlas에서 Ubuntu 20.04 (Focal Fossa) 박스로 Vagrantfile 생성:
vagrant up
Vagrant 환경 시작 및 프로비저닝:
