当前位置:  数据库>oracle

AIX上安装Oracle 10201

    来源: 互联网  发布时间:2017-05-23

    本文导语: 描述在AIX上安装Oracle10201的过程。 首先检查系统是否满足数据库安装需要: # /usr/sbin/lsattr -E -l sys0 -a realmem realmem 32604160 Amount of usable physical memory in Kbytes False # /usr/sbin/lsps -a Page Space      Physical Volume  Volume Group Size %Used Active  Au...

描述在AIX上安装Oracle10201的过程。

首先检查系统是否满足数据库安装需要:

# /usr/sbin/lsattr -E -l sys0 -a realmem

realmem 32604160 Amount of usable physical memory in Kbytes False

# /usr/sbin/lsps -a

Page Space      Physical Volume  Volume Group Size %Used Active  Auto  Type Chksum

hd6            hdisk0            rootvg      16384MB    1  yes  yes    lv    0

# df -k /tmp

Filesystem    1024-blocks      Free %Used    Iused %Iused Mounted on

/dev/hd3          3145728  3140388    1%      69    1% /tmp

# df -k

Filesystem    1024-blocks      Free %Used    Iused %Iused Mounted on

/dev/hd4          3145728  2608568  18%    10939    2% /

/dev/hd2          4194304  1991084  53%    47242    10% /usr

/dev/hd9var      2097152  1764848  16%    8269    3% /var

/dev/hd3          3145728  3140388    1%      69    1% /tmp

/dev/fwdump      1048576  1048080    1%        5    1% /var/adm/ras/platform

/dev/hd1          2097152  2096488    1%        5    1% /home

/dev/hd11admin      262144    261744    1%        5    1% /admin

/proc                  -        -    -        -    -  /proc

/dev/hd10opt      4194304  3945520    6%    8748    1% /opt

/dev/livedump      262144    261776    1%        4    1% /var/adm/ras/livedump

# /usr/bin/getconf HARDWARE_BITMODE

64

系统内容要求至少1G内存,SWAP分区大小对于大于8G的内存需要75%内存大小,当前配置为50%内存大小,虽然足够使用,但是Oracle检查可能会报错,需要忽略检查错误才行。

要求AIX操作系统在5.2以上:

# oslevel -r

6100-06

当前为6,满足要求。

检查操作系统文件集:

# lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.perfstat bos.perf.libperfstat bos.perf.proctools

  Fileset                      Level  State      Description     

 ----------------------------------------------------------------------------

Path: /usr/lib/objrepos

  bos.adt.base              6.1.6.0  COMMITTED  Base Application Development

                                                Toolkit

  bos.adt.lib                6.1.2.0  COMMITTED  Base Application Development

                                                Libraries

  bos.adt.libm              6.1.5.0  COMMITTED  Base Application Development

                                                Math Library

  bos.perf.libperfstat      6.1.6.0  COMMITTED  Performance Statistics Library

                                                Interface

  bos.perf.perfstat          6.1.6.0  COMMITTED  Performance Statistics

                                                Interface

  bos.perf.proctools        6.1.6.0  COMMITTED  Proc Filesystem Tools

Path: /etc/objrepos

  bos.adt.base              6.1.6.0  COMMITTED  Base Application Development

                                                Toolkit

  bos.perf.libperfstat      6.1.6.0  COMMITTED  Performance Statistics Library

                                                Interface

  bos.perf.perfstat          6.1.6.0  COMMITTED  Performance Statistics

                                                Interface

对于6来说,版本足够高,因此安装文档上描述的补丁集不再需要。

# cat /etc/netsvc.conf | grep hosts

# hosts = value [, value]

# Use one or more of the following values for the hosts keyword:

#            The auth option is only valid when used in conjunction with a service value for the hosts keyword.

# local      Searches the local /etc/hosts file for resolving names

# local4      Searches the local /etc/hosts file for resolving only IPv4 addresses

# local6      Searches the local /etc/hosts file for resolving only IPv6 addresses

# hosts = nis=auth, bind6, dave4

# hostname

ZHY-DT-1

# domainname

# cat /etc/hosts | grep `eval hostname`

172.20.20.1    ZHY-DT-1

验证系统是否仅使用/etc/hosts作为唯一验证名次的方式。

利用smit security创建oinstall、dba组。

