search
HomeDatabaseMysql TutorialOracle 11gR2 RAC集群服务启动与关闭总结

最近在公司搭建RAC集群,但对其启动与关闭的顺序和原理不是特别清晰,我在教学工作中也发现了很多学员对RAC知识了解甚少,因此我

引言:这写篇文章的出处是因为我的一名学生最近在公司搭建RAC集群,但对其启动与关闭的顺序和原理不是特别清晰,我在教学工作中也发现了很多学员对RAC知识了解甚少,因此我在这里就把RAC里面涉及到的最常用的启动与关闭顺序和命令逐一列举出来,由于RAC的后台资源较多,因此涉及到的命令也很多,最后附上帮助手册让在工作中临时使用时也可以迅速查到,如果这篇文章能够帮到大家就是我今后继续努力撰写的动力,感谢大家对我文章的浏览多提宝贵意见。

 关闭过程(CRS集群关闭->关闭数据库)
1.关闭数据库:
 用oracl用户执行srvctl命令
 语法:srvctl stop database -d dbname [-o immediate]
 作用:可以一次性关闭dbname的所有实例
[Oracle@rac1 ~]$ srvctl stop database -d racdb  -停止所有节点上的实例
 然后查看状态:
[oracle@rac1 ~]$ srvctl status database -d racdb   
 Instance rac1 is not running on node rac1
 Instance rac2 is not running on node race
 2.停止HAS(High Availability Services),必须以root用户操作
[root@rac1 oracle]# cd /u01/grid/11.2.0/grid/bin
 [root@rac1 bin]# ./crsctl stop has -f
 [root@rac1 bin]# ./crsctl stop crs -f
本命令只能关闭当前节点的CRS服务,因此需要在RAC的所有节点上执行,启动也一样。has与crs等同
3.停止节点集群服务,必须以root用户:
[root@rac1 oracle]# cd /u01/grid/11.2.0/grid/bin
 [root@rac1 bin]# ./crsctl stop cluster        ----停止本节点集群服务
 [root@rac1 bin]# ./crsctl stop cluster -all  ---停止所有节点服务
 也可以如下控制所停节点:
[root@rac1 bin]# crsctl stop cluster -n rac1 rac2
 CRS-2677: Stop of 'ora.cssd' on 'rac1' succeeded
 CRS-2677: Stop of 'ora.cssd' on 'rac2' succeeded
。。。。。。。。。。。省略日志输出。。。。。。。。。。。。。。
 你如果想一条命令把所有的进程全部停止可以使用上述命令。如果不指定参数的话对当前节点有效,如果指定参数的话对相关参数节点有效。
4.检查集群进程状态
[root@rac1 bin]# crsctl check cluster
详细输出
[root@rac1 bin]# crs_stat -t -v
只检查本节点的集群状态
[root@rac1 bin]# crsctl check crs

启动过程(CRS集群启动->启动数据库)
1.启动HAS
单一节点启动
[root@rac2 ~]# crsctl start has
 [root@rac2 ~]# crsctl start crs
 [root@rac2 ~]# crsctl check crs
 CRS-4638: Oracle High Availability Services is online
 CRS-4537: Cluster Ready Services is online
 CRS-4529: Cluster Synchronization Services is online
 CRS-4533: Event Manager is online
所有节点启动
[root@rac1 bin]# crsctl start cluster -n rac1 rac2
 CRS-4123: Oracle High Availability Services has been started.
 [root@rac1 bin]# crsctl start cluster -all
 [root@rac2 ~]# crsctl check cluster
 CRS-4537: Cluster Ready Services is online
 CRS-4529: Cluster Synchronization Services is online
 CRS-4533: Event Manager is online
此命令会在后台启动所有RAC CRS相关进程
[root@rac2 ~]# crs_stat -t -v
 CRS-0184: Cannot communicate with the CRS daemon.
