vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I am on sap/oracle on hpux11 with serviceguard with one package. i want to test failover in my QAS, PRD as below 1) package is on PRD 2) halt the package on the PRD and move it to QAS 2.1) cmhaltpkg pkg1 2.2) cmrunpkg -n QAS pkg1 2.3) cmmodpkg -e pkg1 3) now package is on QAS 4) move the package back to PRD 4.1) cmhaltpkg pkg1 4.2) cmrunpkg -n PRD pkg1 4.3) cmmodpkg -e pkg1 am i on the right steps? |
| |||
| On 2004-09-22, yls177 <yls177@hotmail.com> wrote: > > I am on sap/oracle on hpux11 with serviceguard with one package. > i want to test failover in my QAS, PRD as below > > 1) package is on PRD > 2) halt the package on the PRD and move it to QAS > 2.1) cmhaltpkg pkg1 > 2.2) cmrunpkg -n QAS pkg1 > 2.3) cmmodpkg -e pkg1 > > 3) now package is on QAS > > 4) move the package back to PRD > 4.1) cmhaltpkg pkg1 > 4.2) cmrunpkg -n PRD pkg1 > 4.3) cmmodpkg -e pkg1 > > > am i on the right steps? Looks good to me. Doug -- -------- Senior UNIX Admin O'Leary Computer Enterprises dkoleary@olearycomputers.com (w) 630-904-6098 (c) 630-248-2749 resume: http://home.comcast.net/~dkoleary/resume.html |
| ||||
| Doug O'Leary <dkoleary@olearycomputers.com> wrote in message news:<91e4d.933$o06.4@news.flashnewsgroups.com>... > On 2004-09-22, yls177 <yls177@hotmail.com> wrote: > > > > I am on sap/oracle on hpux11 with serviceguard with one package. > > i want to test failover in my QAS, PRD as below > > > > 1) package is on PRD > > 2) halt the package on the PRD and move it to QAS > > 2.1) cmhaltpkg pkg1 > > 2.2) cmrunpkg -n QAS pkg1 > > 2.3) cmmodpkg -e pkg1 > > > > 3) now package is on QAS > > > > 4) move the package back to PRD > > 4.1) cmhaltpkg pkg1 > > 4.2) cmrunpkg -n PRD pkg1 > > 4.3) cmmodpkg -e pkg1 > > > > > > am i on the right steps? > > Looks good to me. > > Doug the below should be better, i think # cmmodpkg -v -e -n QAS dbciPRD <-- Ensure QAS can run dbciPRD # cmhaltpkg -v dbciPRD # cmrunpkg -v -n QAS dbciPRD # cmmodpkg -v -e dbciPRD Now package is on QAS # cmmodpkg -v -e -n PRD dbciPRD <-- Ensure PRD can run dbciPRD # cmhaltpkg -v dbciPRD # cmrunpkg -v -n PRD dbciPRD # cmmodpkg -v -e dbciPRD # cmmodpkg -v -e -n QAS dbciPRD <-- Ensure QAS can run dbciPRD |