1826204 Members
2974 Online
109691 Solutions
New Discussion

Modular Package in 11.19

 
Rajeesh_3
Occasional Contributor

Modular Package in 11.19

Hi All,

Could any please share me the procedure to build the modular package, We are currently using the legacy packages in our environment
6 REPLIES 6
Rajeesh_3
Occasional Contributor

Re: Modular Package in 11.19

what are the diiffrenece in commands to make the legacy ( cmmakepkg -p & cmmkaepkg -s then cmcheckconf /cmapplyconf) & modular?
Uday_S_Ankolekar
Honored Contributor

Re: Modular Package in 11.19

OK do you want to migrate from legacy to Modular or just build new packages with modular feature?

Both has different level of simple configurations changes

USA



Good Luck..
Rajeesh_3
Occasional Contributor

Re: Modular Package in 11.19

I want to create a new modular package.
melvyn burnard
Honored Contributor

Re: Modular Package in 11.19

all well documented in the manual
Page 255 of http://bizsupport2.austin.hp.com/bc/docs/support/SupportManual/c02057890/c02057890.pdf
My house is the bank's, my money the wife's, But my opinions belong to me, not HP!
Manix
Honored Contributor

Re: Modular Package in 11.19


In most simple terms to create a modular package files with all the options
for fail-over or multinode packages
you may use the following two commands :-

cmmakepkg -n pkg1 -m sg/failover
$SGCONF/sg-all

cmmakepkg -n pkg1 -m sg/failover
$SGCONF/sg-all

for specific results following optons
may help further
===========================
â ¢ To generate a configuration file that contains all the optional modules:
cmmakepkg $SGCONF/pkg1/pkg1.conf
or

cmmakepkg -m sg/all $SGCONF/sg-all

â ¢ To create a generic failover package (that could be applied with out editing):
cmmakepkg -n pkg1 -m sg/failover $SGCONF/pkg1/pkg1.conf

â ¢ To generate a configuration file for a failover package that uses relocatable IP
addresses and runs an application that requires file systems to be mounted at run
time (enter the command all on one line):

cmmakepkg -m sg/failover -m sg/package_ip -m sg/service -m
sg/filesystem -m sg/volume_group $SGCONF/pkg1/pkg1.conf

â ¢ To generate a configuration file for a multi-node package that monitors cluster
resources (enter the command all on one line):
cmmakepkg -m sg/multi_node -m sg/resource
$SGCONF/pkg1/pkg1.conf

â ¢ To generate a configuration file for a failover package that runs an application that
requires another package to be up (enter the command all on one line):
cmmakepkg -m sg/failover -m sg/dependency -m sg/service
$SGCONF/pkg1/pkg1.conf

â ¢ To generate a configuration file adding the services module to an existing
package (enter the command all on one line):

cmmakepkg -i $SGCONF/pkg1/pkg1.conf -m sg/service
$SGCONF/pkg1/pkg1_v2.conf

Thanks

Manix
HP-UX been always lovable - Mani Kalra
Jacky Wing
Regular Advisor

Re: Modular Package in 11.19

Even easier to go to http://ip_address_of_server:2301

and create the package using html interface. as already described, you need to define the modules you require for the package.