因为start has启动的crs进程比较多因此会启动的比较慢,我的机器等待了5分钟,在没有完全启动成功之前会报上述错误,需要耐心等待一段时间后执行下面命令即可查看到所有CRS相关进程服务已经启动。
[root@rac2 ~]# crs_stat -t -v
 Name          Type          R/RA  F/FT  Target    State    Host       
 ----------------------------------------------------------------------
 ora.DATA.dg    ora....up.type 0/5    0/    ONLINE    ONLINE    rac1       
 ora....ER.lsnr ora....er.type 0/5    0/    ONLINE    ONLINE    rac1       
 ora....N1.lsnr ora....er.type 0/5    0/0    ONLINE    ONLINE    rac2       
 ora....N2.lsnr ora....er.type 0/5    0/0    ONLINE    ONLINE    rac1       
 ora....N3.lsnr ora....er.type 0/5    0/0    ONLINE    ONLINE    rac1       
 ora.asm        ora.asm.type  0/5    0/    ONLINE    ONLINE    rac1       
 ora.cvu        ora.cvu.type  0/5    0/0    ONLINE    ONLINE    rac1       
 ora.gsd        ora.gsd.type  0/5    0/    OFFLINE  OFFLINE             
 ora....network ora....rk.type 0/5    0/    ONLINE    ONLINE    rac1       
 ora.oc4j      ora.oc4j.type  0/1    0/2    ONLINE    ONLINE    rac1       
 ora.ons        ora.ons.type  0/3    0/    ONLINE    ONLINE    rac1       
 ora....SM1.asm application    0/5    0/0    ONLINE    ONLINE    rac1       
 ora....C1.lsnr application    0/5    0/0    ONLINE    ONLINE    rac1       
 ora.rac1.gsd  application    0/5    0/0    OFFLINE  OFFLINE             
 ora.rac1.ons  application    0/3    0/0    ONLINE    ONLINE    rac1       
 ora.rac1.vip  ora....t1.type 0/0    0/0    ONLINE    ONLINE    rac1       
 ora....SM2.asm application    0/5    0/0    ONLINE    ONLINE    rac2       
 ora....C2.lsnr application    0/5    0/0    ONLINE    ONLINE    rac2       
 ora.rac2.gsd  application    0/5    0/0    OFFLINE  OFFLINE             
 ora.rac2.ons  application    0/3    0/0    ONLINE    ONLINE    rac2       
 ora.rac2.vip  ora....t1.type 0/0    0/0    ONLINE    ONLINE    rac2       
 ora....ry.acfs ora....fs.type 0/5    0/    ONLINE    ONLINE    rac1       
 ora.scan1.vip  ora....ip.type 0/0    0/0    ONLINE    ONLINE    rac2       
 ora.scan2.vip  ora....ip.type 0/0    0/0    ONLINE    ONLINE    rac1       
 ora.scan3.vip  ora....ip.type 0/0    0/0    ONLINE    ONLINE    rac1
说明:
 英文解释
ora.gsd is OFFLINE by default ifthere is no 9i database in the cluster.
 ora.oc4j is OFFLINE in 11.2.0.1 as DatabaseWorkload Management(DBWLM) is unavailable.  these can be ignored in11gR2 RAC.
中文解释
ora.gsd是集群服务中用于与9i数据库进行通信的一个进程,在当前版本中为了向后兼容才保存下来,,状态为OFFLINE不影响CRS的正常运行与性能,我们忽略即可
ora.oc4j是在11.2.0.2以上版本中有效的服务进程,用于DBWLM的资源管理,因此在11.2.0.1以下版本并没有使用
2.启动数据库:
oracl用户执行srvctl命令:
 语法:srvctl start|stop|status database -d dbname [-o immediate]
 作用:可以一次性启动dbname的所有实例
[oracle@rac1 ~]$ srvctl start database -d racdb  -启动所有节点上的实例
 然后查看状态:
[oracle@rac1 ~]$ srvctl status database -d racdb 
 3.详细输出资源全名称并检查状态
crsctl status resource -t
 crsctl status resource
 4.常用srvctl命令
 指定dbname上某个实例
srvctl start|stop|status instance -d -i
 5.显示RAC下所有实例配置与状态
srvctl status|config database -d
 6.显示所有节点的应用服务(VIP,GSD,listener,ONS)
srvctl start|stop|status nodeapps -n
 7.ASM进程服务管理
srvctl start|stop|status|config asm -n [-i ] [-o]
 srvctl config asm -a
 srvctl status asm -a
 6.可以获取所有的环境信息:
srvctl getenv database -d [-i]
 7.设置全局环境和变量:
srvctl setenv database -d -t LANG=en
 8.在OCR中删除已有的数据库信息
srvctl remove database -d
 9.向OCR中添加一个数据库的实例:
