Oracle 18c XE image containing test datasets for Ontop
132
Oracle image 18c XE to test ontop system. It contains the databases used inside the module ontop-docker-tests.
To start a container:
docker run --name ontop_oracle_running -d -p 49160:8080 -p 49161:1521 -e LICENSE=accept ontop/ontop-oracle
By setting the env variable LICENSE to "accept", you are accepting the Oracle Database Express Edition license.
The Dockerfile and associated scripts are licensed under the Apache License 2.0.
May happen if wrong passwords are tried too many times.
Error message: ORA-28000: the account is locked.
To unlock the user, connect to the container
docker exec -it ontop_oracle_running sqlplus /nolog
Then
conn sys as sysdba
Password: oracle (by default)
ALTER USER SYSTEM ACCOUNT UNLOCK;
Bonus:
ALTER PROFILE DEFAULT LIMIT FAILED_LOGIN_ATTEMPTS 1000;
ALTER PROFILE DEFAULT LIMIT PASSWORD_LOCK_TIME 0.001;
To exit
exit
Content type
Image
Digest
Size
5.2 GB
Last updated
almost 7 years ago
docker pull ontop/ontop-oracle:2.0