利用smit security创建oracle用户,指定primary用户组oinstall,GROUPSET为dba,指定用户创建目录/home/oracle

# id oracle

uid=202(oracle) gid=201(oinstall) groups=202(dba)

# passwd oracle

确认用户创建成功并修改密码。

# id nobody

uid=4294967294(nobody) gid=4294967294(nobody)

确认nobody用户存在。

利用smit chuser命令修改oracle用户的shell配置:Soft FILE size、Soft CPU time、Soft DATA segment和Soft STACK size的限制都为-1。

利用smit chgsys配置系统参数:设置Maximum number of PROCESSES allowed per user大于等于2048。

# su - oracle

$ echo $SHELL

/usr/bin/ksh

$ ls -al

total 16

drwxr-xr-x    2 oracle  oinstall        256 Dec 22 01:06 .

drwxr-xr-x    5 bin      bin            256 Dec 22 00:51 ..

-rwxr-----    1 oracle  oinstall        254 Dec 22 00:51 .profile

-rw-------    1 oracle  oinstall        32 Dec 22 01:06 .sh_history

$ vi .profile

".profile" 9 lines, 254 characters

 


PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.

export PATH

if [ -s "$MAIL" ]          # This is at Shell startup.  In normal

then echo "$MAILMSG"        # operation, the Shell checks

fi                          # periodically.

umask 022

AIXTHREAD_SCOPE=S; export AIXTHREAD_SCOPE

连接Oracle用户,在环境变量中添加umask 022和AIX_THREAD_SCOPE环境变量。

将数据库安装目录授权给oracle用户:

# chown -R oracle:oinstall /data

建立安装目录:

$ mkdir -p /data/oracle/oradata

$ mkdir -p /data/oracle/product/10.2

在oracle用户的profile文件中添加下面的信息:

ORACLE_SID=zhtrade; export ORACLE_SID

ORACLE_BASE=/data/oracle; export ORACLE_BASE

ORACLE_HOME=/data/oracle/product/10.2; export ORACLE_HOME

PATH=$ORACLE_HOME/bin:$PATH; export PATH

DISPLAY=172.20.10.150:1.0; export DISPLAY

利用cpio –idcmv < 10gr2_aix5l64_database.cpio解压文件,然后利用图形方式开始安装。

在运行/data/software/Disk1/runInstaller进行安装之前,需要首先用root来运行rootpre.sh:

# ./rootpre.sh

./rootpre.sh output will be logged in /tmp/rootpre.out_10-12-22.02:41:36

Saving the original files in /etc/ora_save_10-12-22.02:41:36....

Copying new kernel extension to /etc....

Loading the kernel extension from /etc

 Oracle Kernel Extension Loader for AIX

      Copyright (c) 1998,1999 Oracle Corporation

 


 Successfully loaded /etc/pw-syscall.64bit_kernel with kmid: 0x50ca6000

 Successfully configured /etc/pw-syscall.64bit_kernel with kmid: 0x50ca6000

The kernel extension was successfuly loaded.

Configuring Asynchronous I/O....

Asynchronous I/O is not installed on this system.

You will need to install it, and either configure it yourself using

'smit aio' or rerun the Oracle root installation procedure.

Configuring POSIX Asynchronous I/O....

Posix Asynchronous I/O is not installed on this system.

You will need to install it, and either configure it yourself using

'smit aio' or rerun the Oracle root installation procedure.

Checking if group services should be configured....

Nothing to configure.

下面运行runInstaller开始数据库软件的安装:

选择高级安装,对安装过程进行定制;

由于设置了ORACLE_BASE和ORACLE_HOME环境变量,所以oraInvertory目录和组信息不需要改变;

选择企业版,并加载中文语言;

ORACLE_HOME目录选择,这里默认是正确的;

Oracle检查安装条件时会监测AIX6超过了预期的5.2或5.3,直接忽略这个问题开始安装;

选择安装类型的时候选择仅安装数据库软件;

最后利用root运行两个脚本,安装完成。

# /data/oracle/oraInventory/orainstRoot.sh

Changing permissions of /data/oracle/oraInventory to 775.

Changing groupname of /data/oracle/oraInventory to oinstall.

The execution of the script. is complete

# /data/oracle/product/10.2/root.sh

Running Oracle10 root.sh script...

