Oracle11g安装步骤(CentOS7)

安装环境:CentOS 7(64位) 、 oracle11G 的压缩包

第一步:创建相关目录,并将安装包放在指定路径下

[[email protected] data]# pwd/data[[email protected] data]# lltotal 0drwxr-xr-x. 2 root root  6 Sep 27 00:42 oracle  //安装目录drwxrwxr-x. 2 root root  6 Sep 27 00:25 oradata //配置文件drwxrwxr-x. 2 root root 88 Sep 26 23:53 soft  //压缩包目录

第二步:创建相关用户组和密码(密码提示过于简单之类的话请不用管它)

[[email protected] soft]# groupadd  oinstall
[[email protected] soft]# groupadd  dba
[[email protected] soft]# useradd -g oinstall -g dba -m oracle //用户既属于oinstall又属于dba
[[email protected] soft]# passwd  oracle
Changing password for user oracle.
New password:
BAD PASSWORD: The password fails the dictionary check - it is too simplistic/systematic
Retype new password:
passwd: all authentication tokens updated successfully.

第三步:赋值

chmod -R 775 /data/chown -R oracle.oinstall /data/oracle/  chown -R oracle:oinstall /data/soft/chown -R oracle:oinstall /data/oradata/
chmod -R 775 /data/oracle/ [[email protected] soft]# chown -R oracle:oinstall database/ //将解压后的database目录也赋给oracle[[email protected] soft]# lltotal 2295592drwxr-xr-x. 8 oracle oinstall        128 Aug 20  2009 database-rwxrwxr-x. 1 oracle oinstall 1239269270 Apr 23  2013 linux.x64_11gR2_database_1of2.zip-rwxrwxr-x. 1 oracle oinstall 1111416131 Apr 23  2013 linux.x64_11gR2_database_2of2.zip

第四步:修改标识

[[email protected] data]# vi /etc/redhat-release[[email protected] data]# cat /etc/redhat-release
redhat-7

第五步:安装相关软件包

yum -y install binutils* compat-libcap1* compat-libstdc++* gcc* gcc-c++* glibc* glibc-devel* ksh* libaio* libaio-devel* libgcc* libstdc++* libstdc++-devel* libXi* libXtst* make* sysstat* elfutils* unixODBC*

第六步:防火墙问题

systemctl status firewalld.servicesystemctl disable firewalld.service

第七步:修改selinux

 vi /etc/selinux/config如下图所示,将selinux设置为disabled状态


第八步:修改 linux 内核

 vi /etc/sysctl.conf添加以下内容:net.ipv4.icmp_echo_ignore_broadcasts = 1net.ipv4.conf.all.rp_filter = 1fs.file-max = 6815744fs.aio-max-nr = 1048576kernel.shmall = 2097152kernel.shmmax = 2147483648kernel.shmmni = 4096kernel.sem = 250 32000 100 128net.ipv4.ip_local_port_range = 9000 65500net.core.rmem_default = 262144 net.core.rmem_max = 4194304net.core.wmem_default = 262144net.core.wmem_max = 1048576配置生效:[[email protected] data]# sysctl -p

第九步: 修改用户的 SHELL 的限制

(1)vi /etc/security/limits.conf添加以下内容:* soft nproc 2047* hard nproc 16384* soft nofile 1024* hard nofile 65536(2)修改/etc/pam.d/login 文件,vi  /etc/pam.d/login添加:session   required    /lib64/security/pam_limits.sosession   required    pam_limits.so (3)编辑 /etc/profile ,vi  /etc/profile添加:if [ $USER = "oracle" ]; thenif [ $SHELL = "/bin/ksh" ]; then  ulimit -p 16384  ulimit -n 65536else  ulimit -u 16384 -n 65536 fifi

第十步:修改配置文件

[[email protected] data]#  su - oracle
[[email protected] ~]$ export LANG=en_US //把语言环境改为英文vi /home/oracle/.bash_profile添加:export PATHexport ORACLE_BASE=/data/oracleexport ORACLE_HOME=$ORACLE_BASE/product/11.2export ORACLE_SID=orclexport PATH=$PATH:$ORACLE_HOME/bin:/usr/bin:/usr/sbin:/usr/libexport LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATHexport ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data生效:source /home/oracle/.bash_profile

设置主机 hosts 文件,vi /etc/hosts添加自己主机ip信息,例如:192.168.113.133   localhost localhost.localdomain localhost4 localhost4.localdomain4

第十一步:

[[email protected] database]$ ./runInstaller 

后面图形化部分由于图片太大,不一一列举,多数为next。(可见其他博客说明)

安装好后输入dbca,继续图形化界面安装。

第十二步:数据库的启动、关闭

---------启动监听服务-------------

# su – oracle
$ lsnrctl
LSNRCTL> status
LSNRCTL> start
LSNRCTL> exit

[[email protected] ~]$ export oracle_sid=orcl  //实例名用之前图形界面设置的

---------启动------------

[[email protected] ~]$ sqlplus / as sysdba
SQL> startup

-------关闭--------------

# su – oracle
$ sqlplus / as sysdba
SQL> shutdown immediate

其他博客:https://www.cnblogs.com/muhehe/p/7816808.html

原文地址:https://www.cnblogs.com/caoyt/p/9714803.html

时间: 2024-10-19 14:10:28

Oracle11g安装步骤(CentOS7)的相关文章

windows 2008R2安装 oracle-11g安装步骤

安装好SERVER2008,如在虚拟机安装生产环境时,需要添加多个硬盘,用于安装Oracle和数据备份,且在安装系统时,新建分区,(如果安装完系统再分区,就不能以主分区的方式挂载硬盘) 安装文件目录如下: 共有三个包,分别为数据库文件,和客户端包. 把第二个包\database\stage\Components下的文件夹复制到第一个安装包的\database\stage\Components相应目录下,不然会报如下错误 选择数据库文件下的setup执行文件,开始安装Oracle.

openDCIM-4.5安装步骤Centos7

操作系统:centos 7opendcim版本:4.5 安装 Apache, PHP, MySQL 1.安装并启动Apache: yum -y install httpd systemctl enable httpd.service systemctl start httpd.service 2.安装PHP和MBSTRING模块:  yum -y install php  yum -y install php-mysql  yum -y install php-mbstring  yum -y 

Oracle11g安装详细步骤

Oracle11g安装详细步骤,详见附件↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

Centos7安装步骤和环境优化 ------ 新手安装详细教学,免费提供软件安装包

一.环境准备:Vmware workstationxshellcentos7.4镜像 软件安装包百度云分享链接:https://pan.baidu.com/s/1Jg66BsqgYjvT54RT-S-5iQ提取码:5hli 二.centos安装步骤:1.首先打开我们vmware,开始创建虚拟机2.选择自定义,下一步 3.然后点击下一步,来到安装客户机系统这,我们先暂时选择稍后安装操作系统,先将虚拟机配置好,最后再安装镜像.4.选择linux系统中最新的版本,确定好之后,点击下一步5.我们在选择安

Oracle 11g R2 for Win7旗舰版(64位)的安装步骤

数据库有好多版本,我应该学习哪个? 万物一理,数据库的版本虽然多,本质是一样的,变化的只是表象,你是oracle7的专家,一定也是oracle11g的专家.Oracle数据库越来越受欢迎,下面介绍一下Oracle 11g R2 for Win7旗舰版(64位)的安装步骤: 1. 下载Oracle 11g R2 for Windows的版本 下载地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/in

Windows下Oracle安装图解----oracle-win-64-11g 详细安装步骤

一. Oracle 下载 官方下地址 http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html win 32位操作系统 下载地址: http://download.oracle.com/otn/nt/oracle11g/112010/win32_11gR2_database_1of2.zip http://download.oracle.com/otn/nt/oracle11g/11201

oracle11g安装和基本的使用-转载

截的图大小不一,就请将就着看吧!测试操作系统和硬件环境是否符合,我使用的是win2008企业版.下面的都是step by step看图就ok了,不再详细解释. 请留意下面的总的设置步骤:-----------------------------------------------------------! 表空间其实应该理解为存储空间和可以设置为跨分区或者硬盘来存储呢.分永久和临时的两种.一般创建自己的永久的表空间就可以了,临时的使用系统自己建立的. oracle是跨平台的数据库,其实图形界面或

Oracle(11g)详细安装步骤

 最详细的Oracle安装步骤就在这里,话不多说直接给大家上安装Oracle的详细教程  如果没有安装包,可以先点击下载下载地址:http://download.oracle.com/otn/nt/oracle11g/112010/win64_11gR2_database_1of2.ziphttp://download.oracle.com/otn/nt/oracle11g/112010/win64_11gR2_database_2of2.zip 一.首先大家要确定自己电脑上有没有安装过Orac

oracle11g 安装错误汇总

oracle11g安装错误总结: 1,执行./runInstaller报错如下: You are atempting to install 64-bit Oracle on a 32-bit operating system,this is not support and will not work 查看uname显示确实64位 [[email protected]_master ~]uname -a  Linux oracle_master 2.6.32-220.el6.x86_64 #1 S