Linux系統(tǒng)(X64)安裝Oracle11g完整安裝圖文教程另附
導讀:1建站知識因項目需求,需要在64位linux系統(tǒng)中安裝Oracle 11g,在網(wǎng)上查了很多內容,結合自己的實際經(jīng)驗,終于安裝成功,記錄下來,分享給有需要的同志們,不謝哈!公司網(wǎng)站建設如何seo優(yōu)化推廣網(wǎng)站。
因項目需求,需要在64位linux系統(tǒng)中安裝Oracle 11g,在網(wǎng)上查了很多內容,結合自己的實際經(jīng)驗,終于安裝成功,記錄下來,分享給有需要的同志們,不謝哈!^_^
一、修改操作系統(tǒng)核心參數(shù)
在Root用戶下執(zhí)行以下步驟:
1)修改用戶的SHELL的限制,修改/etc/security/limits.conf文件
輸入命令:vi /etc/security/limits.conf,按i鍵進入編輯模式,將下列內容加入該文件。
oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536編輯完成后按Esc鍵,輸入“:wq”存盤退出
2)修改/etc/pam.d/login 文件,輸入命令:vi /etc/pam.d/login,按i鍵進入編輯模式,將下列內容加入該文件。
session required /lib/security/pam_limits.so session required pam_limits.so編輯完成后按Esc鍵,輸入“:wq”存盤退出
3)修改linux內核,修改/etc/sysctl.conf文件,輸入命令: vi /etc/sysctl.conf ,按i鍵進入編輯模式,將下列內容加入該文件
fs.file-max = 6815744 fs.aio-max-nr = 1048576 kernel.shmall = 2097152 kernel.shmmax = 2147483648 kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 net.ipv4.ip_local_port_range = 9000 65500 net.core.rmem_default = 4194304 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 1048576編輯完成后按Esc鍵,輸入“:wq”存盤退出
4)要使 /etc/sysctl.conf 更改立即生效,執(zhí)行以下命令。 輸入:sysctl -p 顯示如下:
linux:~ # sysctl seo網(wǎng)站排名優(yōu)化軟件-p net.ipv4.icmp_echo_ignore_broadcasts = 1 net.ipv4.conf.all.rp_filter = 1 fs.file-max = 6815744 fs.aio-max-nr = 1048576 kernel.shmall = 2097152 kernel.shmmax = 2147483648 kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 net.ipv4.ip_local_port_range = 9000 65500 net.core.rmem_default = 4194304 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 10485765)編輯 /etc/profile ,輸入命令:vi /etc/profile,按i鍵進入編輯模式,將下列內容加入該文件。
if [ $USER = "oracle" ]; then if [ $SHELL = "/bin/ksh" ]; then ulimit -p 16384 ulimit -n 65536 else ulimit -u 16384 -n 65536 fi fi編輯完成后按Esc鍵,輸入“:wq”存盤退出
6)創(chuàng)建相關用戶和組,作為軟件安裝和支持組的擁有者。
創(chuàng)建Oracle用戶和密碼,輸入命令:
useradd -g oinstall -g dba -m oracle passwd oracle聲明: 本文由我的SEOUC技術文章主頁發(fā)布于:2023-05-22 ,文章Linux系統(tǒng)(X64)安裝Oracle11g完整安裝圖文教程另附主要講述完整,標簽,Linux網(wǎng)站建設源碼以及服務器配置搭建相關技術文章。轉載請保留鏈接: http://www.bifwcx.com/article/web_4466.html