Oracle安裝前的環境配置指令碼

來源:互聯網
上載者:User

傻瓜式,最簡單的寫法

Oracle_database_linux32.zip為安裝包的名字

 

#!/bin/bash

################### yum and rpm ###################

touch /etc/yum.repos.d/1.repo

echo "[1]" >/etc/yum.repos.d/1.repo

echo "name=1

baseurl=file:///mnt/Server

gpgcheck=0" >>/etc/yum.repos.d/1.repo

yum install -y gcc*

yum -y install binutils compat-db control-center glibc libXp libstdc++ libstdc++-devel make openmotif sysstat

 

#################### language #########################

echo 'LANG="zh_CN.UTF-8"' > /etc/sysconfig/i18n

echo 'LANG="en_US.UTF-8"' >> /etc/sysconfig/i18n

echo 'SYSFONT="latarcyrheb-sun16"' >> /etc/sysconfig/i18n

 

############### can shu ################################

sed -i '/kernel.shmall =/d' /etc/sysctl.conf

sed -i '/kernel.shmmax =/d' /etc/sysctl.conf

sed -i '/kernel.sem =/d' /etc/sysctl.conf

sed -i '/fs.file-max =/d' /etc/sysctl.conf

sed -i '/net.ipv4.ip_local_port_range =/d' /etc/sysctl.conf

sed -i '/net.core.rmem_default =/d' /etc/sysctl.conf

sed -i '/net.core.rmem_max =/d' /etc/sysctl.conf

sed -i '/net.core.wmem_default =/d' /etc/sysctl.conf

sed -i '/net.core.wmem_max =/d' /etc/sysctl.conf

 

echo "kernel.shmall = 2097152

kernel.shmmax = 2147483648

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"

sed -i 's/5.6/3/g' /etc/RedHat-release

####### 這裡使用替換,但是失敗,所以只能刪除再添加 ######

/sbin/sysctl -p

 

#################### ren zheng mo kuai ###################

echo 'oracle soft nproc 2047

oracle hard nproc 16384

oracle soft nofile 1024

oracle hard nofile 65536' >> /etc/security/limits.conf

 

echo 'session required /lib/security/pam_limits.so' >> /etc/pam.d/login

 

################## yong hu huan jing #########################

groupadd oinstall

groupadd dba

useradd -g oinstall -G dba oracle

passwd oracle <<EOF

123

123

EOF

hostname sq1

echo "192.168.10.10 sq1" >> /etc/hosts

mkdir -p /oracle/app

chmod 777 /oracle

chown -R oracle.oinstall /oracle

 

su - oracle <<!

echo "ORACLE_BASE=/oracle/app

ORACLE_HOME=$ORACLE_BASE/oracle/product/10.2.0/db_1

ORACLE_SID=TEST

PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib

LANG=en_US.UTF-8

export ORACLE_BASE ORACLE_HOME ORACLE_SID PATH LD_LIBRARY_PATH LANG" >> .bash_profile

source .bash_profile

cd /tmp

unzip oracle_database_linux32.zip

exit

!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.