Linux上oracle的安装

简介:
Linux版本:Red Hat Enterprise Linux5.0
Oracle版本:oracle 11g
 
Linux版本检查 #cat /etc/issue
 
首先检查自己安装的linux5.0上是否安装有以下包(参照oracle11g文档):
The following packages (or later versions) must be installed:
binutils-2.17.50.0.6-2.el5
compat-libstdc++-33-3.2.3-61
elfutils-libelf-0.125-3.el5
elfutils-libelf-devel-0.125
gcc-4.1.1-52
gcc-c++-4.1.1-52
glibc-2.5-12
glibc-common-2.5-12
glibc-devel-2.5-12
glibc-headers-2.5-12
libaio-0.3.106
libaio-devel-0.3.106
libgcc-4.1.1-52
libstdc++-4.1.1
libstdc++-devel-4.1.1-52.e15
make-3.81-1.1
sysstat-7.0.0
 
若是10g则需以下包:
make-3.79.1
gcc-3.2.3-34
glibc-2.3.2-95.20
glibc-devel-2.3.2-95.20
glibc-devel-2.3.2-95.20 (32 bit)
compat-db-4.0.14-5
compat-gcc-7.3-2.96.128
compat-gcc-c++-7.3-2.96.128
compat-libstdc++-7.3-2.96.128
compat-libstdc++-devel-7.3-2.96.128
gnome-libs-1.4.1.2.90-34.1 (32 bit)
openmotif21-2.1.30-8
setarch-1.3-1
libaio-0.3.96-3
libaio-devel-0.3.96-3
怎样检查是否安装呢?如检查 binutils-2.17.50.0.6-2.el5
[root@oracle11gdemo ~]# rpm -qa | grep binutils
binutils-2.17.50.0.6-2.el 5
说明binutils-2.17.50.0.6-2.el5已经安装。其它的依次检查。
将没有安装的包(去安装文件的server目录下找)上传到linux上,然后运行以下命令安装:
# rpm –ivh  *.rpm
 
下面的组和用户必须存在
The oinstall group (the oracle inventory group)
The dba group (the OSDBA group)
The oracle user (the oracle owner)
如果上面的组和用户不存在,用下面的步骤创建它们。
(1)先查看这些组和用户是否存在:
#grep oinstall /etc/group
#grep dba /etc/group
(2)创建安装oracle 所需的组和用户
#groupadd oinstall
#groupadd dba
 
 
bash: groupadd: command not found 错误解决:groupadd命令是要用ROOT用户来执行的,而出错的用户是用 su root切换到ROOT用户下,这个命令不会把环境带过去!!!!, 要用
 su   root 命令。
 
(3)建立一个目录作为oracle用户的缺省路径
创建目录:#mkdir –p /user01
建立一个缺省路径为/user01/oracle的用户oracle,同时oracle属于主组oinstall,和属于辅助组dba#useradd –g oinstall –G dba –d /user01/oracle oracle
 
将目录user01的属主改为oracle,属组改为oinstall
[root@oracle11gdemo /]# chown -R oracle.oinstall /user01
 
查看nobody是否存在:[root@oracle11gdemo user01]# id nobody
 
配置内核参数:
/etc/sysctl.conf 下通过 vi 添加如下参数
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 4194304
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 262144
net.ipv4.tcp_wmem = 262144 262144 262144
net.ipv4.tcp_rmem = 4194304 4194304 4194304
 
如下这些参数如法炮制
To increase the shell limits:
1.  Add the following lines to the  /etc/security/limits.conf  file:
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
2.  Add or edit the following line in the  /etc/pam.d/login  file, if it does not
already exist:
session required pam_limits.so
3.  Depending . the  oracle  user's default shell, make the following changes to the
default shell start-up file:
■  For the Bourne, Bash, or Korn shell, add the following lines to the
/etc/profile  file (or the file . SUSE Linux Enterprise Server systems
/etc/profile.local ):
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
■  For the C shell ( csh  or  tcsh ), add the following lines to the
/etc/csh.login  file (or the file . SUSE Linux Enterprise Server systems
/etc/csh.login.local ):
if ( $USER == "oracle" ) then
limit maxproc 16384
limit de.ors 65536
endif
 
 
oracle 用户名登录系统,配置oracle 用户的环境。以oracle 帐号用安装器来安装oracle,但是开始运行安装器之前,还得设定oracle用户的环境变量。
[oracle@oracle11gdemo ~]$ vi .bash_profile
vi打开.bash_profile,然后添加一下变量:
ORACLE_BASE=/user01
ORACLE_HOME=$ORACLE_BASE/oracle
ORACLE_SID=Wilson
PATH=$ORACLE_HOME/bin:$PATH
 
export ORACLE_BASE ORACLE_HOME ORACLE_SID PATH
 
oracle安装文件解压:
[root@oracle11gdemo user01]# unzip linux_11gR1_database_1013.zip
 
解压后将在当前目录生成一个database文件夹,将此文件夹移动的oracle用户的缺省路径的上一级路径:
[root@oracle11gdemo user01]# mv database/ /user01
 
将目录database的属主改为oracle,属组改为oinstall
[root@oracle11gdemo user01]# chown -R oracle.oinstall database/
 
 
oracle用户登录图像界面,运行database下的runInstaller:
./runInstaller
注:一定要用oracle用户登陆,不能用root,否则安装oracle时会出现错误:。。。。。 at least 256 color 。。。。。

