Oracle 11g 單實例安裝文檔

来源:http://www.cnblogs.com/kerrycode/archive/2016/08/12/5765282.html
-Advertisement-
Play Games

這裡介紹在Red Hat Enterprise Linux Server release 5.7 (Tikanga)下安裝ORACLE 11.2.0.1.0的過程,本文僅僅是為了寫這樣安裝指導文檔而整理在此。僅供參考! 1:下載對應平臺的ORACLE 11g安裝介質 安裝ORACLE,首先要獲取安裝... ...


這裡介紹在Red Hat Enterprise Linux Server release 5.7 (Tikanga)下安裝ORACLE 11.2.0.1.0的過程,本文僅僅是為了寫這樣安裝指導文檔而整理在此。僅供參考!

 

1:下載對應平臺的ORACLE 11g安裝介質

安裝ORACLE,首先要獲取安裝介質,大部分情況手頭都有相關版本的安裝介質。如果你手頭沒有安裝介質,那麼可以從下麵鏈接獲取對應平臺的ORACLE安裝介質。

http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html

 

強烈建議在安裝ORACLE之前,先看一遍Linux Installation Guides 文檔,畢竟這是最權威、最全面的資料。這樣可以避免你在安裝過程中遇到各類奇奇怪怪的問題,下載鏈接如下所示:

http://docs.oracle.com/cd/E11882_01/nav/portal_11.htm

 

clip_image001

 

2:檢查硬體配置是否滿足要求

 

2.1:記憶體大小要求

官方文檔中,要求物理記憶體至少需要1G,推薦2G或以上配置,如果是伺服器的話,配置肯定比這個高。查看系統記憶體配置,可以使用下麵命令:

檢查物理記憶體

[root@DB-Server ~]# grep MemTotal /proc/meminfo
MemTotal:      3968144 kB
[root@DB-Server ~]# free -m
             total       used       free     shared    buffers     cached
Mem:          3875        710       3164          0         85        317
-/+ buffers/cache:        307       3567
Swap:         5887          0       5887
[root@DB-Server ~]# 

Note: On Linux, the HugePages feature allocates non-swappable memory for large page tables using memory-mapped files. If you enable HugePages, then you should deduct the memory allocated to HugePages from the available RAM before calculating swap space

 

Linux Swap大小要求(這是一個指導值,最好根據Linux版本供應商的文檔設置。如果不太清楚這些,儘量按照下麵要求設置)

clip_image002

 

檢查交換空間(Swap)大小(free命令亦可)

[root@DB-Server ~]# grep SwapTotal /proc/meminfo
 
SwapTotal: 6029304 kB

 

Automatic Memory Management

從Oracle Database 11g開始,自動記憶體管理(Automatic Memory Management)要求更多的共用記憶體(/dev/shm)和文件描述符(file descriptors),共用記憶體的大小應該只是比MEMROY_MAX_TARGET 和MEMROY_TARGET大。

查看共用記憶體大小

 

[root@DB-Server ~]# df -h /dev/shm
Filesystem            Size  Used Avail Use% Mounted on
tmpfs                 1.9G  927M 1012M  48% /dev/shm
[root@DB-Server ~]# 

Starting with Oracle Database 11g, the Automatic Memory Management feature  requires more shared memory (/dev/shm)and file descriptors. The size of the shared  memory must be at least the greater of the MEMORY_MAX_TARGET and MEMORY_TARGET  parameters for each Oracle instance on the computer. If the MEMORY_MAX_TARGET  parameter or the MEMORY_TARGET parameter is set to a nonzero value, and an incorrect  size is assigned to the shared memory, it results in an ORA-00845 error at startup. On  Linux systems, if the operating system /dev/shm mount size is too small for the Oracle  system global area (SGA) and program global area (PGA), it results in an ORA-00845  error.

The number of file descriptors for each Oracle instance must be at least  512*PROCESSES. The limit of descriptors for each process must be at least 512. If file  descriptors are not sized correctly, you see an ORA-27123 error from various Oracle  processes and potentially Linux Error EMFILE (Too many open files)in non-Oracle  processes.

註意:MEMORY_MAX_TARGET and MEMORY_TARGET cannot be used when LOCK_SGA is enabled or with HugePages on Linux.

 

2.2:系統架構要求

 

