- Community Home
- >
- Software
- >
- Software - General
- >
- IMC 7.3 PLAT - VLAN Management Deploy Issue
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
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
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
12-30-2025 06:17 PM - last edited on 01-01-2026 06:32 AM by support_s
12-30-2025 06:17 PM - last edited on 01-01-2026 06:32 AM by support_s
IMC 7.3 PLAT - VLAN Management Deploy Issue
Hello,
I am installing a new IMC 7.3 Plate.
MSSQL 2017 is installed,
The SA account login was also successful through SSMS.
Then install > components > common > deploy
The install.bat file was executed with admin privileges.
Most installations have been completed,
The deployment failed occurs in the VLAN Management entry.
And Batch deploy interrupted.
If anyone knows about this issue, please give me feedback.
Thank you.
- Tags:
- logical drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
a month ago
a month ago
Re: IMC 7.3 PLAT - VLAN Management Deploy Issue
I got the same error.
it is just an error that can be easily fixed by removing the word "script/" in the file after line 138 :
E:\Program Files\iMC\deploy\components\iMC-VLAN\V700R001B06D032SP10\deploy.xml
some part are related to unix install => we don't care if you install it on windows.
example:
Buggy part:
<!-- Server: Build database (Windows + SQLServer) -->
<task class="com.h3c.imc.deploy.tasks.BuildDatabaseTask">
<property name="osType" value="Windows" />
<property name="dbType" value="SQLServer" />
<property name="buildType" value="new" />
<property name="dbName" value="vlanm_db" />
<property name="dbUserName" value="vlan" />
<property name="dbPassword" value="iMC5_${RANDOM_ALPHANUMERIC|10}" />
<property name="hzFile.SQLServer" value="${comproot}/server/script_sqlserver.hz" />
<property name="outputSize.SQLServer" value="2959" />
<property name="replacementFile.1" value="script/install_script.bat" />
<property name="replacementFile.2" value="script/vlan.DBS" />
<property name="replacementFile.3" value="script/vlan.LGN" />
<property name="replacementFile.4" value="script/vlan2005.LGN" />
<property name="replacementFile.5" value="script/install_database_script.sql"/>
<property name="executableFile" value="script/install_script.bat" />
</task>
After modification:
<!-- Server: Build database (Windows + SQLServer) -->
<task class="com.h3c.imc.deploy.tasks.BuildDatabaseTask">
<property name="osType" value="Windows" />
<property name="dbType" value="SQLServer" />
<property name="buildType" value="new" />
<property name="dbName" value="vlanm_db" />
<property name="dbUserName" value="vlan" />
<property name="dbPassword" value="iMC5_${RANDOM_ALPHANUMERIC|10}" />
<property name="hzFile.SQLServer" value="${comproot}/server/script_sqlserver.hz" />
<property name="outputSize.SQLServer" value="2959" />
<property name="replacementFile.1" value="install_script.bat" />
<property name="replacementFile.2" value="vlan.DBS" />
<property name="replacementFile.3" value="vlan.LGN" />
<property name="replacementFile.4" value="vlan2005.LGN" />
<property name="replacementFile.5" value="install_database_script.sql"/>
<property name="executableFile" value="install_script.bat" />
</task>install is now OK for me
By the way: where is the IMC support and how this bug can't be seen during test by HPE ???