How to put Mediation Server on Maintenance Mode for LYNC server 2013

how to put the LYNC 2013 Mediation server on Maintenance mode???

Hi,
Did you solve the issue with the help the people above provided?
If you mean server draining feature you can also check Topology option on Lync Server Control Panel, on Topology interface, click “Action” and there is an action called “Prevent new sessions for service”.
Here is a similar case may help you:
http://social.technet.microsoft.com/Forums/lync/en-US/ef3515a9-54c0-4b7a-ab48-45196764d837/how-to-use-lync-server-draining-feature?forum=ocsplanningdeployment
Best Regards,
Eason Huang
Eason Huang
TechNet Community Support

Similar Messages

  • How to put a remote portlets server in maintenance mode

    Hi,
    We are running Plumtree Portal 5.0.4 on Windows 2000 Server SP4. We have a remote portlets server which hosts a lot of portlets' webservices.
    We need to put the remote server in maintenance mode.
    How can we disable all webservices hosted by this remote server without disabling each webservices manually (which will be painful) ?
    Regards,
    Qué Son PHAM VAN

    I don't want to encourage you to modify your database directly, but it seems to be the only way to do this easily. Try:
    update ptwebservices
    set enabled = 0, disabledmsg = 'This portlet has been disabled. Blah blah blah.'
    where gadgetserverid = 200;
    Replace 200 with the ID of your remote server.
    HTH,
    Chris Bucchere | bdg | [email protected] | http://www.bdg-online.com

  • OM2012 – Putting a Monitor in maintenance mode

    Hi there,
    I need to write a powershell script to put a Monitor in Maintenance mode. This is easily doable manually on the console whenever an alert comes up by putting the alert in Maintenance Mode.
    So far I managed to make my script to put the class of the Monitor into maintenance, as per bellow
    i.e. if the monitor is “Total CPU Utilization Percentage”, it would put  Microsoft Windows Server 2012 R2 Datacenter in maintenance mode for the computer $ComputerName.
    $ComputerName = Read-Host “Enter computer name”
    $MonitorName = “Total CPU Utilization Percentage”
    $Monitors=Get-SCOMMonitor -ComputerName $strComputerName | where {$_.DisplayName -eq $MonitorName}
    $Time = ((Get-Date).AddMinutes(6))
    foreach ($Monitor in $Monitors) {
    $Instance = Get-SCOMclass -name $Monitor.target.identifier.path | Get-SCOMClassInstance #| where {$_.Path -eq $ComputerName}
    Start-SCOMMaintenanceMode -Instance $Instance -EndTime $Time -Comment: “Server maintenance”
    I can’t figure our how to simply put “Total CPU Utilization Percentage” (or any other Monitor) in maintenance mode
    Thanks for your help !

    Yes, use the "Start Maintenance Mode" Activtiy of the Integration Pack for OpsMgr.
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • How to put database in single user mode?

    hi
    how to put database in single user mode?and what could be the impact of this to EBS R12 RUP 6.DB 10.2.0.0
    rgrds

    hsawwan wrote:
    Hi,
    Are you referring to restricted mode? If yes, please see these links/docs.
    Restricting Access to an Open Database
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10595/start002.htm#ADMIN11155
    Note: 1059291.6 - How to Put a Database into Restricted Mode and Verify Restricted Mode
    The impact is none of the users will be able to connect to the database/application (except for the sys user which can connect to the database). Usually, you would need to put the database in restricted mode when doing upgrade/migrate (i.e. you do not want to have active user sessions in the database during that time).
    Thanks,
    HusseinHi
    i want to mean:
    ALTER SYSTEM QUIESCE RESTRICTEDThe ALTER SYSTEM QUIESCE RESTRICTED statement may wait a long time for active sessions to become inactive. You can determine the sessions that are blocking the quiesce operation by querying the V$BLOCKING_QUIESCE view. This view returns only a single column: SID (Session ID). You can join it with V$SESSION to get more information about the session, as shown in the following example:
    select bl.sid, user, osuser, type, program
    from v$blocking_quiesce bl, v$session se
    where bl.sid = se.sid;I suspect all apps user can.t login to db?
    Edited by: new2appsdba on Aug 19, 2010 1:54 AM

  • How to place multiple servers in Maintenance Mode in SCOM 2012

    Hi All,
    I am trying to place multiple servers in Maintenance Mode in SCOM 2012 but i could not find any PoSh script or any other solution to do it.
    Could someone help me please?
    Regards, Srini

    Hi,
    Please find the script.
    need to have access and you can provide list of servers in text file.
     param([int32]$TimeMin, [string]$Reason, [string]$Comment)
                    $api = new-object -comObject 'MOM.ScriptAPI'
                    Import-Module operationsmanager
                    New-SCOMManagementGroupConnection
                    $Servers = Get-Content "ServerList.txt"
                    $Time = (Get-Date).Addminutes($TimeMin)
                    Foreach ($Server in $Servers)
                                    #Get Computer instance
                                    $ComputerClass = Get-SCOMClass -Name Microsoft.Windows.Computer
                                    $ComputerClassInstance = Get-SCOMClassInstance  -Class $ComputerClass | Where {$_.DisplayName -eq $Server}
                                    If ($ComputerClassInstance.InMaintenanceMode -eq $true)
                                    #Write-Host $Server " is in maintenance mode"
                                    Write-Host $Server" already under Maintenance Mode or not accessible by SCOM, skipped from script execution" -foregroundcolor "red"
                                    $api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, "$Server already found under MM, skipped from script execution")
                                    Else
                                    #Write-Host $Server " is NOT in maintenance mode, attempting to put in MM......."
                                    If ($ComputerClassInstance -ne $Null)
                                                    $HealthServiceWatcherClass = Get-SCOMClass -name:Microsoft.SystemCenter.HealthServiceWatcher
                                                    #Get Health Service Watcher Class instance of the server
                                                    $HSWClass = Get-SCOMClass -Name Microsoft.SystemCenter.HealthServiceWatcher
                                                    $HSWClassIns = Get-SCOMClassInstance  -Class $HSWClass | Where {$_.DisplayName -eq $Server}
                                                    #Starting the maintenance mode
                                                    Start-SCOMMaintenanceMode -Instance $HSWClassIns -EndTime $Time -Reason $Reason -Comment
    $Comment
                                                    Start-SCOMMaintenanceMode -Instance $ComputerClassInstance -EndTime $Time  -Reason $Reason
    -Comment $Comment
                                                    Write-Host "Health Service Watcher and Agent server "$Server " kept in maintenance
    mode for $TimeMin minutes"  -foregroundcolor "green"
                                                    $api.LogScriptEvent('MaintenanceModeScript.ps1', 200, 0, "$Server kept in maintenance
    mode for $TimeMin minutes")
                                    Else
                                                    Write-Host $Server" not found in Domain" -foregroundcolor "red"
                                                    $api.LogScriptEvent('MaintenanceModeScript.ps1', 202, 1, "$Server not found in domain")
    Regards
    sridhar v

  • How to setup the 'Client Licensing Mode' for Windows server?

    Hello,
    We will install the SBO server:
    OS: Windows Server 2003 Standard Edition
    SBO Clients: 150
    How should we setup the 'Client Licesing Mode' for the windows server?
    If we select the mode "Per server,Number of concurrent connections", how to set the connection number?
    Thanks in advance.
    Don

    Hi..
    you can set License to Particular user using License under Administration and Client will automatically fetch License using License Manager on License Server
    Regards,
    Bhavank

  • What are the supported feature for LYNC Server 2013 WITHOUT Telephony

    Hi
    I have a new customer who is asking for LYNC Server 2013 without to use VoIP Support.
    The would like to use the LYNC-SKYPE connectivity but without LYNC calls.
    Most of their internal users are using SKYPE.
    The Question is now, what Features are possible for example:
    FEATURE-LIST
    See other’s presence
    Manage own presence
    See presence in Office
    Contact management
    Contact card
    PC-PC and multiparty IM
    PC-PC and multiparty file transfer
    Persistent Chat
    PC-to-PC computer audio calling
    PC-to-PC computer video calling
    PC-to-PC presence display, IM, audio, and video with Skype users
    But what of the above feature list is possible without using VoIP ??
    And how works that LYNC WebApp Client without VoIP? Is it possible to route Audio/Video over the internet by using that LYNC WebApp Client in LYNC 2013??
    Thanks in advance ;-)
    Kind regards
    Michael
    Kind regards Michael Damaschke

    All of that is possible without PSTN connectivity or the plus cal.
    When you say VoIP, do you mean audio chatting over TCP/IP in the purest form, or do you mean specifically telephone calls?
    Technially PC-to-PC computer audio calling is VoIP, or voice over IP, but if you're talking about connecting it to a PBX or the phone network, you don't need it for any of the above.  It works wonderfully and is quite a bit cheaper without it due to
    fact that you won't need to license the plus cal for enterprise voice or the Exchange enterprise cal for voicemail. 
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Need download Link for LYNC SERVER 2010

    I Couldn't find the download link for Lync Server 2010.
    It redirects to Lync Server 2013 download page.
    Could anyone please reply me with Lync Server 2010 download link?
    Regards,
    Arun

    The Lync Server 2010 Trial VHD is located at: 
    VHD test drive: Lync Server 2010
    (Eval) - Part 1 of 2
    VHD test drive: Lync Server 2010
    (Eval) - Part 2 of 2
    Please mark posts as answers/helpful if it answers your question.
    Blog
    Lync Validator (BETA) - Used to assist in the validation and documentation of Lync Server 2013.

  • Package files of Installation SBA for Lync Server 2013

    Hi everyone,
    It´s my first post and would like know where can found the files of installation for Lync Server 2013 SBA (Survivable Branch Appliance).
    My appliance is a module SRE-910 with Router 2911
    I contacted the microsoft and they said that the files are provided from cisco.
    The Guide that I´m  following is this:
    http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=28555
    Question posted in forum Microsoft:
    http://social.technet.microsoft.com/Forums/en-US/lyncvoice/thread/81a0d1e2-39f2-45ad-9908-f4162e9d302f
    Quote of Site Microsoft about software and Hardware requeriments to SBA:
    "Required hardware and software is built into the Survivable Branch Appliance"
    Someone can give a light ?
    Thanks in advance!

    http://blogs.technet.com/b/xdot509/archive/2012/10/24/installing-a-two-tier-pki-hierarchy-in-windows-server-2012-part-ii-installing-a-root-certification-authority-with-the-gui.aspx

  • System Center Orchestrator 2012 Integration Pack for Lync Server 2013 release Date?

    Hi,
    I want to know about System Center Orchestrator 2012 Integration Pack for Lync Server 2013 release Date?
    or Microsoft has already released it?
    Amit Sharma

    Hi,
    I believe it will be around Q4. At the moment there isn't any updates on the release dates yet. So I suggest you to wait patiently.
    Guowen Su
    Cisco Certified Network Associate
    Cisco Certified Internetwork professional - MPLS
    Certified Information Systems Security Professional
    Microsoft Partner Network 2011
    Microsoft Certified Professional
    Microsoft Certified Systems Administrator:Security
    Microsoft Certified Systems Engineer: Security
    Microsoft Certified Technology Specialist: Windows Server 2008 Active Directory, Configuration
    Microsoft Certified Technology Specialist: Windows Server 2008 Network Infrastructure, Configuration
    Microsoft Certified Technology Specialist: Windows Server 2008 Applications Infrastructure, Configuration
    Microsoft Certified Technology Specialist: Windows 7, Configuring
    Microsoft Certified IT Professional: Enterprise Administrator
    Microsoft Certified IT Professional: Server Administrator
    Certified Ethical Hacker
    Computer Hacking Forensics Investigator
    Certified Sonicwall Security Administrator
    Microsoft Geeks

  • LYNC 2013 Event Logging Parameters for LYNC server logs

    Hi,
    We have LYNC server 2013 enterprise voice. We have third party Monitoring server to monitor the event logging.
    Do we have default event logging parameters for LYNC Server logs in LYNC 2013?
    Thanks
    jitender

    There's really just the default level of logging for Lync Server Event Logs.  For individual call troubleshooting you might use the debug logger, and for longer term troubleshooting you'd deploy the Lync Monitoring role.  The monitoring role, service
    status, and performance monitor counters are what you really want to be monitoring if you're watching your Enterprise Voice deployment.
    If I understand the question, there isn't a way to turn up the amount of logs generated in the Lync event logs or change parameters around this. 
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • After i installed updates for my mac mini server, the web services for the server app wont start, it gives an error massage: "Error Reading Settings"

    After i installed updates for my mac mini server, the web services for the server app wont start, it gives an error massage: "Error Reading Settings"
    The system logs reads:
    Mar 29 22:06:25 server servermgrd[82]: servermgr_web:  Error Domain=XSServerFoundationErrorDomain Code=4 "Failed to read settings: Exception:
              undefined method `downcase' for nil:NilClass
              ." UserInfo=0x7fc547901080 {NSLocalizedDescription=Failed to read settings: Exception:
              undefined method `downcase' for nil:NilClass

    To check the local network for some of the common configuration problems, launch Terminal.app and issue the following diagnostic command:
    sudo changeip -checkhostname
    That'll report some local configuration information and then either no errors detected and no changes required, or it'll point to whatever configuration errors or issues it might detect.  That doesn't catch everything, but it catches the common errors.
    FWIW, 192.168.0.0/24 and 192.168.1.0/24 are poor choices for the local network, as VPNs are based on IP routing and IP routing gets tangled when the same subnet is used on both ends of the VPN. 192.168.0.0/24 and 192.168.1.0/24 are near ubiquitous in home networks and coffee shops.

  • Exch2k13 - to apply spks or CU should I put the server on 'Maintenance Mode'

    Hi,
    Since we have only one server acting as CAS/MBX, should I put it on 'maintenance mode' before apply spk/cu?

    Hi,
    Maintenance mode should be used with Mailbox servers, both standalone mailbox servers and multi-role servers.
    Here is a related blog which can help for your reference.
    Exchange 2013 Maintenance mode
    http://blogs.technet.com/b/nawar/archive/2014/03/30/exchange-2013-maintenance-mode.aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • ConfigMgr Backup puts SCCM Server into Maintenance Mode (SCOM)

    Hi all,
    I have a strange issue.
    We have a SCOM-Server (2012 SP1 - 7.0.9538.1068) which Monitors several servers. We also have an SCCM-Server (2012 R2 - 5.0.7958.100) for Client/Software Deployment. This SCCM-Server is also a SCOM-Gateway...
    Now we have the issue, that i get strange Events in the Operations Manager Eventlog on the SCCM-Server (SCOM-Gateway):
    Source: Health Service
    Event ID: 1217
    Level: Information
    Description: The System Center 2012 - Operations Manager Agent running on Computer "SCCM-Server HOSTNAME" is suspended for the following reason: "ConfigMgr 4.00.7958.0000 - Starting - Backup".
    There are several strange things with this message:
    1. The Version is completely wrong... should probably be 5.00.7958.0000???
    2. We have the SCCM-Backup (in Administration -> Overview -> Site Configuration -> Sites -> Site Maintenance -> Backup Site Server) NOT enabled!!!
    3. The main issue now is, that the SCCM-Server (SCOM-Gateway) everyday changes to mantenance mode (for some hours over night!), and therefore all SCOM-Agents behind the SCOM-Gateway are alerting Heartbeat failures!
    Example Times/Dates when the issue occurs:
    Do you have any clues about this message?
    Thank you for your help.
    Patrik

    Hi,
    Have you checked Smsbkup.log as Torsten said?
    You could also check the status messages for SMS_SITE_BACKUP in the Component Status node in the
    Monitoring workspace.   
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to put the form in Query mode

    Hello
    Please let me know how to put the form or block in Query mode , so that when i run the form it should be in Query mode . I have seen properties of SET_FORM_PROPERTY and SET_BLOCK_PROPERTY but cannot find one
    Thanks

    QUERY mode? Did you mean, that you can only QUERY without changing data.
    This is the QUERY-ONLY-mode, which can be started e.g. call_form
    this is the help for that topic:
    PROCEDURE CALL_FORM
    (formmodule_name VARCHAR2,
    display NUMBER,
    switch_menu NUMBER,
    query_mode NUMBER,
    data_mode NUMBER,
    paramlist_name VARCHAR2);
    query_mode     
    NO_QUERY_ONLY (The default.) Form Builder will run the indicated form in normal mode, allowing the end user to perform inserts, updates, and deletes from within the called form.
    QUERY_ONLY Form Builder will run the indicated form in query-only mode, allowing the end user to query, but not to insert, update, or delete records.