檢查系統架構是否符合軟體安裝要求。如果是x86的架構,肯定不能運行64位的ORACLE軟體。檢查系統架構使用下麵命令:

[root@DB-Server ~]# uname -m
 
x86_64

 

2.3:磁碟空間要求

At least 1 GB of disk space in the /tmp directory

clip_image003

檢查/tmp目錄大小

#df -h /tmp

檢查磁碟空間:

#df –h

 

3:Checking the Software Requirements

 

Red Hat Enterprise Linux 5 and Oracle Linux 5 on Linux x86 and Linux x86-64 require Update 2.

3.1:操作系統要求

Oracle Database 11g Release 1 (11.1) 要求安裝在下麵版本的操作系統或後續版本中。安裝Oracle資料庫是必須檢查目前操作系統版本是否支持。

■ Asianux Server 3 SP2

■ Asianux Server 4 SP3

■ Oracle Linux 4 Update 7

■ Oracle Linux 5 Update 2 (with Red Hat Compatible Kernel)

■ Oracle Linux 5 Update 5

■ Oracle Linux 6

■ Oracle Linux 6 (with Red Hat Compatible Kernel)

■ Oracle Linux 7

■ Oracle Linux 7 (with the Red Hat Compatible Kernel)

■ Red Hat Enterprise Linux 4 Update 7

■ Red Hat Enterprise Linux 5 Update 2

■ Red Hat Enterprise Linux 6

■ Red Hat Enterprise Linux 7

■ SUSE Linux Enterprise Server 10 SP2

■ SUSE Linux Enterprise Server 11

■ SUSE Linux Enterprise Server 12 SP1

■ NeoKylin Linux Advanced Server 6

 

3.2 操作系統內核要求

 

下麵僅僅列舉了部分內容,更多請見官方文檔

■On Oracle Linux 4 and Red Hat Enterprise Linux 4

2.6.9 or later

■ On Oracle Linux 5 Update 2 with Red Hat Compatible Kernel

2.6.18 or later

■ On Oracle Linux 5 Update 5 with Red Hat Compatible Kernel

2.6.18 or later

■ On Oracle Linux 5 Update 5 with Unbreakable Enterprise Kernel

2.6.32-100.0.19 or later

■ On Oracle Linux 6

2.6.32-100.28.5.el6.x86_64 or later

■ On Oracle Linux 6 with Red Hat Compatible Kernel

2.6.32-71.el6.x86_64 or later

■ On Oracle Linux 7

3.8.13-33.el7uek.x86_64 or later

■ On Oracle Linux 7 with Red Hat Compatible Kernel

3.10.0-54.0.1.el7.x86_64 or later

■ On Red Hat Enterprise Linux 5 Update 2

2.6.18 or later

■ On Red Hat Enterprise Linux 5 Update 5

2.6.18 or later

■ On Red Hat Enterprise Linux 6

2.6.32-71.el6.x86_64 or later

■ On Red Hat Enterprise Linux 7

3.10.0-54.0.1.el7.x86_64 or later

■ On Asianux Server 3

2.6.18 or later

■ On Asianux Server 4

2.6.32-71.el6.x86_64 or later

 

查看操作系統內部版本,可以使用下麵命令,如下所示,內部版本滿足要求。

[root@DB-Server ~]# cat /proc/version
Linux version 2.6.18-274.el5 ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-51)) #1 SMP Fri Jul 8 17:36:59 EDT 2011
[root@DB-Server ~]# uname -r
2.6.18-274.el5

 

 

3.3:ORACLE軟體所要求或依賴的一些包

rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n' binutils \
compat-libstdc++-33 \
elfutils-libelf \
elfutils-libelf-devel \
gcc \
gcc-c++ \
glibc \
glibc-common \
glibc-devel \
glibc-headers \
ksh  \
libaio \
libaio \
libaio-devel \
libgcc \
libstdc++ \
libstdc++-devel \
make \
sysstat
[root@DB-Server ~]# rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n' binutils \
> compat-libstdc++-33 \
> elfutils-libelf \
> elfutils-libelf-devel \
> gcc \
> gcc-c++ \
> glibc \
> glibc-common \
> glibc-devel \
> glibc-headers \
> ksh  \
> libaio \
> libaio \
> libaio-devel \
> libgcc \
> libstdc++ \
> libstdc++-devel \
> make \
> sysstat
binutils-2.17.50.0.6-14.el5 (x86_64)
compat-libstdc++-33-3.2.3-61 (x86_64)
compat-libstdc++-33-3.2.3-61 (i386)
elfutils-libelf-0.137-3.el5 (x86_64)
elfutils-libelf-0.137-3.el5 (i386)
elfutils-libelf-devel-0.137-3.el5 (x86_64)
gcc-4.1.2-51.el5 (x86_64)
gcc-c++-4.1.2-51.el5 (x86_64)
glibc-2.5-65 (x86_64)
glibc-2.5-65 (i686)
glibc-common-2.5-65 (x86_64)
glibc-devel-2.5-65 (x86_64)
glibc-devel-2.5-65 (i386)
glibc-headers-2.5-65 (x86_64)
ksh-20100202-1.el5_6.6 (x86_64)
libaio-0.3.106-5 (x86_64)
libaio-0.3.106-5 (i386)
libaio-0.3.106-5 (x86_64)
libaio-0.3.106-5 (i386)
package libaio-devel is not installed
libgcc-4.1.2-51.el5 (x86_64)
libgcc-4.1.2-51.el5 (i386)
libstdc++-4.1.2-51.el5 (x86_64)
libstdc++-4.1.2-51.el5 (i386)
libstdc++-devel-4.1.2-51.el5 (x86_64)
make-3.81-3.el5 (x86_64)
package sysstat is not installed

 

如上檢測所示,我們需要安裝這些缺少的包:

[root@DB-Server Server]# rpm -ivh  libaio-devel*
warning: libaio-devel-0.3.106-5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:libaio-devel           ########################################### [ 50%]
   2:libaio-devel           ########################################### [100%]
[root@DB-Server Server]# rpm -ivh sysstat*
warning: sysstat-7.0.2-11.el5.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:sysstat                ########################################### [100%]
	   

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在安裝mysql時總是會遇到問題,每次重新安裝都會花很多時間來排查。在網上其實有很多相關的文章,但很多都只講了方法,但沒講具體細節問題,導致無法解決問題。其實有時候知道問題的原因,但總是因為一些細節問題沒有註意到,反覆的嘗試,浪費了很多時間。現在把我安裝過程中遇到的問題以及該註意的問題記錄下來。 環 ...
  • 一、T—SQL 的組成 1、DML(數據操作語言 Data Manipulation Language) 查詢、插入、刪除和修改資料庫中的數據。SELECT、INSERT、UPDATE、DELETE 等; 2、DCL(數據控制語言 Data Control Language) 用來控制存取許可、存取 ...
  • SQL Server的系統存儲過程的名稱以'sp_'開頭,並存放在Resource資料庫中,系統管理員擁有這些存儲過程的使用許可權,可以在任意資料庫中運行系統存儲過程,但執行的結果會反映在當前資料庫中. 1.sp_database:列出伺服器上的所有資料庫信息,包括資料庫名稱和大小 用法:exec s ...
  • 安裝 RVM + 用RVM 安裝 Ruby + 用 Ruby 安裝 Homebrew 包管理器 + 用 Homebrew 安裝 MongoDB ,MongoDB 安裝成功與否的檢驗,MongoDB 配置到 WebStorm 上 ...
  • 【故障處理】ORA-12545: Connect failed because target host or object does not exist 1 BLOG文檔結構圖 2 前言部分 2.1 導讀和註意事項 各位技術愛好者,看完本文後,你可以掌握如下的技能,也可以學到一些其它你所不知道的知識... ...
  • kafka是一個分散式消息隊列,需要依賴ZooKeeper,請先安裝好zk集群 kafka安裝包解壓 配置文件 規劃有3個節點,broker的id應該不同node1為broker.id=0node2為broker.id=1node3為broker.id=2 node1上複製kafka目錄到其他節點 ...
  • 在更新表的主鍵欄位或DELETE數據時,如果遇到ORA-02292: integrity constraint (xxxx) violated - child record found 這個是因為主外鍵關係,下麵藉助一個小列子來描述一下這個錯誤: SQL> create table student ... ...
  • 1. 條件: 1.1 Mysql設置對大小寫敏感 2. 執行下述存儲過程: 1 #call uppercase('庫名') 2 DROP PROCEDURE IF EXISTS uppercase; 3 CREATE PROCEDURE uppercase(IN dbname VARCHAR(200 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...