In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
This article focuses on "the detailed process of ORALCLEE installation and deployment". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn "the detailed process of ORALCLEE installation and deployment"!
(1) Prophase:
Close iptables and selinux
1. Operating system:
[root@localhost ~] # uname-r
2.6.32-279.el6.x86_64
Hanzheng
two
[root@localhost ~] # cat / etc/redhat-release
Red Hat Enterprise Linux Server release 6.3
(Santiago)
2. Database software:
10201_database_linux_x86_64.cpio.gz
2. Preparation:
1. Unpack:
[root@localhost Desktop] # mv
10201_database_linux_x86_64.cpio.gz /
[root@localhost Desktop] # cd /
[root@localhost /] # gunzip
10201_database_linux_x86_64.cpio.gz
[root@localhost /] # cpio-idmv / dev/null | | F = "$F $I"
Done; echo $Fitterunset F
Output missing packages:
Compat-gcc-34 compat-libstdc++-296 openmotif22 setarch
[root@localhost install] # yum-y install compat-gcc-34
Compat-libstdc++-296 openmotif22 setarch
# setarch this package is gone in rhel6, so ignore it
The simple configuration of Yum is as follows:
Hanzheng
five
[root@localhost ~] # cat / etc/yum.repos.d/rhel-source.repo
[han-server]
Name=server
Baseurl= file:///mnt
Enabled=1
Gpgcheck=0
66. Planning of hostname and P IP
[root@localhost install] # hostname oracle.com
[root@localhost install] # vim / etc/sysconfig/network
NETWORKING=yes
HOSTNAME=oracle.com
[root@localhost install] # ifconfig | grep 'inet'
Inet addr:192.168.1.250 Bcast:192.168.1.255
Mask:255.255.255.0
Inet addr:127.0.0.1 Mask:255.0.0.0
Hanzheng
six
[root@localhost install] # cat / etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4
Localhost4.localdomain4
:: 1 localhost localhost.localdomain localhost6
Localhost6.localdomain6
192.168.1.250 oracle.com
7. Operating system resource restrictions
Kernel.shmall = 2097152
Kernel.shmmax = 2147483648
Kernel.shmmni = 4096
Kernel.sem = 250 32000 100 128
Fs.file-max = 65536
Net.ipv4.ip_local_port_range = 1024 65000
Net.core.rmem_default = 1048576
Net.core.rmem_max = 1048576
Net.core.wmem_default = 262144
Net.core.wmem_max = 262144
[root@localhost install] # vim / etc/sysctl.conf
Hanzheng
seven
[root@localhost install] # sysctl-p
8. User creation
[root@localhost install] # groupadd-g 1000 dba
[root@localhost install] # groupadd-g 1001 oinstall
[root@localhost install] # useradd-u 1001-g oinstall-G dba
Oracle
[root@localhost install] # echo "oracle" | passwd-- stdin
Oracle
Changing password for user oracle.
Passwd: all authentication tokens updated successfully.
9. User variable setting
[root@localhost install] # vim / home/oracle/.bash_profile
Export ORACLE_BASE=/u01/oracle
Hanzheng
eight
Export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
Export ORACLE_SID=ora10g
Export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
Export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
[root@localhost install] # source / home/oracle/.bash_profile
10. Create the necessary directories
[root@localhost install] # mkdir-p / u01/oracle
[root@localhost install] # chown oracle:oinstall-R / u01 /
11. User resource restrictions
[root@localhost install] # vim / etc/security/limits.conf
Oracle soft nproc 2047
Oracle hard nproc 16384
Oracle soft nofile 1024
Oracle hard nofile 65536
3. Start the installation:
[root@localhost install] # chown oracle:oinstall-R
Hanzheng
nine
/ database/
[root@localhost /] # su-oracle
[oracle@oracle ~] $/ database/runInstaller
11. Graphic installation software
Xstart remote call Graphics
Hanzheng
ten
Hanzheng
eleven
Hanzheng
twelve
The relevant notes are as follows:
-
10.2.0.1
12c 11g 10g 9i
10.1 10.2.0.1 10.2.0.5
11.2.0.4
12.2.0.1
12.1 12.2
9.1 9.2
.gz
.zip
Www.oracle.com-registered account-hanzheng@163.com
Language--
Download---11g2
Ocp 8000 multiple choice answer 051 052 053 1000
Answers to ocm 35000 operation questions
10g-linux 5-linux 6
Package .cpio decompression format
Cpio-idmv < 10201_database_linux_x86_64.cpio
1---iptable selinux
[root@localhost H-oracle] # iptables-F
[root@localhost H-oracle] # service iptables save
[root@localhost H-oracle] # service iptables stop
[root@localhost H-oracle] # chkconfig iptables off
[root@localhost H-oracle] # getenforce
Permissive-disabled
Enforcing
[root@localhost H-oracle] # setenforce 0
[root@localhost H-oracle] # vim / etc/selinux/config
-SELINUX=disabled
2---IP must be static
[root@localhost H-oracle] # vim / etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE= "eth0"
-BOOTPROTO= "static"
HWADDR= "00:0C:29:28:EB:F6"
NM_CONTROLLED= "yes"
-& gt
TYPE= "Ethernet"
UUID= "72c450f9-0760-4f24-8968-3f113c5ae301"
-IPADDR=172.16.100.251
-NETMASK=255.255.255.0
-GATEWAY=172.16.100.254
[root@localhost H-oracle] # service network restart
3Murray-Host name
[root@localhost H-oracle] # hostname han
[root@localhost H-oracle] # vim / etc/sysconfig/network
[root@localhost H-oracle] # cat / etc/sysconfig/network
NETWORKING=yes
-HOSTNAME=han
4-ip binds to hostname
Root@localhost H-oracle] # vim / etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
:: 1 localhost localhost.localdomain localhost6 localhost6.localdomain6
-172.16.100.251 han
5--YUM
[rhel6]
Name=wudong
Baseurl= file:///mnt
Enabled=1
Gpgcheck=0
~
[root@han yum.repos.d] # yum clean al
[root@han yum.repos.d] # yum repolist
=
Oracle Linux
L
--
(1) hardware check
Mem swap / tmp
(2) Software
Yum
(3) create a user group
Oinstall
Dba
Oper
Oracle
Nobody
(4) Kernel parameters
/ etc/sysctl.conf
Sysctl-p
(5) shell
Soft hard
/ etc/security/limits.conf
(6) create a directory
Mkdir-p / u01/app/oracle
Chown oracle:oinstall-R / u01/app/oracle
Chmod 775-R / U01
The first version was released that year?
9i 10g 12c
Who is the first employee?
Scott tiger
What year did 11g come out?
10g-support.oracle.com
ORACLE_BASE /
ORACLE_HOME / /wuwu
ORACLE_SID ora10g
Qq cf lol dnf
D:\ tencent\ QQ
D:\ tencent\ CF
D:\ tencent\ lol
At this point, I believe you have a deeper understanding of "the detailed process of ORALCLEE installation and deployment". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.