Oracle 10g 在linux redhat as4 系統安裝圖解全過程
http://blog.chinaunix.net/u/6589/index.html
***ORACLE -RAC****
http://ahcz.szq.blog.163.com/blog/static/13058310220091137311697/
Oracle 10g 在linux redhat 5.3系統安裝圖解全過程
http://hi.baidu.com/alen_double/blog/item/e7f9112ad67822f3e7cd400e.html
LINUX下安裝ORACLE10
轉載請註明出處。具體安裝過程參考了網上很多文章也記不清楚具體有哪些了,謝謝大家.
,安裝相關的軟體包
清單如下:
binutils-2.15.92.0.2-13.EL4
compat-db-4.1.25-9
compat-libstdc++-296-2.96-132.7.2
control-center-2.8.0-12
gcc-3.4.3-22.1.EL4
gcc-c++-3.4.3-22.1.EL44
glibc-2.3.4-2.9
glibc-common-2.3.4-2.9
gnome-libs-1.4.1.2.90-44.1
libstdc++-3.4.3-22.1
libstdc++-devel-3.4.3-22.1
make-3.80-5
pdksh-5.2.14-30
sysstat-5.0.5-1
xscreensaver-4.18-5.rhel4.2
setarch-1.6-1
libaio-0.3.103-3
libXp(as 5)
提示:
你可以通過 rpm -qa | grep XXX 或者 rpm -q XXX 來查詢主機上是否有指定的RPM包
或者你可以通過yum extender圖形工具來查詢,安裝如下:#yum install yumex
2,編輯vi /etc/sysctl.conf檔案,末尾新增如下行(原檔案如有重複的,遮蔽掉)
kernel.shmall = 2097152
kernel.shmmax = 268435456(此處要改)
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default=262144
net.core.rmem_max=262144
net.core.wmem_default=262144
net.core.wmem_max=262144
執行命令生效:/sbin/sysctl –p
3,編輯vi /etc/security/limits.conf檔案,在末尾新增下列行
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
4,建立相關的安裝目錄
mkdir /u01
mkdir /u01/app
mkdir /u01/app/oracle
5,建立dba,oinstall組與oracle使用者
#groupadd oinstall
#groupadd dba
#useradd -g oinstall -G dba -d /u01/app/oracle oracle -s bin/bash
#passwd oracle
#chown -R oracle.oinstall /u01
6,執行命令,使其進入圖形安裝模式
xhost +
7,切換到oracle使用者 (su - oracle)
編輯.bash_profile檔案,新增如下行,設定oracle使用者的環境變數
TMP=/tmp;export TMP
TMPDIR=$TMP;export TMPDIR
ORACLE_BASE=/u01/app/oracle;export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1;export ORACLE_HOME
ORACLE_SID=orcl;export ORACLE_SID
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
PATH=$ORACLE_HOME/bin:$PATH; export PATH
執行命令,立即生效:source /u01/app/oracle/.bash_profile
8,解壓oracle安裝檔案
tar -xvzf 10201_database_linux32.tar.gz
9,安裝oracle
執行命令./runInstaller
10,下面是安裝過程圖解
安裝完成之後,再執行兩個指令碼就可以了:
使用root使用者來執行該指令碼,分別執行/u01/app/oracle/oraInventory/orainstRoot.sh和/u01/app/oracle/product/10.2.0/db_1/root.sh
退出安裝介面
切換到oracle使用者進入SQL操作介面:
Sqlplus / as sysdba (sqlplus / nolog)
SQL>
檢視是否可以進入web介面管理oracle10g資料庫
執行命令:emctl status dbconsole
啟動web介面:emctl start dbconsole
停止web介面:emctl stop dbconsole
(預設安裝完oracle之後就已經啟動oracle 10g 的web的管理介面)
在火狐瀏覽器輸入http://127.0.0.1 :1158/em進入web操作介面
本文來自CSDN部落格,轉載請標明出處:http://blog.csdn.net/tomliks/archive/2010/02/05/5291578.aspx
相關文章
- redhat 5.4下安裝MYSQL全過程RedhatMySql
- oracle 10g在linux下的安裝及簡單命令Oracle 10gLinux
- Linux系統下自行編譯安裝MySQL及基礎配置全過程解析Linux編譯MySql
- RedHat 7.6作業系統安裝Redhat作業系統
- 關於安裝VMware以及Linux作業系統過程Linux作業系統
- 在Linux中,掛載和解除安裝檔案系統過程是什麼?Linux
- Linux(01):RedHat 7.6 安裝LinuxRedhat
- ISO 映象安裝oracle 10gOracle 10g
- RUST 在linux 系統的安裝RustLinux
- 理論+實驗 詳解Oracle安裝部署過程Oracle
- 在Linux(Redhat/CentOS)下安裝MySQL之yum(rpm)線上安裝方式LinuxRedhatCentOSMySql
- 在Linux(Redhat/CentOS)下安裝MySQL之yum(rpm)離線安裝方式LinuxRedhatCentOSMySql
- ESXI 6.7 系統安裝詳細過程
- 【配置上線】Oracle資料庫Linux系統下安裝(圖形介面)Oracle資料庫Linux
- Ubuntu 16.04 安裝 MySQL 8.0 全過程UbuntuMySql
- [重慶思莊每日技術分享]-Redhat Linux 6.5安裝ORACLE ASMLIBRedhatLinuxOracleASM
- Oracle 18c rpm 安裝及解析安裝過程Oracle
- 在Oracle Linux 7.1上安裝DockerOracleLinuxDocker
- Linux中如何安裝RabbitMQ?在linux系統中安裝Rabbitmq的方法LinuxMQ
- 八、Oracle11g R2客戶端安裝圖文詳解過程Oracle客戶端
- RabbitMQ安裝過程詳解MQ
- RedHat上靜默安裝Oracle11gRedhatOracle
- redhat7.2靜默安裝Oracle11.2.0.4RedhatOracle
- redhat7.6安裝Oracle11G RACRedhatOracle
- Linux系統安裝Linux
- innobackupex命令備份全過程圖解圖解
- Oracle:Redhat 7 + Oracle RAC 11g 安裝 bug 總結OracleRedhat
- 記錄NLTK安裝使用全過程--pythonPython
- Linux系統啟動過程Linux
- Centos7 系統安裝 Oracle 無法調出圖形安裝介面問題解決CentOSOracle
- oracle linux 7 安裝圖形化介面OracleLinux
- RedHat 7.7 平臺安裝19c(19.3) RAC 詳細操作過程Redhat
- CentOS 8.0.1905 linux伺服器系統安裝與配置圖解教程CentOSLinux伺服器圖解
- windows2008R2安裝oracle 10gWindowsOracle 10g
- 如何判斷Linux系統安裝在VMware上?Linux
- 在Linux系統安裝flash的步驟方法Linux
- Linux安裝oracleLinuxOracle
- Linux系統安裝——Centos 7.6安裝LinuxCentOS