Oracle NoSQL 1x3 demo in a single docker instance1.
Linux is supported, but I still dont have the automated commands feel free to launch bat files in sh .
- Have installed Rancher Desktop (for Oracle Developers) or Docker (public).
- Clone or download project files
- Check for LF in sh files in sources folder
- Double click build_container.bat
- Execute start.bat
- Execute deploy_nosql.bat to install Oracle NoSQL
To stop just double click stop.bat
- Double click delete_image_container.bat
- Launch start.bat
- Execute kv_ping
- Execute kv_admin
- SHOW TOPOLOGY
- Execute kv_sql
- Create Database:
- CREATE TABLE sequence( seqId INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1), host STRING, numTest INTEGER, PRIMARY KEY (seqId) )
- Insert data:
- INSERT INTO sequence (host, numTest) values('localhost',0)
- INSERT INTO sequence (host, numTest) values('192.168.1.254',0)
- Create Database:
- Test by app
- Install Visual Studio Code Oracle NoSQL Extension
- Create a new connection
- Host: http://localhost:8985
- Namespace must be empty
NoSQL Examples from Dario: https://github.com/dario-vega
Java "No Login" Download: https://gist.github.com/wavezhang/ba8425f24a968ec9b2a8619d7c2d86a6
Additional NoSQL Docker: https://github.com/oracle/docker-images/blob/main/NoSQL/README.md
1 Non-Secure Store for Educative purposes.
Regards Adan