search
HomeDatabaseMysql Tutorial Solaris 10(x86)构建Oracle 10g RAC之--建立数据库

Solaris10(x86)构建Oracle10gRAC之--建立数据库系统环境:操作系统:Solaris10(x86-64)Cluster:OracleCRS10.2.0.1.0Oracle:Oracle10.2.0.1.0如图所示:RAC系

Solaris 10(x86)构建Oracle 10g RAC之--建立数据库

系统环境:

操作系统:Solaris 10(x86-64)

Cluster: Oracle CRS 10.2.0.1.0

Oracle:  Oracle 10.2.0.1.0


如图所示:RAC 系统架构

wKiom1S_b-OSHjhcAAGktznT6W4920.jpg


四、通过netca建立监听器

     对于listener可以通过netca在建库之前建立,也可以在用dbca建库时来建立。

wKioL1TAl56xSNlmAALoQZqnPW0979.jpg


wKioL1TAl5-C1eceAAMJCYaIYt4401.jpg


Listener建立成功,验证:

[root@node1:/]# crs_stat -t Name           Type           Target    State     Host         ------------------------------------------------------------ ora....E1.lsnr application    ONLINE    ONLINE    node1        ora.node1.gsd  application    ONLINE    ONLINE    node1        ora.node1.ons  application    ONLINE    ONLINE    node1        ora.node1.vip  application    ONLINE    ONLINE    node1        ora....E2.lsnr application    ONLINE    ONLINE    node2        ora.node2.gsd  application    ONLINE    ONLINE    node2        ora.node2.ons  application    ONLINE    ONLINE    node2        ora.node2.vip  application    ONLINE    ONLINE    node2        [root@node1:/]# su - oracle Oracle Corporation      SunOS 5.10      Generic Patch   January 2005 [oracle@node1:/export/home/oracle]$ lsnrctl status LSNRCTL for Solaris: Version 10.2.0.1.0 - Production on 21-JAN-2015 15:51:45 Copyright (c) 1991, 2005, Oracle.  All rights reserved. Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521)) STATUS of the LISTENER ------------------------ Alias                     LISTENER_NODE1 Version                   TNSLSNR for Solaris: Version 10.2.0.1.0 - Production Start Date                21-JAN-2015 15:50:43 Uptime                    0 days 0 hr. 1 min. 2 sec Trace Level               off Security                  ON: Local OS Authentication SNMP                      OFF Listener Parameter File   /export/home/ora10/product/10.2.0/db_1/network/admin/listener.ora Listener Log File         /export/home/ora10/product/10.2.0/db_1/network/log/listener_node1.log Listening Endpoints Summary...   (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.8.13)(PORT=1521)))   (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.8.11)(PORT=1521))) Services Summary... Service "PLSExtProc" has 1 instance(s).   Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service... The command completed successfully

五、通过DBCA建立数据库

wKioL1TAmEewikJBAAMMuS4G2SA257.jpg


建立集群库

wKioL1TAmEnSnie_AAHnRU_RlQM456.jpg


wKiom1TAl3OjMxTyAAKyoesYAcM960.jpg


wKioL1TAmEuhQWgSAAM-ZXZvCcU142.jpg


数据库存储ASM设备

wKiom1TAl3bDPaEdAANlFEJKxDc609.jpg


建立ASM Instance的pfile

wKioL1TAmE3waBgIAAJWPTAdi1Q655.jpg


建立ASM DISKGROUP

wKioL1TAmE2wAqafAALmC3k8qqM358.jpg


通过RAW建立ASM diskgroup

wKiom1TAl3jAhkF8AAKwqddg3lc157.jpg


wKiom1TAl3jTRkltAAKWNeaILM4231.jpg


wKioL1TAmFCi7sKTAALd6GH0Et0509.jpg


wKiom1TAl3vxsJe0AAKYrJDxKG4772.jpg


wKioL1TAmFPiFDT8AAKmLOppX9I679.jpg


wKiom1TAl32RthFPAAL4Zts5ZF4375.jpg


wKioL1TAmFWCcxxZAAMw_tE4vz0963.jpg


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What Are the Limitations of Using Views in MySQL?What Are the Limitations of Using Views in MySQL?May 14, 2025 am 12:10 AM

MySQLviewshavelimitations:1)Theydon'tsupportallSQLoperations,restrictingdatamanipulationthroughviewswithjoinsorsubqueries.2)Theycanimpactperformance,especiallywithcomplexqueriesorlargedatasets.3)Viewsdon'tstoredata,potentiallyleadingtooutdatedinforma

Securing Your MySQL Database: Adding Users and Granting PrivilegesSecuring Your MySQL Database: Adding Users and Granting PrivilegesMay 14, 2025 am 12:09 AM

ProperusermanagementinMySQLiscrucialforenhancingsecurityandensuringefficientdatabaseoperation.1)UseCREATEUSERtoaddusers,specifyingconnectionsourcewith@'localhost'or@'%'.2)GrantspecificprivilegeswithGRANT,usingleastprivilegeprincipletominimizerisks.3)

What Factors Influence the Number of Triggers I Can Use in MySQL?What Factors Influence the Number of Triggers I Can Use in MySQL?May 14, 2025 am 12:08 AM

MySQLdoesn'timposeahardlimitontriggers,butpracticalfactorsdeterminetheireffectiveuse:1)Serverconfigurationimpactstriggermanagement;2)Complextriggersincreasesystemload;3)Largertablesslowtriggerperformance;4)Highconcurrencycancausetriggercontention;5)M

MySQL: Is it safe to store BLOB?MySQL: Is it safe to store BLOB?May 14, 2025 am 12:07 AM

Yes,it'ssafetostoreBLOBdatainMySQL,butconsiderthesefactors:1)StorageSpace:BLOBscanconsumesignificantspace,potentiallyincreasingcostsandslowingperformance.2)Performance:LargerrowsizesduetoBLOBsmayslowdownqueries.3)BackupandRecovery:Theseprocessescanbe

MySQL: Adding a user through a PHP web interfaceMySQL: Adding a user through a PHP web interfaceMay 14, 2025 am 12:04 AM

Adding MySQL users through the PHP web interface can use MySQLi extensions. The steps are as follows: 1. Connect to the MySQL database and use the MySQLi extension. 2. Create a user, use the CREATEUSER statement, and use the PASSWORD() function to encrypt the password. 3. Prevent SQL injection and use the mysqli_real_escape_string() function to process user input. 4. Assign permissions to new users and use the GRANT statement.

MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment