Operating System - HP-UX
1825808 Members
2182 Online
109688 Solutions
New Discussion

Re: Error on Ignite-UX during copy CD.

 
Jimmy Tom_1
Advisor

Error on Ignite-UX during copy CD.

During the Ignite Server setup, using the GUI, I get an error during the copy CD to a depot. The error is
"ERROR: Release for -r must be in a form like B.10.20.
Run cfg_srvr -? for help."

Do anyone know why I get this? I has to create the depot using the add_release cmd.

Thanks
4 REPLIES 4
Patrick Wessel
Honored Contributor

Re: Error on Ignite-UX during copy CD.

Jimmy,

I found a document with the following contents:


Do this to resolve the problem:

1. Modify cfg_srvr to add a * at the end of the release name.

2. Create a directory, /var/opt/ignite/data/Rel_B.11.00.01.

3. manually edit /var/opt/ignite/INDEX to add an entry
for B.11.00.01.

4. Rerun make_config & manage_index for each of the
11.0 depots.

Now the Server Setup in the Ignite GUI should work.
There is no good troubleshooting with bad data
Jimmy Tom_1
Advisor

Re: Error on Ignite-UX during copy CD.

Patrick,

Can you please provide the syntax and the exact location for the adding of * to the end of the release name in the cfg_srvr file?

Thanks
Patrick Wessel
Honored Contributor

Re: Error on Ignite-UX during copy CD.

Jimmy,

Sorry for that.
The cfg_srvr aspect the release in the format B1x.xx. In your case does the release not fit into that format. (I guess your Core Media Release is HP-UX 11.0 ACE 9911, B.11.00.01)
In that case you have to edit the line:

if [[ "$release" != B.1+(0|1)+(.)+([0-9])+([0-9]) ]]; then

that it accept release versions other than B1x.xx
There is no good troubleshooting with bad data
Jimmy Tom_1
Advisor

Re: Error on Ignite-UX during copy CD.

Patrick,

Got it working, here is the exact syntax in the cfg_srvr file.

#vi /opt/ignite/lbin/cfg_srvr

search for the following line:

if [[ "$release" != B.1+(0|1)+(.)+([0-9])+([0-9]) ]]; then

change the above line to the following:

if [[ "$release" != B.1+(0|1)+(.)+([0-9])+([0-9])+(.)+([0-9])+([0-9]) ]]; then

This should account for the revision number change from B.11.00 to B.11.00.01

Once this was done, I was able to use the Ignite GUI to cp the core CD to the Ignite depots during the Ignite server configuration.

Thanks