Servers lacked maintenance, here's my to-do list

I'll be taking over administration of a rack of Solaris machines that haven't had an admin for the last 9 months. Prior to that they had limited maintenance. I understand there are a few tickets that will need addressed, but I won't have the details for a few days on them. Regardless, I'm trying to compile a to-do list. What would you add to this list?
1, Check for hardware failures, disks, fans, psus, etc... repair as needed
2, Ensure backups are being taken and are restorable
3, Check all installed packages for exploits, update as needed
4, Check who has permissions to access these servers, internally and externally. Verify they all should have access.
5, Setup monitoring providing me with immediate access of issues.
6, Acquire Oracle Support agreement details so if\when I need them, I have ready access.
What would you add\change\remove on this list? Thanks in advance for your help.
Edited, Thanks arbrante

Moderator Action:
You cross-posted this to other forum web sites
http://www.unix.com/solaris/211951-servers-lacked-maintenance-heres-my-do-list.html
http://bd.summit.net/blog/2013/01/servers-lacked-maintenance-heres-my-to-do-list/
... and didn't have the manners to mention that fact so that people wouldn't have to spend time formulating a response that duplicates what you've already been told in those other forums.
This thread is locked.

Similar Messages

  • Looking for a Powershell Script which can put the scom servers in maintenance mode

    Looking for a Powershell Script which can put the scom servers in maintenance mode so that SCOM should not send an alert during planned task.
    Rahul

    1. Provide list of servers line-by-line in C:\ServerList.txt, make sure you provide limited no. of servers, do not exceed 20 - 25 per batch
    2. Save the script with suitable name (test.ps1)
    3. Open PowerShell cmd prompt
    4. Script accepts 3 params - TimeInMinutes, Reason and Comment
    **** Please note, this script will work for SCOM 2012 R2
    param([int32]$TimeMin, [string]$Reason, [string]$Comment)
    try
    $api = new-object -comObject 'MOM.ScriptAPI'
    Import-Module operationsmanager
    New-SCOMManagementGroupConnection
    $Servers = Get-Content "C:\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 -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"  -foregroundcolor "green"
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 200, 0, "$Server kept in maintenance mode for $TimeMin minutes")
    Else
    Write-Host $Server" not found " -foregroundcolor "red"
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, "$Server could not be found in domain")
    Catch [system.exception]
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, $_.Exception.Message)
    Faizan

  • 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

  • Put servers in Maintenance Mode in SCOM 2012

    Hi,
    When we put a server in maintenance mode in SCOM 2012 it asks for only the end time. How can we specify the start time for maintenance mode.
    Thanks

    You can specify the start time for maintenance mode by schedule Maintenance mode.
    For how to create schedule for maintenance mode, you can refer below link
    http://support.microsoft.com/kb/2704170/en-us
    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"
    Mai Ali | My blog: Technical

  • Is the download servers in maintenance?

    Hi,
    Have problems patching sles servers as well as downloading patches, been
    like this for ~ 18 hours.
    Work in progress??
    joakim_ganse
    joakim_ganse's Profile: https://forums.netiq.com/member.php?userid=159
    View this thread: https://forums.netiq.com/showthread.php?t=51196

    On 27/06/2014 08:44, joakim ganse wrote:
    > Have problems patching sles servers as well as downloading patches, been
    > like this for ~ 18 hours.
    > Work in progress??
    I'm not aware of anything scheduled but just so we know which download
    servers you mean are you referring to nu.novell.com (online patch
    channels) or download.novell.com, possibly
    download.novell.com/patch/finder ?
    HTH.
    Simon
    Novell Knowledge Partner
    If you find this post helpful and are logged into the web interface,
    please show your appreciation and click on the star below. Thanks.

  • QM Mass Maintenance / HERS

    Gurus
    Is there any mass transaction to create QIR for HERS material type? QI06 is not able to see these parts. Is this standard behaviour? Please comment
    Regards

    Hi
    QIR will behave same in QI06 for all material types.
    This will work
    only check whether Control key is maintaines in QM view of these materials otherwise this will not be displayed.
    Regards
    Sujit

  • Has anyone else noticed a lack of responsiveness when scrolling down friends lists in Facebook mobile?

    In Facebook mobile when you scroll through friends lists now every third swipe to scroll down doesn't respond.  Extremely annoying.

    Hello Vivek,
    Now you can see the problem here you have the video showing all my steps:
    MUSE mobile 1 - YouTube
    Muse mobile 2 - YouTube
    I will await your coments.
    Best regards
    Luis

  • Okay... here's my iBook glitches list.

    I've had my iBook G4 for a couple months now. I hold 5 seperate computer certs, mostly in programming, so I tend to know how to rectify things myself, and I'm an avid Windows hater.
    With the recent developments with Apple, I.E. since Jobs came back, I decided to finally switch.
    What a wonderful world is that of Apple computing! Things actually make sense. The operating system is so intuitave. If Apple made a adroid it's name would be Data and he would indeed be centient! (My geek alarm just went off)
    So here's the rub. I don't like that my battery doesn't fit flush.
    I don't like that while in the "get info" pane, while editing an item name, highlighting with the mouse is not allways reflected on the screen. The 1st. character is but not always the rest. However the characters I'm manipulating respond the way I would expect them too after being highlited.
    I don't like that sometimes characters overlap after expanding a tree then colapsing the same tree. (Again this seems to happen mostly in the "Get Info" pane.
    I don't like that sometimes while browsing with Safari not all images on the page show up. Like on the 'avatar' selection site at Apple.
    Everything else, and maybe these, turn out to be user error. I have made some silly mistakes getting used to this operating system but at least I can admit that tey're my mistakes.
    I sometimes fear the 'logic board failure' God but I'm going to get the extended warranty before my 1 year runs out.
    The only other weird this with the Apple is that my router 'Netgear Wireless' logs my other computer's web usage and obeys the blocks I have on certain web sites. But my Mac, even though my router recognises it and all is fine, it just blows right through any attepts to sensor its online navigation. But that's just an odity. The 'Netgear' forums offer no insight.
    Long live the Apple empire.

    I don't like that my battery
    doesn't fit flush.
    What Revision iBook G4 do you have? I think this was
    already corrected, at least the last models I looked
    at had it corrected.
    Part # M9846LL/A
    S/N # 4H541Qxxxx
    Model # A1133
    iBook 12.1/1.33/512/40/COMBO/PAX/BT-USA
    I don't like that sometimes while browsing with
    Safari not all images on the page show up. Like
    on
    the 'avatar' selection site at Apple.
    Are you sure this isn't a server error? Do these same
    images always show up fine in other browsers?
    Seems to be just the iBook but if I find it happens with the other machine I'll eat my words.
    I sometimes fear the 'logic board failure' God but
    I'm going to get the extended warranty before my 1
    year runs out.
    This was mainly an iBook Dual-USB issue due to design
    flaws.
    Brian
    Does the following info reflect a machine that was built AFTER they resolved the issue, or a machine that may suffer from the issue in the future?
    Part # M9846LL/A
    S/N # 4H541Qxxxx
    Model # A1133
    iBook 12.1/1.33/512/40/COMBO/PAX/BT-USA

  • Multiple servers with same IP but different ports - problem listing in ARD

    Hi - I have no problem connecting to multiple Macs behind a single IP (router) using different ports, port forwarding, dyndns, etc., etc.
    The problem I'm having is that in the list of computers in ARD, it won't let you have more than one with the same IP address. When you create the second with the same IP, it clears the first one, giving it an IP of 0.0.0.0. They are on different ports, but that's not counted as part of the IP, so it still gets cleared. I use different dyndns domain names, but ARD instantly converts them to an IP when creating the entry, so that doesn't help either.
    Are there any workarounds?

    And it's still impossible if they all have the same external IP. The whole stroy? See http://discussions.apple.com/thread.jspa?threadID=1321008&tstart=0
    On option is to setup a VPN(=Virtual Private Network) as described in the thread I mentioned

  • Broadband Talk and VoIP (again)

    Hi - I have several VoIP accounts which I access from my iPhone including my BBT number. For years the BBT always worked (more reliably than the HH2 which regularly decides not ring for incoming calls until I do a reset) until many months ago (12 - 15?). I can receive incoming calls but when I try to set this up as the outgoing VoIP it fails when registering. All other accounts work perfectly.
    I was out and about this a.m. and on coming home I needed to use VoIP. I noticed that BBT had now registered successfully and all the other accounts were failing. The reason for this turned out to be that the iPhone was connected to my HH2 BTWIFI-with-FON wifi (as it does when out and about) rather than my standard wifi network.
    Sooooo can anyone give me a really good techie reason for this, why all but BBT works for normal wifi and only BBT works with FON wifi? Is there going to be any way of having them all work together again? I think this may not be for India.
    Ta, Andy.

    BBT relies on a number of servers, for example, here is part of the list from the home hub configuration file.
    add name=BBT_servers type=ip addr=81.144.106.40
    add name=BBT_servers type=ip addr=81.144.106.228
    add name=BBT_servers type=ip addr=81.144.106.8
    add name=BBT_servers type=ip addr=81.144.106.36
    add name=BBT_servers type=ip addr=81.144.106.4
    add name=BBT_servers type=ip addr=62.239.169.132
    add name=BBT_servers type=ip addr=62.239.169.136
    add name=BBT_servers type=ip addr=62.239.169.140
    add name=BBT_servers type=ip addr=62.239.169.144
    add name=BBT_servers type=ip addr=62.239.169.148
    These are used when you are connected via the normal path, using your own SSID.
    The number of servers are slowly being reduced, and its not unusual to find one which does not function correctly.
    I have BBT, and sometimes I have to restart the home hub, as I cannot get dial-tone, and sometimes even incoming calls fail.
    When you use BT Wifi/FON, your connection is passed from the home hub, to the BT Wifi network for authentication, over a VLAN. Its quite possible that the actual BBT servers that are used at the remote end, are in a different range, so its quite possible for a BBT call to fail on your normal SSID, but work fine on the BT Wifi connection.
    Most questions on this user to user forum, are non-technical, and can be answered quicky. Bear in mind that this community forum has been going for quite a while now, so my posting count will be quite high, as are some of the other founder members.
    I spent 42 years with GPO, Post Office, BT, and worked on many systems  including Telecom Gold. Prestel, Packet Switch (X25), dial-up Internet, SMDS, SDH, ATM, and Business data systems.
    The reply I have given you is the best you are likely to get, unless you can contact the people who are still actually maintaining the BBT network. I suspect there are not many now, withe the pending closure of the service.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Problem with full backup with copy only in maintenance plan sql server 2008

    Hello
    I am starter DBA for sql server in general
    I have problem related to backup with maintenance plan in sql server 2008 and 2008 r2
    I created maintenance plan to take full back up  with copy only option checked, but when I check the back up in backupset table is_copy_only column it shows 0 for databases that I run job for.
    I did the same steps on sql server 2012 and I checked backupset table is_copy_only column it shows 1 for databases that I run job for .so it works as it should be
    Note: all the servers I mention here are production servers 

    Copy-only Backup  by using GUI ( SSMS) in SQL Server 2008 but it was not available in  Maintenance Plan "Back
    Up Database Task". Now in SQL Server 2012 It is included in "Back Up Database
    Task". 
    http://sqlage.blogspot.in/2013/06/dba-maintenance-plan-back-up-database.html

  • Getting 34208 Events in IIS server after come out from Maintenance mode

    Hi Experts,
    We are monitoring .Net application(APM) in our environment(SCOM 2012 SP1).  We are putting all the servers in Maintenance mode on every sunday(Weekly Maintenance), after come out from MMode  getting 34208 events in OPSMGR Logs, particularly from
    IIS servers(APM). 
    Do we have any fix for that like cumulative update?
    Can we put IIS server into Maintenance mode? If we put in MMode, Will it affect monitoring??
    Expecting your reply.. Thanks in advance!!!
    Regards
    Karthick

    Thanks for reply Agrawal!
    I know that we won't get alerts if the servers are in Maintenance mode.  But we are getting 34208 events particularly from IIS servers(.Net Application Performance Monitoring - APM) as the result we are receiving warning alerts in SCOM console stating
    that " Restart IIS service" which will affect other monitoring in the servers.
    Is anyone getting this issue in your environment?  Generally we will get 34208 events while we adding new application in to IIS server.  But here we are getting this events after the server come out from MMode.
    Kindly provide your valuable suggestions.  Thanks!
    Regards
    Karthick

  • Maintance jobs with Maintenance plans - troubleshooting

    Some of our old servers have maintenance jobs created with inbuilt mainteance plans. We find difficulty in troubleshooting these kind of jobs when it fails. Can anyone shed a detailed analysis of how to troubleshoot these jobs which are created with maintenance
    plan like where to look, any system table/view that could help etc. The job history gives very minimal details and often result in cropped off messages.
    I was told that if we alter the maintenace plans associated with the jobs and save it. It will break the job, is it so?

    For SQL server 2000
    You can check the failure logs either from jobs or Maintenance plan history
    In enterprise manager, expand the server group
    Expand the management folder and select the database maintenance plans
    Right click the maintenance plan that failed and select the Maintenance plan history
    Check for the failure occurred and double click the failed row to see more details or on failure
    Similarly from SQL server 2005 onwards maintenance plan history, you can check from maintenance plan
    In SSMS, connect to SQL instance
    Expand the Management folder and select the maintenance plans
    Select the maintenance plan and click on maintenance plan history and check for the failure
    Please click the Mark as answer button and vote as helpful if this reply solves your problem

  • Can I use the same database for two WSUS servers?

    Hi Folks,
    Our HQ WSUS database is on a dedicated SQL Server 2008 in HQ. We are planning to set up a replica WSUS server in a branch office (centralized management mode). But we want to check the WSUS reports (e.g. computer/update status) only from the HQ instead
    of each branch. I have two questions.
    I should not install the SQL Server in Branch, and specify the HQ SQL Server as the Branch WSUS server database, right? In this case, I can check WSUS reports of both HQ and Branch from HQ, right?
    Can I use a specific update source (e.g. Microsoft Update or other WSUS upsteam servers) for Branch WSUS server instead of HQ WSUS server even it's a replica WSUS server?
    Thanks,
    高麻雀

    Regarding to "If the branch office server is intended to be a replica server, then it must be configured with the HQ WSUS server as the update source", does it mean my branch WSUS server is only able to get the patches from my HQ WSUS server?
    That is the fundamental premise of a downstream replica server.
    Isn't it able to get the patches from Microsoft Update or other WSUS servers?
    Well, here we may have a terminology challenge... so let me take a step back and answer this way:
    A WSUS server obtains *updates* via the process of synchronization. Updates can be synchronized from one of two sources: Microsoft, or an Upstream WSUS Server.
    Additionally, updates have a concept of APPROVAL. Approvals can be obtained from an Upstream WSUS Server when the server is configured as a REPLICA server; otherwise, Approvals are created at each individual WSUS server.
    Finally, updates have FILES. Files can be obtained from Microsoft or the Upstream WSUS server, and this configuration option is absolutely independent of where the updates and/or approvals come from.
    Please note: All of this is exhaustively documented and discussed in the
    WSUS Deployment Guide. I would highly recommend reading it cover-to-cover.
    In this case, there will a a lot of bandwith cost on the leased line which is only 2Mbps and intended for critical business like VDI/ERP applications.
    A few thoughts here...
    First a 2Mb/sec link is more than adequate to support a WSUS server downloading update files from an Upstream WSUS Server.
    Second, using BITS you can configure when those files are transferred as well as how much of that 2Mb/sec is made available to the WSUS downstream server.
    Third... Patch Management IS a critical business function. Do not let it be treated as a step-child or the VDI/ERP functionally will be irrelevant.
    "after installing the replica server in the branch office, on the upstream server enable the option for Reporting Rollup", will the report information (computer/update status) be recorded in the HQ SQL Server?
    The detail reporting data for the clients of the downstream replica servers is physically stored in the upstream server's database.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • About the iPhone and it's "lack of basic features"

    There are SO MANY rants going on in this discussing board about the iPhone lacking "basic features" of a cellphone. Here is my response to all of them at once. (I know this has nothing to do with user-to-user technical support, but the topic is discussed on here enough to warrant this post.)
    Sure, I would like to be able to send texts messages to multiple contacts, I would love to be able to add my own ringtones, copy and paste, and picture message. Here's the deal, Apple didn't set out to create a product with those features, they didn't set out to create a product that is like all the others or that has all the best features that every other phone has. They started over. They didn't compare it to any other phone. They have said over and over that the iPhone is a completely new product from the ground up. Sure it includes some features that can be found in phones that came before it, but it's all done in a new way. It's not some super phone that combines the best of every smartphone out there. They were very open about this and listed EVERYTHING the phone was going to be capable of. No, they didn't tell you the things that it wouldn't do, that's not the angle they were taking when designing and marketing this product, no one does that. The iPhone does everything they said it would do and does it better than any other phone that has the same features. So how can anyone come on here a gripe about it lacking basic features? The features I listed above are features that someone else reading this may never need or want. Basic features to you are not going to be basic features to me. Basic features 3 years ago are not basic features today nor will they be in 3 years. There are no basic features when it comes to the iPhone, other then perhaps the phone part. When you set out to create a product from the ground up, you don't start with a list of features that need to be included. You start with a blank slate and build on that, from your own ideas, your own technology, not based on what anyone else is doing or what has been done in the past. This is what Apple has done, and they have been very clear about it from day one. So please, if you feel that the iPhone lacks the "basic features" on a cell phone, take it back so that someone else can have that phone and enjoy its "basic features," that are like no other phone before it.

    Your posting should have went to the Apple.com feedback section instead of posting it here in the user to user forum, this goes back to doing research on what the iphone can and cannot do before making the purchase you have to remember this is just the first generation iphone just like there was a first generation ipod most likely they'll be enhancements coming up for the iphone i myself am happy with my iphone, how many cell phones out there have visual voicemail?

