Linux5 3 安裝oracle11g 相關配置

2021-06-19 06:14:55 字數 3983 閱讀 1190

修改主機名稱

[root@localhost ~]#hostname

[root@localhost ~]#vi /etc/host

修改網路

[root@localhost ~]#vi /etc/sysconfig/network

[root@localhost ~]#vi /etc/sysconfig/network-scripts/ifcfg-eth0

------

bootproto=none/dhcp

ipaddr=192.168.0.103

netmask=255.255.255.0

------

service network restart

/etc/init.d/network restart

檢查oracle資料庫所需要的linux軟體包

[root@localhost ~]# rpm -q gcc make binutils openmotif setarch compat-db compat-gcc compat-gcc-c++ compat-libstdc++ compat-libstdc++-devel

gcc-4.1.2-44.el5

make-3.81-3.el5

binutils-2.17.50.0.6-9.el5

package openmotif is not installed

setarch-2.0-1.1

package compat-db is not installed

package compat-gcc is not installed

package compat-gcc-c++ is not installed

package compat-libstdc++ is not installed

package compat-libstdc++-devel is not installed

放入光碟

掛載光碟機

[root@localhost ~]# mount /dev/cdrom /media

安裝ftp服務

[root@localhost ~]#cd /media/server

[root@localhost ~]#rpm -ivh vsftpd*

[root@localhost ~]#chkconfig vsftpd on

[root@localhost ~]#service vsftpd start

[root@localhost ~]# cp -r /media/server /var/ftp/pub

搭建yum

[root@localhost ~]# createrepo /var/ftp/pub/server/

建立倉庫檔案

[root@localhost ~]#cd /etc/yum.repos.d

[root@localhost ~]#vi yum.repo

[base]

name=base

# 192. 168. 0. 6是你的yum源位址

baseurl=ftp://192. 168. 0. 6/pub/server

# 是否開啟源

enabled=1

#是否驗證. 可不要

gpgcheck=1

#驗證的金鑰. 可不要,如果想要的話,可以在檔案寫完之後執行rpm --import  /etc/pki/rpm-gpg/rpm-gpg-key-redhat-release

gpgkey=file:///etc/pki/rpm-gpg/rpm-gpg-key-redhat-release

[root@localhost ~]# yum install 軟體名

檢查linux系統記憶體大小

[root@localhost ~]# grep memtotal /proc/meminfo

檢查linux系統交換空間大小

[root@localhost ~]# grep swaptotal /proc/meminfo

檢查硬碟大小

[root@localhost ~]# df -h

設定linux系統配置檔案引數

# vi /etc/selinux/config

確保存在以下內容selinux=disabled

[root@localhost ~]# vi /etc/sysctl.conf

末尾增加

fs.aio-max-nr = 1048576

fs.file-max = 6815744

kernel.shmall = 2097152

kernel.shmmax = 536870912

kernel.shmmni = 4096

kernel.sem = 250 32000 100 128

net.ipv4.ip_local_port_range = 9000 65500

net.core.rmem_default = 262144

net.core.rmem_max = 4194304

net.core.wmem_default = 262144

net.core.wmem_max = 1048586

注:kernel.shmmax這個值,該引數應該是物理記憶體的一半(位元組)

[root@localhost ~]# sysctl -p 應用以上引數使引數生效

[root@localhost ~]# vi /etc/security/limits.conf

末尾增加

* soft nproc 2047

* hard nproc 16384

* soft nofile 1024

* hard nofile 65536

# vi /etc/pam.d/login

末尾增加

session required /lib/security/pam_limits.so

session required pam_limits.so

//建立安裝oracle使用者組

[root@localhost /]# groupadd oinstall

[root@localhost /]# groupadd dba

[root@localhost /]# useradd -m -g oinstall -g dba oracle

[root@localhost /]# passwd oracle

建立安裝oralce所需目錄

//設定使用者環境變數

root@localhost /]# vi /home/oralce/.bash_profile

#oracle settings

export path

export tmp=/tmp

export tmpdir=$tmp

export oracle_home=$oracle_base/product/11.2.0/db_1

export oracle_sid=orcl

export oracle_term=xterm

export path=/usr/sbin:$path

export path=$oracle_home/bin:$path

export ld_library_path=$oracle_home/lib:/lib:/usr/lib:/usr/local/lib:/usr/x11r6/lib/  

export classpath=$oracle_home/jre:$oracle_home/jlib:$oracle_home/rdbms/jlib

export nls_lang="simplified chinese_china.zhs16gbk"

if [ $user = "oracle" ]; then

if [ $shell = "/bin/ksh" ]; then

ulimit -p 16384

ulimit -n 65536

else

ulimit -u 16384 -n 65536

fifi

Centos5 3 oracle11g 安裝筆記

vi etc sysctl.conf kernel.shmall 2097152 kernel.shmmax 2147483648 kernel.shmmni 4096 kernel.sem 250 32000 100 128 net.ipv4.ip local port range 1024 65...

linux下為php5 3安裝Imagick擴充套件

imagick是乙個php的擴充套件,它呼叫imagemagick提供的api來進行的操作 imagemagick是一套軟體系列,主要用於的建立 編輯以及轉換等,詳細的解釋見imagemagick的官方 與gd的效能要高很多,如果是在處理大量的時更加能體現imagemagick的效能。一 安裝ima...

linux 安裝 oracle 記錄

需要給硬碟分割槽。使用fdisk 命令,然後mkfs 做檔案系統,最後使用mount進行掛載。修改 etc fstab自動掛載 win上安裝xming,linux export display winip 0.0 如果顯示出來的字型是方框,把linux 的lang設定為en us.utf 8 xmi...