The following environment variables are set as:

    ORACLE_OWNER= oracle

    ORACLE_HOME=  /data/oracle/product/10.2

Enter the full pathname of the local bin directory: [/usr/local/bin]:

Creating /usr/local/bin directory...

  Copying dbhome to /usr/local/bin ...

  Copying oraenv to /usr/local/bin ...

  Copying coraenv to /usr/local/bin ...

 


Creating /etc/oratab file...

Entries will be added to the /etc/oratab file as needed by

Database Configuration Assistant when a database is created

Finished running generic part of root.sh script.

Now product-specific root actions will be performed.


    
 
 

您可能感兴趣的文章:

  • AIX目前最新的编译器都支持C++0x标准里的那些内容?GCC 4.5.0是否能够在AIX上安装?
  • 请教IBM服务器安装AIX的安装资料(教程或者资料,最好有安装步骤)
  • 请问:哪种工具可以制作安装程序,安装程序是基于java的或是能在aix运行?
  • 急:aix5.3下安装gcc失败
  • wmware6.0可以安装aix吗?
  • 求能够安装AIX的虚拟机软件
  • AIX上缺省安装的ftpd是pro还是pure?
  • AIX UNIX有能安装在windows下vmware的版本吗 ?
  • 请问IBM x366能安装aix系统吗,还有请推荐一款新手学习的小型机
  • 我要在aix下debug跟踪程序C++,需要安装什么东西?
  • aix下安装websphere???
  • 请教个aix系统安装库的问题
  • AIX安装net-snmp-5.5以后没有mib2c这个工具
  • aix下从光盘安装软件的问题
  • 在AIX上安装了MAGIC++,客户端调试时报/bin/sh:gdb not found,请高手指教
  • 菜鸟问题(可以安装Unix(AIX)+IBM DB2的最便宜的IBM机器是多少RMB)
  • Oracle10g在AIX上的安装准备工作《Oracle大型数据库系统在AIX/unix上的实战详解》 集中答疑 40
  • aix下 valgrind安装问题
  • 想在aix4.3的usr下安装apache,可是空间不够,请问怎么扩大usr卷?
  • AIX安装vim插件Taglist问题
  • 如何将Aix上的oracle 物理备份 然后再在linux 系统上还原oracle
  • aix下自动备份oracle 的输出日志问题,急!!
  • AIX 64位系统上如何使用32位OCI oracle driver
  • 千分放送!请有AIX下dbx调试Oracle proc程序经验的高手解决问题
  • Oracle 9i 在AIX上的安装
  • Aix 5.3下自动备份Oracle多个实例
  • Oracle 10g 在AIX 5.3上安装过程笔记
  • 求pro c++ 的makefile( c++/ oracle10.0/ EXEC SQL/ AIX)在线等
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • AIX 5.3下调用windows 2000上的exe程序,且AIX下需要得到windows下程序执行的返回结果
  • 公告:CSDN AIX论坛有奖话题讨论活动(七)——本期话题:在海量运算方面,和Linux系统相比,AIX系统有优势吗?
  • 哪里可以下载AIX操作系统?
  • 公告:CSDN AIX论坛有奖话题讨论活动(四)——本期话题:从开发周期上来看,和HP-UX、Solaris相比,AIX系统有优势吗?
  • 公告:CSDN AIX论坛有奖话题讨论活动(八)——本期话题:除了数据库应用,还有哪些应用也可以运行于AIX系统之上?(和Linux系统相比较,性能更优)
  • AIX共享内存分配问题
  • 求GCC for AIX5.3
  • aix上编译问题
  • linux -> aix 发展
  • 公告:CSDN AIX论坛有奖话题讨论活动(六)——本期话题:AIX的动态工作负载分区和Hypervisor的逻辑分区相比,有何优劣?
  • 有关 AIX 编程兼容性方面的疑问
  • aix问题求教--愿给200分!!!
  • 关于AIX的进程间通讯的方法
  • window 向aix 的移植问题----在线等待
  • 普通pc机,可否装aix操作系统?
  • 有谁在AIX下装过下载版的websphere
  • IBM AIX可以用其他的unix 或者 lunix代替吗?
  • 请问AIX下用什么命令能够获取CPU型号、频率信息,多CPU情况下
  • 在AIX(4.3)系统上如何查看内存情况
  • 请教一个AIX下内存分配的问题


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,