Maybe you are looking for

  • S_P99_41000101 - Check Register Modification to include new fields

    Dear Friends, We are working in 4.7V. The user wants to include new fields in Check Register. Special G/L ind. Demand Draft No GL Code Material Code How to include the new fields and how to match Material code to check no or payment or vendor. Please

  • The right headset for mac and skype

    hello there are problems with line in on g4 macs which are well known so here is the answer buy a plantronics 45 headset BUT NOT FROM APPLE BECAUSE THEY CHARGE 79 POUNDS WHEN EBAY OR AMAZON CHARGE ONLY 29 POUNDS IT WORKS GREAT PLUS YOU GET 120 MINS F

  • Explain plan for SQL running in a session

    Hi. Can you get the explain plan information for sql that's currently running in a session? I know I can use the session report to see the active SQL, but I don't know if it's possible to get the explain plan information from there, like you can with

  • Custom Field not working

    Hi, I've made a project level custom field in PWA that takes "Total Slack" (in-built duration field) and based on a switch formula gives out 3 values viz. High, Medium, Low The field formula is as mentioned below: Switch([Total Slack] <= -7, "High",

  • Exporting a video for email

    What is the best way to export a video from fce to attach to a email. The video is about 10 min long. I have it in a meg-4 format and it is about 26 mb and I need to get it down to 10mb. Thanks!