Steps to allow VCS Oracle Agent to manage Single Oracle Database Instance with ASM:
2. Oracle ASM and Database single instance setup
2.1 Select and Install Grid Infrastructure Software only and execute below for standalone server. (1st and subsequent nodes)
/u01/app/11.2.0/grid/perl/bin/perl -I/u01/app/11.2.0/grid/perl/lib -I/u01/app/11.2.0/grid/crs/install /u01/app/11.2.0/grid/crs/install/roothas.pl2.2 Configure Oracle ASM with “asmca”. (1st node only)
2.3 Select and Install Oracle Database Software only (1st and subsequent nodes)
2.4 Configure listener with “netca” (1st and subsequent nodes)
2.5 Configure Oracle DB with “dbca” (1st node only)
2.6 Create ASM and add ASM on remote host (subsequent nodes)
1st node (host85)
host85-oracle>export ORACLE_SID=+ASM
host85-oracle>export ORACLE_HOME=/u01/app/11.2.0/grid
host85-oracle>asmcmd
ASMCMD> ls
REGISTRY.253.762436131
ASMCMD> spget +DATA/asm/ASMPARAMETERFILE/REGISTRY.253.762436131
+DATA/asm/asmparameterfile/registry.253.762436131
ASMCMD> spcopy +DATA/asm/ASMPARAMETERFILE/REGISTRY.253.762436131 /u01/app/11.2.0/grid/dbs/spfileASM.ora
2nd node (host83) and subsequent nodes (grid owner)
host85-oracle>crsctl stop resource ora.asm –f
host85-oracle>scp -p spfileASM.ora 10.10.10.83:/u01/app/11.2.0/grid/dbs
host83-oracle>srvctl add asm -l LISTENER –p\ /u01/app/11.2.0/grid/dbs/spfileASM.ora -d '/dev/rdisk/*'
host83-oracle>crsctl start resource ora.cssd
host83-oracle>crsctl start resource ora.asm
host83-oracle>export ORACLE_SID=+ASM
host83-oracle>export ORACLE_HOME=/u01/app/11.2.0/grid
host83-oracle>sqlplus / as sysasm
SQL> alter diskgroup DATA mount;
host83-oracle>crsctl status resource –t (Output display register ASM DG show in RED)
--------------------------------------------------------------------------------
NAME
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.DATA.dg
ONLINE ONLINE host83
ora.LISTENER.lsnr
ONLINE ONLINE host83
ora.asm
ONLINE ONLINE host83 Started
ora.ons
OFFLINE OFFLINE host83
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.cssd
1 ONLINE ONLINE host83
ora.diskmon
1 ONLINE ONLINE host83
ora.evmd
1 ONLINE ONLINE host83
2.7 Enable Oracle Cluster Synchronization Service daemon to start automatically (1st and subsequent nodes)
host85-oracle>srvctl disable asmhost85-oracle>crsctl modify resource ora.asm -attr ENABLED=0
host85-oracle>crsctl modify resource ora.cssd -attr AUTO_START=always
2.8 Setting MLOCK priviledge for DBA user (1st and subsequent nodes)
host85-root>setprivgrp dba MLOCKhost85-root>echo "dba MLOCK" > /etc/privgroup
host85-root>/usr/bin/getprivgrp dba
2.9 Copy the $ORACLE_BASE/admin/SID (from 1st node to subsequent nodes)
host85-root>pwd/u01/app/oracle/admin
host85-root>tar xvf - HPUX | ssh 10.10.10.83 "cd /u01/app/oracle/admin; tar \ xvf - "
2.10 Copy the $ORACLE/dbs (from 1st node to subsequent nodes)
host85-root>pwd/u01/app/oracle/product/11.2.0/dbhome_1
host85-root>tar cvf - dbs | ssh 10.10.10.81 "cd /u01/app/oracle/product/11.2.0/dbhome_1; tar xvf -"
3 VCS ASM and VCS Service Group configuration
This diagram shows all VCS service groups and their resource types as well as their interlink relationship.
3.1 Setup ASM Instance Service group and add ASM Instance Resource type in the group.
hagrp -add asminstgrphagrp -modify asminstgrp SystemList host85 0 host83 1 host81 2
hagrp -modify asminstgrp AutoStartList host85 host83 host81
hagrp -modify asminstgrp Parallel 1
hares -add ASM_asminst ASMInst asminstgrp
hares -modify ASM_asminst Critical 1
hares -modify ASM_asminst MonitorOption 0
hares -modify ASM_asminst Sid +ASM
hares -modify ASM_asminst Owner oracle
hares -modify ASM_asminst Home /u01/app/11.2.0/grid
hares -modify ASM_asminst DBAUser
hares -modify ASM_asminst DBAPword
hares -modify ASM_asminst Pfile
hares -modify ASM_asminst StartUpOpt
hares -modify ASM_asminst ShutDownOpt
hares -modify ASM_asminst EnvFile
hares -modify ASM_asminst Encoding
hares -modify ASM_asminst Enabled 1
3.2 Setup oraasm_group service group for single Oracle DB and ASM instance. ASMDG, IP, NIC and Netlsnr resource type will be add into this service group. Oracle resource type also require if Oracle DB is configure.
hagrp -add oraasm_grp
hagrp -modify oraasm_grp SystemList host85 0 host83 1 host81 2
hagrp -modify oraasm_grp AutoStartList host85
hagrp -modify oraasm_grp Parallel 0
hares -add ASM_asmdg ASMDG oraasm_grp
hares -modify ASM_asmdg Critical 1
hares -modify ASM_asmdg Sid +ASM
hares -modify ASM_asmdg Owner oracle
hares -modify ASM_asmdg Home /u01/app/11.2.0/grid
hares -modify ASM_asmdg DBAUser
hares -modify ASM_asmdg DBAPword
hares -modify ASM_asmdg DiskGroups DATA
hares -modify ASM_asmdg EnvFile
hares -modify ASM_asmdg Encoding
hares -modify ASM_asmdg Enabled 1
hares -add IP_oraprod IP oraasm_grp
hares -modify IP_oraprod Critical 1
hares -modify IP_oraprod ArpDelay 1
hares -modify IP_oraprod IfconfigTwice 0
hares -modify IP_oraprod PrefixLen 0
hares -modify IP_oraprod Device lan2
hares -modify IP_oraprod Address 10.10.10.146
hares -modify IP_oraprod NetMask 255.255.252.0
hares -modify IP_oraprod Options
hares -modify IP_oraprod RouteOptions
hares -modify IP_oraprod Enabled 1
hares -add NIC_oraprod NIC oraasm_grp
hares -modify NIC_oraprod Critical 1
hares -modify NIC_oraprod NetworkType ether
hares -modify NIC_oraprod PingOptimize 1
hares -modify NIC_oraprod Protocol IPv4
hares -modify NIC_oraprod Device lan2
hares -modify NIC_oraprod NetworkHosts host85 host83 host81
hares -modify NIC_oraprod Enabled 1
hares -add LSNR_oraprod_lsnr Netlsnr oraasm_grp
hares -modify LSNR_oraprod_lsnr Critical 1
hares -modify LSNR_oraprod_lsnr Listener LISTENER
hares -modify LSNR_oraprod_lsnr MonScript ./bin/Netlsnr/LsnrTest.pl
hares -modify LSNR_oraprod_lsnr Owner oracle
hares -modify LSNR_oraprod_lsnr Home /u01/app/11.2.0/grid
hares -modify LSNR_oraprod_lsnr TnsAdmin /u01/app/11.2.0/grid/admin
hares -modify LSNR_oraprod_lsnr EnvFile
hares -modify LSNR_oraprod_lsnr LsnrPwd
hares -modify LSNR_oraprod_lsnr Encoding
hares -modify LSNR_oraprod_lsnr Enabled 1
ares -add ORA_oraprod Oracle oraasm_grp
hares -modify ORA_oraprod Critical 1
hares -modify ORA_oraprod StartUpOpt STARTUP_FORCE
hares -modify ORA_oraprod ShutDownOpt IMMEDIATE
hares -modify ORA_oraprod AutoEndBkup 1
hares -modify ORA_oraprod MonScript ./bin/Oracle/SqlTest.pl
hares -modify ORA_oraprod MonitorOption 0
hares -modify ORA_oraprod ManagedBy ADMIN
hares -modify ORA_oraprod Sid HPUX
hares -modify ORA_oraprod Owner oracle
hares -modify ORA_oraprod Home /u01/app/oracle/product/11.2.0/dbhome_1
hares -modify ORA_oraprod Pfile
hares -modify ORA_oraprod DBAUser system
hares -modify ORA_oraprod DBAPword ameMbmOmhMfoCmpOfoD
hares -modify ORA_oraprod EnvFile
hares -modify ORA_oraprod User
hares -modify ORA_oraprod Pword
hares -modify ORA_oraprod Table
hares -modify ORA_oraprod Encoding
hares -modify ORA_oraprod DBName
hares -modify ORA_oraprod Enabled 1
Add below in main.cf to create the link relationship:
requires group asminstgrp online local firm
IP_oraprod requires NIC_oraprod
LSNR_oraprod_lsnr requires IP_oraprod
LSNR_oraprod_lsnr requires ORA_oraprod
ORA_oraprod requires ASM_asmdg
Sample main.cf
host81-root>cat /etc/VRTSvcs/conf/config/main.cf
include "OracleASMTypes.cf"
include "types.cf"
include "CFSTypes.cf"
include "CRSResource.cf"
include "CVMTypes.cf"
include "Db2udbTypes.cf"
include "MultiPrivNIC.cf"
include "OracleTypes.cf"
include "PrivNIC.cf"
include "SybaseTypes.cf"
cluster hp818385 (
UserNames = { admin = hqrJqlQnrMrrPzrLqo }
Administrators = { admin }
UseFence = SCSI3
HacliUserLevel = COMMANDROOT
)
system host81 (
)
system host83 (
)
system host85 (
)
group asminstgrp (
SystemList = { host85 = 0, host83 = 1, host81 = 2 }
Parallel = 1
AutoStartList = { host85, host83, host81 }
)
ASMInst ASM_asminst (
Sid = "+ASM"
Owner = oracle
Home = "/u01/app/11.2.0/grid"
)
// resource dependency tree
//
// group asminstgrp
// {
// ASMInst ASM_asminst
// }
group oraasm_grp (
SystemList = { host85 = 0, host83 = 1, host81 = 2 }
AutoStartList = { host85 }
)
ASMDG ASM_asmdg (
Sid = "+ASM"
Owner = oracle
Home = "/u01/app/11.2.0/grid"
DiskGroups = { DATA }
)
IP IP_oraprod (
Device = lan2
Address = "10.10.10.146"
NetMask = "255.255.252.0"
)
NIC NIC_oraprod (
Device = lan2
NetworkHosts = { "10.10.10.85", "10.10.10.83", "10.10.10.81" }
)
Netlsnr LSNR_oraprod_lsnr (
Owner = oracle
Home = "/u01/app/11.2.0/grid"
TnsAdmin = "/u01/app/11.2.0/grid/admin"
)
Oracle ORA_oraprod (
Sid = HPUX
Owner = oracle
Home = "/u01/app/oracle/product/11.2.0/dbhome_1"
DBAUser = "system"
DBAPword = ameMbmOmhMfoCmpOfoD
)
requires group asminstgrp online local firm
IP_oraprod requires NIC_oraprod
LSNR_oraprod_lsnr requires IP_oraprod
LSNR_oraprod_lsnr requires ORA_oraprod
ORA_oraprod requires ASM_asmdg
// resource dependency tree
//
// group oraasm_grp
// {
// Netlsnr LSNR_oraprod_lsnr
// {
// IP IP_oraprod
// {
// NIC NIC_oraprod
// }
// Oracle ORA_oraprod
// {
// ASMDG ASM_asmdg
// }
// }
// }
INTERNATIONAL CONCEPT OF WORK FROM HOME
ReplyDeleteWork from home theory is fast gaining popularity because of the freedom and flexibility that comes with it. Since one is not bound by fixed working hours, they can schedule their work at the time when they feel most productive and convenient to them. Women & Men benefit a lot from this concept of work since they can balance their home and work perfectly. People mostly find that in this situation, their productivity is higher and stress levels lower. Those who like isolation and a tranquil work environment also tend to prefer this way of working. Today, with the kind of communication networks available, millions of people worldwide are considering this option.
Women & Men who want to be independent but cannot afford to leave their responsibilities at home aside will benefit a lot from this concept of work. It makes it easier to maintain a healthy balance between home and work. The family doesn't get neglected and you can get your work done too. You can thus effectively juggle home responsibilities with your career. Working from home is definitely a viable option but it also needs a lot of hard work and discipline. You have to make a time schedule for yourself and stick to it. There will be a time frame of course for any job you take up and you have to fulfill that project within that time frame.
There are many things that can be done working from home. A few of them is listed below that will give you a general idea about the benefits of this concept.
Baby-sitting
This is the most common and highly preferred job that Women & Men like doing. Since in today's competitive world both the parents have to work they need a secure place to leave behind their children who will take care of them and parents can also relax without being worried all the time. In this job you don't require any degree or qualifications. You only have to know how to take care of children. Parents are happy to pay handsome salary and you can also earn a lot without putting too much of an effort.
Nursery
For those who have a garden or an open space at your disposal and are also interested in gardening can go for this method of earning money. If given proper time and efforts nursery business can flourish very well and you will earn handsomely. But just as all jobs establishing it will be a bit difficult but the end results are outstanding.
Freelance
Freelance can be in different wings. Either you can be a freelance reporter or a freelance photographer. You can also do designing or be in the advertising field doing project on your own. Being independent and working independently will depend on your field of work and the availability of its worth in the market. If you like doing jewellery designing you can do that at home totally independently. You can also work on freelancing as a marketing executive working from home. Wanna know more, email us on workfromhome.otr214423@gmail.com and we will send you information on how you can actually work as a marketing freelancer.
Internet related work
This is a very vast field and here sky is the limit. All you need is a computer and Internet facility. Whatever field you are into work at home is perfect match in the software field. You can match your time according to your convenience and complete whatever projects you get. To learn more about how to work from home, contact us today on workfromhome.otr214423@gmail.comand our team will get you started on some excellent work from home projects.
Diet food
Since now a days Women & Men are more conscious of the food that they eat hence they prefer to have homemade low cal food and if you can start supplying low cal food to various offices then it will be a very good source of income and not too much of efforts. You can hire a few ladies who will help you out and this can be a good business.
Thus think over this concept and go ahead.