registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g latest 3fa112fd3642 4 years ago 6.85gb2、建立執行oracle容器
[root@izbp13sno1lc2yxlhjc4b3z ~]#docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
3、配置oracle
進入oracle容器,配置環境變數。
分別在在/etc/profile和/home/oracle/.bashrc檔案末尾新增環境變數。
在/etc/profile設定oracle環境變數:
[root@izbp13sno1lc2yxlhjc4b3z ~]# docker exec -it oracle11g bash
[oracle@753d0436c2f1 /]$ vi /etc/profile
# /etc/profile
...export oracle_sid=helowin
export path=$oracle_home/bin:$path
在/home/oracle/.bashrc設定oracle環境變數:
[oracle@753d0436c2f1 /]$ vi /home/oracle/.bashrc
# .bashrc
...export oracle_sid=helowin
export path=$oracle_home/bin:$path
測試資料庫連線:
[oracle@753d0436c2f1 /]$ sqlplus /nolog
sql*plus: release 11.2.0.1.0 production on thu may 14 20:57:07 2020
sql> conn / as sysdba
connected.
sql>
4、修改oracle使用者密碼
修改sys、system等管理員賬戶密碼
sql> alter user system identified by system;
user altered.
sql> alter user sys identified by sys;
user altered.
sql>
檢視oracle資料庫狀態、例項名等資訊:
[oracle@753d0436c2f1 /]$ lsnrctl status
lsnrctl for linux: version 11.2.0.1.0 - production on 14-may-2020 21:00:56
connecting to (description=(address=(protocol=ipc)(key=extproc1521)))
status of the listener
------------------------
alias listener
version tnslsnr for linux: version 11.2.0.1.0 - production
start date 12-may-2020 09:25:18
uptime 2 days 11 hr. 35 min. 38 sec
trace level off
security on: local os authentication
snmp off
listening endpoints summary...
(description=(address=(protocol=ipc)(key=extproc1521)))
(description=(address=(protocol=tcp)(host=753d0436c2f1)(port=1521)))
services summary...
service "helowin" has 1 instance(s).
instance "helowin", status ready, has 1 handler(s) for this service...
service "helowinxdb" has 1 instance(s).
instance "helowin", status ready, has 1 handler(s) for this service...
the command completed successfully
根據狀態資訊可知,例項名為:helowin。
5、plsql客戶端連線
Oracle 1 安裝和解除安裝
oracle的環境 將兩個壓縮包一起解壓到電腦某個位置的同乙個資料夾 雙擊setup.exe進行安裝 這裡電子郵件可以不用填,接收安全更新勾選掉 安裝的時候選擇乙個位置,還有口令,接下來基本next就可以完成 1 開始 設定 控制面板 管理工具 服務 停止所有oracle服務。2 開始 程式 ora...
Redhat及其衍生版安裝oracle11g教程
hmxgg 126.comqq 383024278 我會盡可能地解決問題和更新此文件下系統是否安裝過這些包,如果沒在對應的系統光碟查詢對應的 rpm包並安裝。檢查工作 依次執行 rpm qa grep下面軟體包 binutils 2.17.50.0.6 compat libstdc 33 3.2.3...
學習筆記 Oracle 1 安裝及配置
win7旗艦版安裝oracle 11gr1 database oracle使用者登陸 sqlplus sys manager testdb as sysdba sys預設密碼登陸 sqlplus testdb as sysdba 系統賬號登陸,免密碼 sqlplus scott tiger test...