https://github.com/usdocker/usdocker-oracle-xe
Useful script for 'oracle-xe' service
https://github.com/usdocker/usdocker-oracle-xe
Last synced: about 2 months ago
JSON representation
Useful script for 'oracle-xe' service
- Host: GitHub
- URL: https://github.com/usdocker/usdocker-oracle-xe
- Owner: usdocker
- Created: 2017-08-20T22:24:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-05-06T20:34:22.000Z (about 5 years ago)
- Last Synced: 2025-08-08T23:50:03.885Z (10 months ago)
- Language: JavaScript
- Size: 36.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Useful script for 'oracle-xe' service
This Useful Script creates a oracle-xe server based on a Docker Image.
You don't have know docker to use this solution.
## Installing
```bash
npm install -g @usdocker/usdocker # Install it first
npm install -g @usdocker/oracle-xe
usdocker -r # Update USDocker database
```
## Start the oracle-xe service
```bash
usdocker oracle-xe up
```
## Stop the oracle-xe service
```bash
usdocker oracle-xe down
```
## Check the oracle-xe status
```bash
usdocker oracle-xe status
```
## Connecting to SQLPlus
```bash
usdocker oracle-xe client -- [args]
```
Example:
```bash
usdocker oracle-xe client -- system/oracle@xe
```
## Connect to Bash
```bash
usdocker oracle-xe connect -- [args]
```
## Connect to your Oracle
```
hostname: localhost
port: 1521
sid: xe
username: system
password: oracle
```
## Connect to APEX
Connect to Oracle Application Express web management console with following settings:
```
http://localhost:8080/apex
workspace: INTERNAL
user: ADMIN
password: oracle
```
## Customize your service
You can setup the variables by using:
```bash
usdocker oracle-xe --set variable=value
```
Default values
- image": "sath89/oracle-xe-11g",
- folder": "$HOME/.usdocker/data/oracle-xe",
- port": 1521,
- apex": 8080,
- processes": 500,
- sessions": 555,
- transactions": 610,
- password": "oracle",
- allowImport": "true",
- setPassword": "true" // only will work if allowImport: true also.