srvctl add instance -d -i -n
 srvctl add instance -d -i -n
 10.检查监听的状态
srvctl status listener
 srvctl config listener -a
 SCAN配置信息
srvctl config scan
 SCAN listener状态信息
srvctl status scan

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
Explain the InnoDB Buffer Pool and its importance for performance.Explain the InnoDB Buffer Pool and its importance for performance.Apr 19, 2025 am 12:24 AM

InnoDBBufferPool reduces disk I/O by caching data and indexing pages, improving database performance. Its working principle includes: 1. Data reading: Read data from BufferPool; 2. Data writing: After modifying the data, write to BufferPool and refresh it to disk regularly; 3. Cache management: Use the LRU algorithm to manage cache pages; 4. Reading mechanism: Load adjacent data pages in advance. By sizing the BufferPool and using multiple instances, database performance can be optimized.

MySQL vs. Other Programming Languages: A ComparisonMySQL vs. Other Programming Languages: A ComparisonApr 19, 2025 am 12:22 AM

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages ​​such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages ​​have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

Learning MySQL: A Step-by-Step Guide for New UsersLearning MySQL: A Step-by-Step Guide for New UsersApr 19, 2025 am 12:19 AM

MySQL is worth learning because it is a powerful open source database management system suitable for data storage, management and analysis. 1) MySQL is a relational database that uses SQL to operate data and is suitable for structured data management. 2) The SQL language is the key to interacting with MySQL and supports CRUD operations. 3) The working principle of MySQL includes client/server architecture, storage engine and query optimizer. 4) Basic usage includes creating databases and tables, and advanced usage involves joining tables using JOIN. 5) Common errors include syntax errors and permission issues, and debugging skills include checking syntax and using EXPLAIN commands. 6) Performance optimization involves the use of indexes, optimization of SQL statements and regular maintenance of databases.

MySQL: Essential Skills for Beginners to MasterMySQL: Essential Skills for Beginners to MasterApr 18, 2025 am 12:24 AM

MySQL is suitable for beginners to learn database skills. 1. Install MySQL server and client tools. 2. Understand basic SQL queries, such as SELECT. 3. Master data operations: create tables, insert, update, and delete data. 4. Learn advanced skills: subquery and window functions. 5. Debugging and optimization: Check syntax, use indexes, avoid SELECT*, and use LIMIT.

MySQL: Structured Data and Relational DatabasesMySQL: Structured Data and Relational DatabasesApr 18, 2025 am 12:22 AM

MySQL efficiently manages structured data through table structure and SQL query, and implements inter-table relationships through foreign keys. 1. Define the data format and type when creating a table. 2. Use foreign keys to establish relationships between tables. 3. Improve performance through indexing and query optimization. 4. Regularly backup and monitor databases to ensure data security and performance optimization.

MySQL: Key Features and Capabilities ExplainedMySQL: Key Features and Capabilities ExplainedApr 18, 2025 am 12:17 AM

MySQL is an open source relational database management system that is widely used in Web development. Its key features include: 1. Supports multiple storage engines, such as InnoDB and MyISAM, suitable for different scenarios; 2. Provides master-slave replication functions to facilitate load balancing and data backup; 3. Improve query efficiency through query optimization and index use.

The Purpose of SQL: Interacting with MySQL DatabasesThe Purpose of SQL: Interacting with MySQL DatabasesApr 18, 2025 am 12:12 AM

SQL is used to interact with MySQL database to realize data addition, deletion, modification, inspection and database design. 1) SQL performs data operations through SELECT, INSERT, UPDATE, DELETE statements; 2) Use CREATE, ALTER, DROP statements for database design and management; 3) Complex queries and data analysis are implemented through SQL to improve business decision-making efficiency.

MySQL for Beginners: Getting Started with Database ManagementMySQL for Beginners: Getting Started with Database ManagementApr 18, 2025 am 12:10 AM

The basic operations of MySQL include creating databases, tables, and using SQL to perform CRUD operations on data. 1. Create a database: CREATEDATABASEmy_first_db; 2. Create a table: CREATETABLEbooks(idINTAUTO_INCREMENTPRIMARYKEY, titleVARCHAR(100)NOTNULL, authorVARCHAR(100)NOTNULL, published_yearINT); 3. Insert data: INSERTINTObooks(title, author, published_year)VA

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 Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools