- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Error on Ignite-UX during copy CD.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2000 02:18 PM
06-15-2000 02:18 PM
Error on Ignite-UX during copy CD.
"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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2000 12:21 AM
06-16-2000 12:21 AM
Re: Error on Ignite-UX during copy CD.
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2000 05:22 AM
06-16-2000 05:22 AM
Re: Error on Ignite-UX during copy CD.
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2000 05:56 AM
06-16-2000 05:56 AM
Re: Error on Ignite-UX during copy CD.
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2000 07:01 AM
06-16-2000 07:01 AM
Re: Error on Ignite-UX during copy CD.
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