如果用root登陆,要按以下操作:
# xhost + 
# su - oracle 
$ export DISPLAY= :0 
$ ./runInstaller.sh 
我建议用oracle 登陆,简单,直接到Disk1目录下安装即可
# ./runInstaller
如果是第一次安装的话,系统会提示用root用户运行一个脚本文件,新开一个consolesu  root后,按照提示运行即可。
之后的安装过程比较简单,一路next即可。
 
至此,oracle11g安装完毕。下面介绍怎么创建一个数据库实例:
首先配置一个Listener,启动linux图形界面,打开终端,输入netca,然后一路next
接着就可以配置数据库实例了,在终端中输入dbca,然后跳出dbca的图形界面,一路设置下去即可。
 
开启监听后才可以用PLSQL Developer连接。
开启监听命令: $ lsnrctl start
开启数据库实例命令:SQL> startup
 
错误解决:
1.Can't connect to X11 window server using '127.0.0.1:0.0' as the value of the DISPLAY variable.
解决:
在终端里   以root用户执行   #xhost   + 
然后su   -   oracle 
执行#export   DISPLAY=:0 
运行runinstaller
 
2.若想在本地通过plsql访问服务器的oracle,需先把服务器的防火墙关闭。
解决:
1) 重启后生效 
开启: chkconfig iptables 
关闭: chkconfig iptables off 
2) 即时生效,重启后失效 
开启: service iptables start 
关闭: service iptables stop
需要说明的是对于Linux下的其它服务都可以用以上命令执行开启和关闭操作。 

在开启了防火墙时,做如下设置,开启相关端口, 
修改/etc/sysconfig/iptables 文件,添加以下内容: 
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT 
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT









本文转自 yzzh9 51CTO博客,原文链接:http://blog.51cto.com/java999/124177,如需转载请自行联系原作者
目录
相关文章
|
16天前
|
Linux Python
Linux 安装python3.7.6
本教程介绍在Linux系统上安装Python 3.7.6的步骤。首先使用`yum`安装依赖环境,包括zlib、openssl等开发库。接着通过`wget`下载Python 3.7.6源码包并解压。创建目标文件夹`/usr/local/python3`后,进入解压目录执行配置、编译和安装命令。最后设置软链接,使`python3`和`pip3`命令生效。
|
18天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
104 20
|
12天前
|
NoSQL 关系型数据库 MySQL
Linux安装jdk、mysql、redis
Linux安装jdk、mysql、redis
123 7
|
2月前
|
Oracle Cloud Native 关系型数据库
Oracle Linux 9.5 正式版发布 - Oracle 提供支持 RHEL 兼容发行版
Oracle Linux 9.5 正式版发布 - Oracle 提供支持 RHEL 兼容发行版
73 10
Oracle Linux 9.5 正式版发布 - Oracle 提供支持 RHEL 兼容发行版
|
18天前
|
Unix Linux 编译器
UNIX/Linux 上的安装
UNIX/Linux 上的安装。
37 2
|
2月前
|
NoSQL Linux PHP
如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤
本文介绍了如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤。接着,对比了两种常用的 PHP Redis 客户端扩展:PhpRedis 和 Predis,详细说明了它们的安装方法及优缺点。最后,提供了使用 PhpRedis 和 Predis 在 PHP 中连接 Redis 服务器及进行字符串、列表、集合和哈希等数据类型的基本操作示例。
74 4
|
2月前
|
存储 安全 数据管理
如何在 Rocky Linux 8 上安装和配置 Elasticsearch
本文详细介绍了在 Rocky Linux 8 上安装和配置 Elasticsearch 的步骤,包括添加仓库、安装 Elasticsearch、配置文件修改、设置内存和文件描述符、启动和验证 Elasticsearch,以及常见问题的解决方法。通过这些步骤,你可以快速搭建起这个强大的分布式搜索和分析引擎。
64 5
|
2月前
|
监控 Oracle 关系型数据库
Linux平台Oracle开机自启动设置
【11月更文挑战第8天】在 Linux 平台设置 Oracle 开机自启动有多种方法,本文以 CentOS 为例,介绍了两种常见方法:使用 `rc.local` 文件(较简单但不推荐用于生产环境)和使用 `systemd` 服务(推荐)。具体步骤包括编写启动脚本、赋予执行权限、配置 `rc.local` 或创建 `systemd` 服务单元文件,并设置开机自启动。通过 `systemd` 方式可以更好地与系统启动过程集成,更规范和可靠。
165 2
|
2月前
|
Oracle Ubuntu 关系型数据库
Linux平台Oracle开机自启动设置
【11月更文挑战第7天】本文介绍了 Linux 系统中服务管理机制,并详细说明了如何在使用 systemd 和 System V 的系统上设置 Oracle 数据库的开机自启动。包括创建服务单元文件、编辑启动脚本、设置开机自启动和启动服务的具体步骤。最后建议重启系统验证设置是否成功。
|
2月前
|
消息中间件 Linux RocketMQ
在Red Hat Enterprise Linux 9上使用Docker快速安装并部署
通过以上步骤,你可以在Red Hat Enterprise Linux 9上使用Docker快速安装并部署RocketMQ。这种方法不仅简化了安装过程,还提供了一个灵活的环境来管理和扩展消息队列系统。RocketMQ作为一款高性能的分布式消息系统,通过Docker可以实现快速部署和高效管理。
85 2