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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Procedure to reboot CCR 1

Status
Not open for further replies.

RogerTurboFederer

Technical User
May 28, 2010
433
US
Hey guys,

Is there a formal procedure to reinitialize CCR after a server and IP Office reboot ?

Sometimes I had a hard time. Rebooting, rebooting and rebooting in order to CCR restarts.

Cheers,
 
start -> cmd -> shutdown /s and run away as far as you can :)


BAZINGA!

I'm not insane, my mother had me tested!

 
Try this script:

Code:
Echo off

echo.
echo.
Echo The CCR services will stop now.

Echo off

net stop "Avaya IPOCCR Alarm Keep Alive Service"
net stop "Avaya IPOCCR Data Analyser Service"
net stop "Avaya IPOCCR Printer Discovery Service"
net stop "Avaya IPOCCR Real Time Database Monitor"
net stop "Avaya IPOCCR Real Time Service"

Echo IIS will have a reset now.

iisreset.exe

wevtutil cl application

Echo The CCR services will start now.

echo.

net start "Avaya IPOCCR Alarm Keep Alive Service"
net start "Avaya IPOCCR Data Analyser Service"
net start "Avaya IPOCCR Printer Discovery Service"
net start "Avaya IPOCCR Real Time Database Monitor"
net start "Avaya IPOCCR Real Time Service"

echo CCR should be running fine again.

ping -n 1 -w 5000 1.1>nul

PS, this is for server 2008.

BAZINGA!

I'm not insane, my mother had me tested!

 
:)

Come on.

I do know CCR is terrible, but I was wondering if someone came with a procedure.
 
THANKS.

But it wasn't what I was looking.

Apparently we posted at the same time.

Cheers,
 
There is not really a procedure for this.
It should just work.
Running the script could help.

BAZINGA!

I'm not insane, my mother had me tested!

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top