Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Voicemail start stop 1

Status
Not open for further replies.

Tinos

Technical User
Nov 5, 2014
710
BW
Hi all.
What is the shell command for stopping and starting voicemail service on MIVB9 the equivalent of iPVM_Stop?
Thank you.
 

Same commands. You just need to enter mcdDebug from an SSH session. Use Ctrl-c to exit mcdDebug.

Example (typed commands are highlighted):
Code:
[root@mivb ~]# [highlight #FCE94F]mcdDebug[/highlight]
Connecting to mcd, please wait...
Press Ctrl-C to finish session
value = 0 = 0x0
Enter mcd command -> [highlight #FCE94F]iPVM_Status[/highlight]

iPVM_ControlFlag = IPVM_CONTROL_SHUTDOWN;   iPVM_StatusFlag = IPVM_STATUS_IDLE;  iPVM_DbStatusFlag = IPVM_STATUS_DB_AVAILABLE;

value = 0 = 0x0
Enter mcd command -> [highlight #FCE94F]iPVM_Start[/highlight]
Starting iPVM Version 20.0.2.3

value = 0 = 0x0
Enter mcd command -> [highlight #FCE94F]iPVM_Status[/highlight]

iPVM_ControlFlag = IPVM_CONTROL_START;   iPVM_StatusFlag = IPVM_STATUS_RUNNING_VM;  iPVM_DbStatusFlag = IPVM_STATUS_DB_AVAILABLE;

value = 0 = 0x0
Enter mcd command -> [highlight #FCE94F]iPVM_Stop[/highlight]

iPVM stopped.

value = 0 = 0x0
Enter mcd command -> [highlight #FCE94F]iPVM_Status[/highlight]

iPVM_ControlFlag = IPVM_CONTROL_SHUTDOWN;   iPVM_StatusFlag = IPVM_STATUS_IDLE;  iPVM_DbStatusFlag = IPVM_STATUS_DB_AVAILABLE;

value = 0 = 0x0
Enter mcd command -> [highlight #FCE94F]^C[/highlight]
Processing interrupt, please wait...
[root@mivb ~]#
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top