Git Product home page Git Product logo

vagrant-oracle-database-23c-free's Introduction

vagrant-oracle-database-23c-free

Vagrant + Oracle Linux 8 + Oracle Database 23c Free

Download

Download Oracle Database 23c Free and place downloaded file in the same directory as the Vagrantfile.

  • oracle-database-free-23c-1.0-1.el8.x86_64.rpm

Configuration

Copy the dotenv.sample file to a new file named .env and modify the contents as needed.

# SYS, SYSTEM and PDBADMIN password
ORACLE_PASSWORD=oracle
# Specifies whether or not to add the Sample Schemas to your database
ORACLE_SAMPLESCHEMA=TRUE

Provision

When you run vagrant up, the following will work internally.

  • Download and boot Oracle Linux 8
  • Install Oracle Database 23c Free
  • Creating and configuring an Oracle Database
  • Set environment variables
  • Install rlwrap and set alias
  • Configure automating shutdown and startup
  • Install sample schemas
vagrant up

Example of Use

Connect to the guest OS.

vagrant ssh

Connect to CDB root and confirm the connection.

sqlplus system/oracle
SHOW CON_NAME

Connect to PDB and confirm the connection. If you have sample schemas installed, browse to the sample table.

sqlplus system/oracle@localhost/FREEPDB1
SHOW CON_NAME
-- If you have sample schemas installed
SELECT JSON_OBJECT(*) FROM hr.employees WHERE rownum <= 3;
-- SELECT on expressions no longer requires FROM dual
SELECT 2*3;

Author

Shinichi Akiyama

License

MIT License

vagrant-oracle-database-23c-free's People

Contributors

shakiyam avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.