Last active
July 25, 2020 13:49
An example of the command line (CLI) preconditions required in order to run the DatabaseChangeListenerInOracleDatabaseExample.groovy script. This example was running on a System76 machine with the Ubuntu operating system.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# In this example Docker is running on another machine so assume that I've ssh'd into that box and | |
# am running the following on the remote machine. | |
# | |
docker run -d -p 1521:1521 oracleinanutshell/oracle-xe-11g | |
docker exec -it [container id] /bin/sh | |
su | |
# | |
# Username: system, password: oracle | |
# | |
/u01/app/oracle/product/11.2.0/xe/bin/sqlplus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment