前言
Oracle 一键安装脚本,演示 RedHat 8.9 一键安装 Oracle 11GR2 单机 ASM 过程(全程无需人工干预)。
⭐️ 脚本下载地址:Shell脚本安装Oracle数据库
安装准备
- 1、安装好操作系统,建议安装图形化
- 2、配置好网络
- 3、挂载本地 ISO 镜像源
- 4、上传软件安装包(安装基础包,补丁包)
- 5、上传一键安装脚本:OracleShellInstall
环境信息
📢注意:Oracle 11GR2 RAC 安装主机名不能有大写字符,否则安装失败!
# 主机版本
[root@rhel8 soft]# cat /etc/os-release
NAME="Red Hat Enterprise Linux"
VERSION="8.9 (Ootpa)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="8.9"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Red Hat Enterprise Linux 8.9 (Ootpa)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos"
HOME_URL="https://www.redhat.com/"
DOCUMENTATION_URL="https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8"
REDHAT_BUGZILLA_PRODUCT_VERSION=8.9
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="8.9"
# 网络信息
[root@rhel8 soft]# ip a
2: ens192: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:0c:29:c2:42:bd brd ff:ff:ff:ff:ff:ff
altname enp11s0
inet 192.168.6.132/24 brd 192.168.6.255 scope global noprefixroute ens192
valid_lft forever preferred_lft forever
inet6 fe80::20c:29ff:fec2:42bd/64 scope link noprefixroute
valid_lft forever preferred_lft forever
# 挂载本地 ISO 镜像
[root@rhel8 soft]# mount | grep iso9660 | grep -v "/run/media"
/dev/sr0 on /mnt type iso9660 (ro,relatime,nojoliet,check=s,map=n,blocksize=2048)
[root@rhel8 soft]# df -h|grep /mnt
/dev/sr0 13G 13G 0 100% /mnt
# starwind 共享磁盘挂载(有存储就不需要使用 starwind,直接存储上划盘挂载就可)
# 安装 iscsi 需要配置 YUM 源
mkdir -p /etc/yum.repos.d/bak
mv /etc/yum.repos.d/* /etc/yum.repos.d/bak
cat<<-EOF>/etc/yum.repos.d/local.repo
[BaseOS]
name=BaseOS
baseurl=file:///mnt/BaseOS
enabled=1
gpgcheck=0
[AppStream]
name=AppStream
baseurl=file:///mnt/AppStream
enabled=1
gpgcheck=0
EOF
yum install -y iscsi-initiator-utils*
systemctl start iscsid
systemctl status iscsid
systemctl enable iscsid
## 挂载 ASM 磁盘iscsiadm -m discovery -t st -p 192.168.6.188
iscsiadm -m discovery -t st -p 192.168.6.188
iscsiadm -m node -T iqn.2008-08.com.starwindsoftware:192.168.6.188-lucifer -p 192.168.6.188 -l
## 配置开机自动挂载
iscsiadm -m node -T iqn.2008-08.com.starwindsoftware:192.168.6.188-lucifer -p 192.168.6.188 --op update -n node.startup -v automatic
[root@rhel8 soft]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 100G 0 disk
├─sda1 8:1 0 500M 0 part /boot
└─sda2 8:2 0 99.5G 0 part
├─vg_rhel6-lv_root (dm-0) 253:0 0 50G 0 lvm /
├─vg_rhel6-lv_swap (dm-1) 253:1 0 7.8G 0 lvm [SWAP]
└─vg_rhel6-lv_home (dm-2) 253:2 0 41.7G 0 lvm /home
sr0 11:0 1 3.6G 0 rom /mnt
sdb 8:16 0 10G 0 disk
sdc 8:32 0 50G 0 disk
[root@rhel8 soft]# /usr/lib/udev/scsi_id -g -u /dev/sdb
2e87e4f535c397171
[root@rhel8 soft]# /usr/lib/udev/scsi_id -g -u /dev/sdc
2f218dae15b551c5d
# 安装包存放在 /soft 目录下
[root@rhel8 soft]# ll
-rwxr-xr-x. 1 root root 213569 Jun 14 11:02 OracleShellInstall
-rwx------. 1 root root 1395582860 Jun 13 15:04 p13390677_112040_Linux-x86-64_1of7.zip
-rwx------. 1 root root 1151304589 Jun 13 15:04 p13390677_112040_Linux-x86-64_2of7.zip
-rwx------. 1 root root 1205251894 Jun 14 09:28 p13390677_112040_Linux-x86-64_3of7.zip
-rwx------. 1 root root 174911877 Jun 14 11:03 p18370031_112040_Linux-x86-64.zip
确保安装环境准备完成后,即可执行一键安装。
安装命令
使用标准生产环境安装参数(安装过程若失败,脚本支持重复执行安装):
# 根据脚本 README 或者 -h 命令提示,编辑好一键安装命令,进入 /soft 目录执行安装:
./OracleShellInstall -n rhel8 `# hostname prefix`\
-gp oracle `# grid password`\
-op oracle `# oracle password`\
-lf ens192 `# local ip ifname`\
-dd /dev/sdc `# rac data asm disk`\
-o lucifer `# dbname`\
-ds AL32UTF8 `# database character`\
-ns AL16UTF16 `# national character`\
-redo 10 `# redo size`\
-dp 'Passw0rd$PST' `# sys/system password`\
-opd Y `# optimize db`
安装过程
███████ ██ ████████ ██ ██ ██ ██ ██ ██ ██
██░░░░░██ ░██ ██░░░░░░ ░██ ░██ ░██░██ ░██ ░██ ░██
██ ░░██ ██████ ██████ █████ ░██ █████ ░██ ░██ █████ ░██ ░██░██ ███████ ██████ ██████ ██████ ░██ ░██
░██ ░██░░██░░█ ░░░░░░██ ██░░░██ ░██ ██░░░██░█████████░██████ ██░░░██ ░██ ░██░██░░██░░░██ ██░░░░ ░░░██░ ░░░░░░██ ░██ ░██
░██ ░██ ░██ ░ ███████ ░██ ░░ ░██░███████░░░░░░░░██░██░░░██░███████ ░██ ░██░██ ░██ ░██░░█████ ░██ ███████ ░██ ░██
░░██ ██ ░██ ██░░░░██ ░██ ██ ░██░██░░░░ ░██░██ ░██░██░░░░ ░██ ░██░██ ░██ ░██ ░░░░░██ ░██ ██░░░░██ ░██ ░██
░░███████ ░███ ░░████████░░█████ ███░░██████ ████████ ░██ ░██░░██████ ███ ███░██ ███ ░██ ██████ ░░██ ░░████████ ███ ███
░░░░░░░ ░░░ ░░░░░░░░ ░░░░░ ░░░ ░░░░░░ ░░░░░░░░ ░░ ░░ ░░░░░░ ░░░ ░░░ ░░ ░░░ ░░ ░░░░░░ ░░ ░░░░░░░░ ░░░ ░░░
注意:本脚本仅用于新服务器上实施部署数据库使用,严禁在已运行数据库的主机上执行,以免发生数据丢失或者损坏,造成不可挽回的损失!!!
请选择安装模式 [单机(si)/单机ASM(sa)/集群(rac)] : sa
数据库安装模式: standalone
请选择数据库版本 [11/12/19/21] : 11
数据库版本: 11
正在进行安装前检查,请稍等......
正在检测安装包 /soft/p13390677_112040_Linux-x86-64_3of7.zip 的 MD5 值是否正确,请稍等......
正在检测安装包 /soft/p13390677_112040_Linux-x86-64_1of7.zip 的 MD5 值是否正确,请稍等......
正在检测安装包 /soft/p13390677_112040_Linux-x86-64_2of7.zip 的 MD5 值是否正确,请稍等......
OracleShellInstall 开始安装,详细安装过程可查看日志: tail -2000f /soft/print_shell_install_20240614115109.log
正在获取操作系统信息......已完成 (耗时: 2 秒)
正在配置本地软件源......已完成 (耗时: 1 秒)
正在安装依赖包......已完成 (耗时: 126 秒)
正在禁用防火墙......已完成 (耗时: 1 秒)
正在禁用 selinux......已完成 (耗时: 1 秒)
正在配置 nsyctl......已完成 (耗时: 1 秒)
正在配置主机名和 /etc/hosts......已完成 (耗时: 0 秒)
正在创建用户和组......已完成 (耗时: 1 秒)
正在创建安装目录......已完成 (耗时: 0 秒)
正在配置透明大页 && NUMA && 磁盘 IO 调度器......已完成 (耗时: 2 秒)
正在配置操作系统参数 sysctl......已完成 (耗时: 1 秒)
正在配置 RemoveIPC......已完成 (耗时: 1 秒)
正在配置用户限制 limit......已完成 (耗时: 1 秒)
正在配置 shm 目录......已完成 (耗时: 1 秒)
正在配置用户环境变量......已完成 (耗时: 1 秒)
正在解压 Grid 安装包以及补丁......已完成 (耗时: 23 秒)
正在解压 Oracle 安装包以及补丁......已完成 (耗时: 34 秒)
正在安装 Grid 软件以及补丁......已完成 (耗时: 329 秒)
正在安装 Oracle 软件以及补丁......已完成 (耗时: 224 秒)
正在创建数据库......已完成 (耗时: 316 秒)
正在优化数据库......已完成 (耗时: 5 秒)
恭喜!Oracle 一键安装执行完成 (耗时: 1082 秒),现在是否重启主机:[Y/N] Y
正在重启当前节点主机......
连接测试
查看系统版本:
[root@rhel8:/root]# cat /etc/os-release
NAME="Red Hat Enterprise Linux"
VERSION="8.9 (Ootpa)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="8.9"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Red Hat Enterprise Linux 8.9 (Ootpa)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos"
HOME_URL="https://www.redhat.com/"
DOCUMENTATION_URL="https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8"
REDHAT_BUGZILLA_PRODUCT_VERSION=8.9
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="8.9"
查看 Grid 版本以及补丁:
[grid@rhel8:/home/grid]$ sqlplus -v SQL*Plus: Release 11.2.0.4.0 Production [grid@rhel8:/home/grid]$ opatch lspatches 18370031;Grid Infrastructure Patch Set Update : 11.2.0.4.x (gibugno)
查看集群:
[grid@rhel8:/home/grid]$ crsctl stat res -t
--------------------------------------------------------------------------------
NAME TARGET STATE SERVER STATE_DETAILS
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.DATA.dg
ONLINE ONLINE rhel8
ora.asm
ONLINE ONLINE rhel8 Started
ora.ons
OFFLINE OFFLINE rhel8
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.cssd
1 ONLINE ONLINE rhel8
ora.diskmon
1 OFFLINE OFFLINE
ora.evmd
1 ONLINE ONLINE rhel8
ora.lucifer.db
1 ONLINE ONLINE rhel8 Open
查看 Oracle 版本以及补丁:
[oracle@rhel8:/home/oracle]$ sqlplus -v
SQL*Plus: Release 11.2.0.4.0 Production
[oracle@rhel8:/home/oracle]$ opatch lspatches
There are no Interim patches installed in this Oracle Home.
连接数据库:
[oracle@rhel8:/home/oracle]$ sas SQL*Plus: Release 11.2.0.4.0 Production on Fri Jun 14 12:48:06 2024 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Data Mining and Real Application Testing options sys@LUCIFER 2024-06-14 12:48:06> show parameter name NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ cell_offloadgroup_name string db_file_name_convert string db_name string lucifer db_unique_name string lucifer global_names boolean FALSE instance_name string lucifer lock_name_space string log_file_name_convert string processor_group_name string service_names string lucifer
数据库连接正常。
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。