Oracle Getting Started
Oracle Database offers market-leading performance, scalability, reliability, and security.

If you have installed Websoft9 Oracle, the following steps is for your quick start
Preparation
-
Get the Internet IP of your Server on Cloud
-
Check your Inbound of Security Group Rule of Cloud Console to ensure the TCP:80 is allowed
-
Connect your Server and get default username and password of Oracle
-
Complete Five steps for Domain if you want to use Domain for Oracle
-
If you want to enable Oracle Database Enterprise or Standard, you should complete the below steps:
-
Login to Oracle Database Repositories and accept Oracle Standard Terms and Restrictions

-
Connect your Server and run the below commands to run Oracle Database by yourself.
cd /data/apps/oracle
docker login container-registry.oracle.com/database/enterprise
docker compose up -d
Oracle Initialization
Steps for you
-
Using local browser to visit the URL
<https://Server's Internet IP:5500/em>, you will enter Oracle EM login pageURL must use https

-
Input your Oracle Database credential(Don't have password?) and login it successfully

-
When you can see Oracle EM, it means you Oracle instance is running.
-
Then you can use sqlplus by below commands
sudo docker exec -it oracle bash
sqlplus SYS AS SYSDBA
Having trouble?
Below is for you to solve problem, and you can contact Websoft9 Support or refer to Troubleshoot + FAQ to get more.
Oracle QuickStart
This task Create new table is for your Oracle QuickStart
-
使用 CloudBeaver 连接 Oracle 数据库
-
创建一个数据表
-
向数据表中增加内容
-
查看新增的数据
Oracle Setup
Oracle Remote access
应用自身已经开启远程访问,只需在云控制台安全组启用 TCP:1521 端口即可。
Reset Oracle password
忘记管理员密码时,运行下面的命令重置密码:
docker exec -it oracle ./setPassword.sh <your_password>
Get SID Or Servce Name
-
进入 sqlplus
docker exec -it oracle sqlplus / as sysdba -
运行查询实例信息的 SQL 命令,instance_name 即所需的信息
SQL> show parameter instance
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
active_instance_count integer
instance_abort_delay_time integer 0
instance_groups string
instance_mode string READ-WRITE
instance_name string XE
instance_number integer 0
instance_type string RDBMS
open_links_per_instance integer 4
parallel_instance_group string
Oracle Clients
Oracle Database 支持多种客户端,有第三方工具,也有官方工具。