Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Centos 6.8 rac does not configure DNS

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Detailed documentation is graphical. You can refer to the attachment OEL installation configuration in the previous article.

Local yum first uploads and decompresses the mirrored file package

[root@rac01 ~] # ls

Anaconda-ks.cfg CentOS-6.8-x86_64-bin-DVD1 install.log install.log.syslog pdksh-5.2.14-30.x86_64.rpm Public template Video Picture document download Music Desktop

[root@rac01 ~] # cd CentOS-6.8-x86_64-bin-DVD1

[root@rac01 CentOS-6.8-x86_64-bin-DVD1] # ls

CentOS_BuildTag EULA images Packages repodata RPM-GPG-KEY-CentOS-Debug-6 RPM-GPG-KEY-CentOS-Testing-6

EFI GPL isolinux RELEASE-NOTES-en-US.html RPM-GPG-KEY-CentOS-6 RPM-GPG-KEY-CentOS-Security-6 TRANS.TBL

[root@rac01 CentOS-6.8-x86_64-bin-DVD1] # cd Packages/

-

[root@rac01 Packages] # cd / etc/yum.repos.d

[root@rac01 yum.repos.d] # ls

CentOS-Base.repo CentOS-Debuginfo.repo CentOS-fasttrack.repo CentOS-Media.repo CentOS-Vault.repo

[root@rac01 yum.repos.d] # rm-rf *

[root@rac01 yum.repos.d] # vi local.repo

[kingsql]

Name=This is kingsql repo

Baseurl= file:///rpm/

Enabled=1

Gpgcheck=1

Gpgkey= file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

-

[root@rac01 yum.repos.d] # mkdir-p / rpm

[root@rac01 yum.repos.d] # cd / rpm

[root@rac01 rpm] cp / root/CentOS-6.8-x86_64-bin-DVD1/Packages/* / rpm/

Copy the following rpm package

Rpm-ivh vsftpd-2.2.2-12.el6_5.1.x86_64.rpm

Rpm- ivh deltarpm-3.5-0.5.20090913git.el6.x86_64.rpm

Rpm- ivh python-deltarpm-3.5-0.5.20090913git.el6.x86_64.rpm

Rpm-ivh libxml2-2.7.6-14.el6_5.2.x86_64.rpm

Rpm-ivh libxml2-python-2.7.6-14.el6_5.2.x86_64.rpm

Rpm-ivh createrepo-0.9.9-22.el6.noarch.rpm

[root@rac01 rpm] # createrepo. /

Spawning worker 0 with 3204 pkgs

Worker 0: error: rpmts_HdrFromFdno: headerRead failed: Header sanity check: OK

Worker 0: Error: Could not open local rpm file: / rpm/.//bzr-2.1.1-2.el6.x86_64.rpm: RPM Error opening Package is in progress

[root@rac01 rpm] # yum clean all

[root@rac01 rpm] # yum makecache

[root@rac01 rpm] # yum install libXp* xterm* unixODBC* sysstat* make* libstdc++* libgomp* libgcc* libaio* kernel-headers* glibc* gcc* elfutils* binutils* bind bind-devel bind-chroot caching-nameserver compat-libcap1* compat-libstdc++-33* openssh* xdpyinfo vi unzip

[root@rac01] # rpm-ivh pdksh-5.2.14-30.x86_64.rpm

-

[root@rac01 ~] # chkconfig iptables off

[root@rac01 ~] # service iptables stop

-

[root@rac01 ~] # vi / etc/selinux/config

-

# This file controls the state of SELinux on the system.

# SELINUX= can take one of these three values:

# enforcing-SELinux security policy is enforced.

# permissive-SELinux prints warnings instead of enforcing.

# disabled-No SELinux policy is loaded.

SELINUX=disabled

# SELINUXTYPE= can take one of these two values:

# targeted-Targeted processes are protected

# mls-Multi Level Security protection.

SELINUXTYPE=targeted

-

Groupadd-g 2000 oinstall

Groupadd-g 2200 asmadmin

Groupadd-g 2201 asmdba

Groupadd-g 2202 asmoper

Groupadd-g 2300 dba

Groupadd-g 2301 oper

Useradd-m-u 1100-g oinstall-G asmadmin,asmdba,asmoper,dba-d / home/grid-s / bin/bash-c "Grid Infrastructure Owner" grid

Useradd-m-u 1101-g oinstall-G dba,oper,asmdba-d / home/oracle-s / bin/bash-c "Oracle Software Owner" oracle

Passwd grid

Passwd oracle

Mkdir-p / opt/ora11g/grid

Mkdir-p / opt/ora11g/11.2.4/grid

Chown-R grid:oinstall / opt

Mkdir-p / opt/ora11g/oracle

Chown oracle:oinstall / opt/ora11g/oracle

Chmod-R 775 / opt

-

Su-oracle

-

[oracle@rac1 ~] $vi .bash _ profile

# .bash _ profile

# Get the aliases and functions

If [- f ~ / .bashrc]; then

. ~ / .bashrc

Fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

Export PATH

-

Export ORACLE_BASE=/opt/ora11g/oracle

Export ORACLE_HOME=/opt/ora11g/oracle/product/11.2.4/dbhome_1

Export ORACLE_SID=kingsql1

Export ORACLE_TERM=xterm

Export PATH=/usr/sbin:$PATH

Export PATH=/opt/ora11g/ogg:$ORACLE_HOME/bin:$PATH

Export LD_LIBRARY_PATH=/opt/ora11g/ogg:$ORACLE_HOME/lib:/lib:/usr/lib:$LD_LIBRARY_PATH

Export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib

Export NLS_DATE_FORMAT= "yyyy-mm-dd HH24:MI:SS"

Export NLS_LANG=AMERICAN_AMERICA.AL32UTF8

Export

Export ORACLE_UNQNAME=kingsql

If [$USER = "oracle"] | | [$USER = "grid"]; then

If [$SHELL = "/ bin/ksh"]; then

Ulimit-p 16384

Ulimit-n 65536

Else

Ulimit-u 16384-n 65536

Fi

Umask 022

Fi

-

Su-grid

[grid@rac1 ~] $vi .bash _ profile

# .bash _ profile

# Get the aliases and functions

If [- f ~ / .bashrc]; then

. ~ / .bashrc

Fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

Export PATH

Export ORACLE_BASE=/opt/ora11g/grid

Export ORACLE_HOME=/opt/ora11g/11.2.4/grid

Export ORACLE_SID=+ASM1

Export PATH=/usr/sbin:$PATH

Export PATH=$ORACLE_HOME/bin:$PATH

Export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

Export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib

If [$USER = "oracle"] | | [$USER = "grid"]; then

If [$SHELL = "/ bin/ksh"]; then

Ulimit-p 16384

Ulimit-n 65536

Else

Ulimit-u 16384-n 65536

Fi

Umask 022

Fi

Export

-

Su-root

Vi / etc/sysctl.conf

-

Fs.aio-max-nr = 1048576

Fs.file-max = 6815744

Kernel.shmmni = 4096

Kernel.sem = 250 32000 100 128

Net.ipv4.ip_local_port_range = 9000 65500

Net.core.rmem_default = 262144

Net.core.rmem_max = 4194304

Net.core.wmem_default = 262144

Net.core.wmem_max = 1048586

[root@rac01] # / sbin/sysctl-p

-

[root@rac01 ~] # vi / etc/security/limits.conf

Grid soft nproc 2047

Grid hard nproc 16384

Grid soft nofile 1024

Grid hard nofile 65536

Oracle soft nproc 2047

Oracle hard nproc 16384

Oracle soft nofile 1024

Oracle hard nofile 65536

[root@rac01 ~] # vi / etc/pam.d/login

-

Session required pam_limits.so

[root@rac01 ~] # vi / etc/hosts

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4

:: 1 localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.56.102 rac01

192.168.56.102 rac02

192.168.56.111 rac01-vip

192.168.56.111 rac02-vip

192.168.1.74 rac01-priv

192.168.1.74 rac02-priv

192.168.56.158 cluster-scan

192.168.56.158 the URL above rac-cluster-scan is changed according to your own URL.

-

[root@rac1 ~] # service ntpd stop

Close ntpd: [failed]

[root@rac1 ~] # chkconfig ntpd off

[root@rac1 ~] # mv / etc/ntp.conf / etc/ntp.conf.original

[root@rac1 ~] # rm-rf / var/run/ntpd.pid

[root@rac01 ~] # shutdown-h now shutdown virtual machine creation disk (disk is set to shared mode)

-

[root@rac01 ~] # fdisk-l

-

Check the disk number

[root@rac1] # / sbin/scsi_id-u-g / dev/sdb

1ATA_VBOX_HARDDISK_VB1274608b-98003b66

[root@rac1] # / sbin/scsi_id-u-g / dev/sdc

1ATA_VBOX_HARDDISK_VBbf237514-f3435ff0

[root@rac1] # / sbin/scsi_id-u-g / dev/sdd

1ATA_VBOX_HARDDISK_VBc894130b-2f10eef0

[root@rac1] # / sbin/scsi_id-u-g / dev/sde

1ATA_VBOX_HARDDISK_VB58f6ed82-b0dc76dc

[root@rac1] # / sbin/scsi_id-u-g / dev/sdf

1ATA_VBOX_HARDDISK_VB0e0cbf34-6238f247

[root@rac1] # / sbin/scsi_id-u-g / dev/sdg

1ATA_VBOX_HARDDISK_VB98788216-29530089

Rac1 writes the file and then copy to other nodes

-

Vi / etc/udev/rules.d/99-oracle-asmdevices.rules

KERNEL== "sd*", SUBSYSTEM== "block", PROGRAM== "/ sbin/scsi_id-whitelisted-replace-whitespace-device=/dev/$name", RESULT== "", NAME= "asm-disk1", OWNER= "grid", GROUP= "asmadmin", MODE= "0660"

KERNEL== "sd*", SUBSYSTEM== "block", PROGRAM== "/ sbin/scsi_id-whitelisted-replace-whitespace-device=/dev/$name", RESULT== "", NAME= "asm-disk2", OWNER= "grid", GROUP= "asmadmin", MODE= "0660"

KERNEL== "sd*", SUBSYSTEM== "block", PROGRAM== "/ sbin/scsi_id-whitelisted-replace-whitespace-device=/dev/$name", RESULT== "1ATA_VBOX_HARDDISK_VBc894130b-2f10eef0", NAME= "asm-disk3", OWNER= "grid", GROUP= "asmadmin", MODE= "0660"

KERNEL== "sd*", SUBSYSTEM== "block", PROGRAM== "/ sbin/scsi_id-whitelisted-replace-whitespace-device=/dev/$name", RESULT== "1ATA_VBOX_HARDDISK_VB58f6ed82-b0dc76dc", NAME= "asm-disk4", OWNER= "grid", GROUP= "asmadmin", MODE= "0660"

KERNEL== "sd*", SUBSYSTEM== "block", PROGRAM== "/ sbin/scsi_id-whitelisted-replace-whitespace-device=/dev/$name", RESULT== "1ATA_VBOX_HARDDISK_VB0e0cbf34-6238f247", NAME= "asm-disk5", OWNER= "grid", GROUP= "asmadmin", MODE= "0660"

KERNEL== "sd*", SUBSYSTEM== "block", PROGRAM== "/ sbin/scsi_id-whitelisted-replace-whitespace-device=/dev/$name", RESULT== "1ATA_VBOX_HARDDISK_VB98788216-29530089", NAME= "asm-disk6", OWNER= "grid", GROUP= "asmadmin", MODE= "0660"

[root@rac1 ~] # scp / etc/udev/rules.d/99-oracle-asmdevices.rules rac02:/etc/udev/rules.d/99-oracle-asmdevices.rules

[root@rac01 ~] # start_udev

Starting udev: [OK]

-

[root@rac1 ~] # ls-l / dev/asm*

Brw-rw---- 1 grid asmadmin 8, 16 September 18 11:49 / dev/asm-disk1

Brw-rw---- 1 grid asmadmin 8, 32 September 18 11:49 / dev/asm-disk2

Brw-rw---- 1 grid asmadmin 8, 48 September 18 11:49 / dev/asm-disk3

Brw-rw---- 1 grid asmadmin 8, 64 September 18 11:49 / dev/asm-disk4

Brw-rw---- 1 grid asmadmin 8, 80 September 18 11:49 / dev/asm-disk5

Brw-rw---- 1 grid asmadmin 8, September 18, 96 11:49 / dev/asm-disk6

-

[root@rac01 ~] # mv p13390677_112040_Linux-x86-64_3of7.zip / home/grid/

-

Su-grid

-

[grid@rac01 ~] $unzip p13390677_112040_Linux-x86-64_3of7.zip

[grid@rac01 ~] $cd grid/

[grid@rac01 grid] $ls

Install response runInstaller sshsetup welcome.html

Readme.html rpm runcluvfy.sh stage

[grid@rac01 grid] $cd rpm/

[grid@rac01 rpm] $ls

Cvuqdisk-1.0.9-1.rpm

-

[grid@rac01 rpm] $su root

Password:

-

[root@rac1] # rpm-ivh / home/grid/grid/rpm/cvuqdisk-1.0.9-1.rpm

Preparing... # [100%]

Using default group oinstall to install package

1:cvuqdisk # # [100%]

-

-

Su-grid

[grid@rac01 grid] $. / runInstaller

[root@rac01 ~] # / opt/ora11g/oraInventory/orainstRoot.sh

[root@rac01 ~] # / opt/ora11g/11.2.4/grid/root.sh

[root@rac01 ~] # su-grid

[grid@rac01] $crsctl status res-t

[grid@rac01 ~] $ping cluster-scan.kingsql.org

[root@rac01 ~] # ping rac01-vip

-

[root@rac01 ~] # su-oracle

[oracle@rac01 ~] $

[oracle@rac01 ~] $ls

-

P13390677_112040_Linux-x86-64_1of7.zip p13390677_112040_Linux-x86-64_2of7.zip

[oracle@rac01 ~] $unzip p13390677_112040_Linux-x86-64_1of7.zip

[oracle@rac01 ~] $unzip p13390677_112040_Linux-x86-64_2of7.zip

-

[oracle@rac01 database] $. / runInstaller

-

[root@rac01 ~] # / opt/ora11g/oracle/product/11.2.4/dbhome_1/root.sh

-

[root@rac01 ~] # su-grid

[grid@rac01] $crsctl status res-t

[oracle@rac01 ~] $dbca

-

-

[oracle@rac01 ~] $sqlplus / as sysdba

-

SQL > show parameter db_unique

NAME TYPE VALUE

-

Db_unique_name string kingsql

SQL > select instance_name from v$instance

INSTANCE_NAME

-

Kingsql1

SQL > quit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0-64bit Production

With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP

Data Mining and Real Application Testing options

[oracle@rac01 ~] $exit

Logout

[root@rac01 scripts] # su-grid

[grid@rac01 ~] $crsctl status res 0t

CRS-2613: Could not find resource '0tasking.

[grid@rac01] $crsctl status res-t

NAME TARGET STATE SERVER STATE_DETAILS

Local Resources

Ora.DATA.dg

ONLINE ONLINE rac01

Ora.LISTENER.lsnr

ONLINE ONLINE rac01

Ora.OCR.dg

ONLINE ONLINE rac01

Ora.asm

ONLINE ONLINE rac01 Started

Ora.gsd

OFFLINE OFFLINE rac01

Ora.net1.network

ONLINE ONLINE rac01

Ora.ons

ONLINE ONLINE rac01

Cluster Resources

Ora.LISTENER_SCAN1.lsnr

1 ONLINE ONLINE rac01

Ora.LISTENER_SCAN2.lsnr

1 ONLINE ONLINE rac01

Ora.LISTENER_SCAN3.lsnr

1 ONLINE ONLINE rac01

Ora.cvu

1 ONLINE ONLINE rac01

Ora.kingsql.db

1 ONLINE ONLINE rac01 Open

Ora.oc4j

1 ONLINE ONLINE rac01

Ora.rac01.vip

1 ONLINE ONLINE rac01

Ora.scan1.vip

1 ONLINE ONLINE rac01

Ora.scan2.vip

1 ONLINE ONLINE rac01

Ora.scan3.vip

1 ONLINE ONLINE rac01

[grid@rac01 ~] $sqlplus / as sysdba

SQL*Plus: Release 11.2.0.4.0 Production on Tue May 15 00:59:29 2018

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 Real Application Clusters and Automatic Storage Management options

SQL > show parameter db_unique

NAME TYPE VALUE

-

Db_unique_name string + ASM

SQL > select instance_name from v$instance

INSTANCE_NAME

-

+ ASM1

SQL > quit

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report