Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a commented-out option to allow a private network for PL/SQL debu… #486

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions OracleDatabase/19.3.0/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,16 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.network "forwarded_port", guest: VM_LISTENER_PORT, host: VM_LISTENER_PORT
config.vm.network "forwarded_port", guest: VM_EM_EXPRESS_PORT, host: VM_EM_EXPRESS_PORT

# PL/SQL Debugger Enablement in Virtualized Environments
# If you want to run Oracle Database inside a container engine locally installed
# like VirtualBox or docker, you will need to have that engine create
# a Private or Bridge Network so that the database can "see" the debugger
# callback port on your host (where your IDE is running)
# Uncommenting this will create a second virtual network adapter on this
# network (which you must create separately using your engine hardware manager)
# and it will set the address of the adapter to the ip below.
#config.vm.network "private_network", ip: "192.168.56.14"

# Provision everything on the first run
config.vm.provision "shell", path: "scripts/install.sh", env:
{
Expand Down