AIX 6.1上安装oracle 11gv1
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
一、系统准备
1.1、操作系统版本需求
执行命令oslevel –s 来查看
# oslevel –s
1.2、内存需求
执行命令lsattr -E -l sys0 -a realmem 显示内存大小# lsattr –El sys0 -a realmem
1.3、SWAP空间需求
执行命令lsps –a 查看SWAP空间大小
#lsps –a
1.4、确认操作系统位数
执行getconfHARDWARE_BITMODE 命令查看
# getconf HARDWARE_BITMODE
1.5、软件包需求
AIX 61系统需要如下软件包
bos.adt.base
bos.adt.lib
bos.adt.libm
bos.perf.libperfstat 6.1.2.1 or later
bos.perf.perfstat
bos.perf.proctools
xlC.aix61.rte:10.1.0.0 or later
执行命令lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.libperfstatbos.perf.perfstat bos.perf.proctools xlC.aix61.rte 查看软件包安装情况
# lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.libperfstatbos.perf.perfstat
bos.perf.proctools xlC.aix61.rte
Fileset Level State Description
----------------------------------------------------------------------------
Path: /usr/lib/objrepos
bos.adt.base 6.1.6.1 COMMITTED Base Application Development
Toolkit
bos.adt.lib 6.1.2.0 COMMITTED Base Application Development
Libraries
bos.adt.libm 6.1.6.0 COMMITTED Base Application Development
Math Library
bos.perf.libperfstat 6.1.6.1 COMMITTED Performance StatisticsLibrary
Interface
bos.perf.perfstat 6.1.6.0 COMMITTED Performance Statistics
Interface
bos.perf.proctools 6.1.6.0 COMMITTED Proc Filesystem Tools
xlC.aix61.rte 11.1.0.1 COMMITTED XL C/C++ Runtime forAIX 6.1
Path: /etc/objrepos
bos.adt.base 6.1.6.1 COMMITTED Base Application Development
Toolkit
bos.perf.libperfstat 6.1.6.1 COMMITTED Performance StatisticsLibrary
Interface
bos.perf.perfstat 6.1.6.0 COMMITTED Performance Statistics
Interface
1.6、系统补丁需求
11gR2需要以下补丁,执行命令instfix -i查询
instfix -i | grep IZ41855
instfix -i | grep IZ51456
instfix -i | grep IZ52319
1.7、创建用户组和用户
使用smitty mkgroup 命令创建用户组dba和oinstall,组号分别为301和302;
使用smitty mkuser命令进行创建用户oracle
useradd -d /home/oracle -m -u 401 -g oinstall -G dba oracle
# passwd oracle
Changing password for "oracle"
oracle's New password:
Enter the new password again:
1.8、增加oracle用户shell能力
查看oracle用户shell能力
lsuser -a capabilities oracle
增加oracle用户shell能力
chusercapabilities=CAP_NUMA_ATTACH,CAP_BYPASS_RAC_VMM,CAP_PROPAGAT E oracle
1.9、系统参数配置
1.9.1、配置进程数
执行命令smitty chgsys 修改,将PROCESSES修改为16384
1.9.2、配置grid用户和oracle用户Shell权限
修改/etc/security/limits文件
default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1
1.9.3、查看异步aio数
执行命令ioo -oaio_maxreqs
1.9.4、配置网络参数
查看参数
# no -a | fgrepephemeral
tcp_ephemeral_high = 65535
tcp_ephemeral_low = 32768
udp_ephemeral_high = 65535
udp_ephemeral_low = 32768
配置参数
# no -p –o tcp_ephemeral_low=9000 -o tcp_ephemeral_high=65500 Settingtcp_ephemeral_low to 9000
Settingtcp_ephemeral_low to 9000 in nextboot file
Settingtcp_ephemeral_high to 65500
Settingtcp_ephemeral_high to 65500 in nextboot file
# no -p –o udp_ephemeral_low=9000 -o udp_ephemeral_high=65500 Settingudp_ephemeral_low to 9000
Settingudp_ephemeral_low to 9000 in nextboot file
Settingudp_ephemeral_high to 65500
Settingudp_ephemeral_high to 65500 in nextboot file
1.9.5、配置主机虚拟内存
vmo -p -o minperm%=3
vmo -p -o maxperm%=90
vmo -p -o maxclient%=90
vmo -p -o lru_file_repage=0
vmo -p -o strict_maxclient=1
vmo -p -o strict_maxperm=0
1.9.6、增加操作系统块分配大小
chdev -l sys0 -a ncargs='128'
如果报错
Method error(/usr/lib/methods/chggen):
0514-018 The values specified for thefollowing attributes
are not valid:
ncargs ARG/ENV list size in 4Kbyte blocks
则使用命令smit chgsys 查看ARG/ENV列的数值。
1.9.7、增加操作系统最大进程数
使用命令smit chgsys,将“Maximum number of PROCESSES allowed per user”列修改为16384
1.9.8、创建oracle用户
# mkgroup id=600 oinstall
# mkgroup id=601 dba
# mkuser id=800 pgrp=oinstall groups=dba oracle
1.10、配置Oracle用户环境变量
Oracle用户
export ORACLE_BASE=/home/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_2
export ORACLE_SID=orcl
export PATH=$ORACLE_HOME/bin:$PATH
配置完成后./.profile使之生效
1.11、创建Oracle目录结构
Root用户登录执行:在home下创建
# mkdir /oracle
# mkdir /oracle/product
# mkdir /oracle/product/11.2.0
# mkdir /oracle/product/11.2.0/dbhome_2
# chown -R oracle:dba /home/oracle
# chmod -R 775 /home
二、数据库软件安装
上传数据库软件的压缩包时要注意,不能在win下解压在压缩,容易造成数据文件丢失或者字符集不正确而导致不能正常安装,所以要尽量上传完整的压缩包并在AIX系统下进行解压以保证安装文件的正确性和完整性;并且要保证用二进制的方式上传。
(另外,解压oracle11g后会自带unzip的软件包,在database/install下,把unzip copy 到/usr/bin目录下就可以直接用unzip解压了)
注:在安装之前,oracle用户如果在终端远程安装需要在.profile中的display添加本机的IP 不同的服务器要在同一台机器上显示配置的端口号不一样,也就是0.0,1.0,2.0.。
上传并解压oracle11g 的压缩包
2.1、启动安装界面
以Oracle用户登录系统,在database下
在root下执行./rootpre.sh命令,然后在执行./runInstaller 命令,会提示是否在root下执行了rootpre.sh输入y并按enter
$ ./runInstaller
********************************************************************************
Your platform requires the root user to perform certain pre-installation
OS preparation. The root user shouldrun the shell script 'rootpre.sh' before
you proceed with Oracle installation. rootpre.sh can be found at the top level
of the CD or the stage area.
Answer 'y' if root has run 'rootpre.sh' so you can proceed with Oracle
installation.
Answer 'n' to abort installation and then ask root to run 'rootpre.sh'.
********************************************************************************
Has 'rootpre.sh' been run by root? [y/n] (n)
y
Starting Oracle Universal Installer...
Checking Temp space: must be greater than 190 MB. Actual 5072 MB Passed Checking swap space: must be greater than 150 MB. Actual 16384 MB Passed Checking monitor: must be configured to display at least 256 colors. Actual 16777216 Passed
Preparing to launch Oracle Universal Installer
from/tmp/OraInstall2011-09-22_05-32-00PM. Please wait ...$
2.2、更新方式询问
询问是否不填写E-MAIL地址,去掉对勾,点击next,弹出错误提示,点击YES
2.3、选择安装的类型
选择安装的同时是否安装数据库,选择第二项:仅安装数据库软件,点next
2.4、选择安装的类型
选择第一项:单实例数据库安装,点击next
2.5、选择安装的语言选择英语和简体中文
2.6、选择数据库要安装的版本选择第一项企业版
2.7、指定软件安装的目录
由于此截屏是第一次安装时所做,创建数据库时出错又重新安装所以目录跟之前的不对应,在这里稍作解释,只要环境变量.profile里的对,oracle11g能通过这个选项来选择要安装的路径即使不创建目录也会有默认的路径
2.8、指定软件产品清单目录(保持默认)
2.9、指定操作系统用户组(保持默认)
2.10、产品预安装检查同样提示缺少操作系统补丁包,选择忽略
2.11、安装信息概况,点击Finish
2.12、开始安装
2.13、执行完成脚本以root用户登录执行
执行第一个脚本的结果:执行第二个脚本的结果:
2.13、安装完成
三、配置监听程序
3.1、启动配置界面
以oracle用户登录,执行命令netca 3.2、选择操作类型
3.3、指定监听名称
3.4、选择网络协议(保持默认)
3.5、选择监听端口号3.6、完成配置
单击Finish完成配置
四、安装数据库
4.1、启动安装界面
以oracle用户登录系统,执行dbca命令4.2、选择操作类型
4.3、选择数据库类型
4.4、指定数据库名
4.5、是否配置EnterpriseManager
4.6、指定数据库SYS用户密码密码为:a
这里提示密码不安全,选择YES忽略
4.7、选择数据库文件的存储类型
4.8、指定闪回区及归档模式
4.9选择示例方案
4.10、指定数据库内存分配4.11、指定数据库字符集
4.12、配置概况
4.13、开始安装
4.14、完成安装
4.15、连接数据库
用命令sqlplus / as sysdba 是以sysdba的身份登录:
如果想以scott用户连接,需要先在sysdba下对scott用户解锁,命令是:alter user scott account unlock identified by tiger;
4.16、关闭和启动数据库
启动和关闭都需要在sysdba下才可执行,关闭数据库可以用命令shutdown immediate进行一致性关闭(shutdown abort为非一致性关闭)
可以通过select status from v$instance;来查看实例的状态,
启动数据库实例用命令startup,并用select status from v$instance来查看实例的状态:
4.17 验证数据库
在数据库中进行查询表操作,创建表
在scott用户下查询所有表
查询dept表中的内容:
创建表test 内容为表dept中的内容:
五.Oracle的卸载5.1 删除数据库
在oracle用户下dbca选择删除数据库
提示菜单点击YES
点击OK
5.2删除oracle的安装目录
删除/etc/oratab以及/etc/*.loc如果要彻底删除,需要删除.profile文件和用户组,并删除/home下的oraInventory,最后再重启机器。