Maybe you are looking for

  • ITunes Purchases no longer play on Authorised MacBook Pro

    This is on my MacBook Pro 15, with iLife 08 and Leopard - ALL BANG UP-TO-DATE Some of my Purchases (Not the most recent, nor the oldest) have stopped playing. I get the Apple User Authorise banner, asking for my password. I put the password in - it m

  • How can i get a downloaded plugin to work in logic pro x?

    i tried to put massive into logic pro x but i cant get it to work! ive insertet it to the folder plug-ins, components which everybody told me to do but i cant find it in logic once i did that! Please help me!

  • PO Upload via LSMW

    Hi Experts, I created an LSMW for PO uploading. I used BAPI as my import method. When I run the LSMW, the values from the material master, vendor master, and inforecord OVERWRITE the values that I was passing from my upload text file. Is there a way

  • Raising exceptions on hanging or failing updates

    I have inherited a storeprocedure of around 400 lines of code wgich contains multiple SQL blocks of a update selection wrapped round a select statement. This store procedure works on dbA but not on dbB on dbA. it just hangs. dbA has more data, so it

  • Old Express on TC Network - Airtunes on Ethernet?

    Hi, I want to buy an old Airport Express for my Time Capsule based network. I want to use the AE's Airtunes capabilities, but through Ethernet, as it will sit next to my Capsule. Is this possible? Can I turn off the wireless of the AE and just use th