Migrate SCCM 2012 to a new server

Hi,
I have a server with some issues. It currently also hosts our certificate authority and AV along with SCCM.
Our setup is a single server with SCCM installed. (Central\Primary site) There are also 6 other satellite offices that host distribution points. The Database resides on a different server.
I have run up a new Windows 2008 R2 standard VM that I want to move SCCM over to and remove it from the current site.
I have found a lot of sections about migrations that simply mentioned backup, turn off the old server, name the new server the name thing. That wont work in our scenario as the old server as mentioned hosts other services and wont be turned off.
Any help or links to places would be great.
Cheers,
Zac Avramides

Hi John,
I have started the process. I have a new SQL instance I am moving the old SCCM database to so I can do a side by side migration.
Have an issue though.
During the site reset the log comes up with:
INFO: SQL Connection failed. Connection: SMS ACCESS, Type: Secure
The only person I have found with the same issue is
here. They are also trying to move from one SQL server to another. SPNs are not my strong suit so I don't suppose you know anything about confirming that the temporary server (Development Server) has correct SPNs configured for its SQL instance.
Cheers,
Zac Avramides

Similar Messages

  • Migrating SCCM R2 to another new server

    The current SCCMR2 server hardware warrenty is about to expire, so I need to replace the old server with a new one. Now the new server will have a different name than the old one. What would be they easiest way to accomplish this.
    MSB

    Question I will probally do the site recovery, however I would like to know -
    1. When building a new site to a different server name and migrate to what are some of the headaches
    2. Would I have to redeploy the sccm client from the new site to all the workstations
    3. What exactly is being migrated from the old site to the secondary site that will be promoted to the primary site after the migration
    MSB

  • Migrate SCCM 2012 SP1 VM to another different host VM

    1. I have a server name BACKOFFICE is has way too much work load including SCCM 2012.
    2. I created a new VM called SCCMSERVER, I want to migrate SCCM 2012 off BACKOFFICE VM to the new SCCMSERVER VM.
    3. BACKOFFICE still remain in production as other programs & services are running, just need to get rid of the SCCM server task.
    What is the best practice for this task?
    Thank you very much for your help! 

    Hi,
    1. if you change the name of your server you'll have to change sitecode also and therefore you'll also have to change the Database name so your old database won't be useful.
    SQL License is included with SCCM 2012 as long as you use Standard Edition i guess (someone correct me if i'm wrong)
    2. The tool is integrated with SCCM 2012.
    You can run the migration jobs to retrieve data from your old CM2012 SP1 to your new environment.

  • Migrating existing portable homes to new server

    aside from moving the homedir data from the old server to the new, there seem to be at least a few issues with migrating existing portable home accounts to a new server:
    1. some of users' account details, like GeneratedUID, authentication authority, kerberos principals, OriginalNFSHomeDirectory, are different, while others (name, shortname, UID, GID, etc.) remain the same.
    2. home directory (OriginalNFSHomeDirectory, etc.) point to the old server.
    3. there's data on local machines that we don't sync back to the server, so we can't just blow away the existing local accounts and start fresh.
    the quickest way to migrate these users to the new server (with all the same shortnames and UIDs, etc.) seems to be to remove the local cached accounts (leaving the home folders) and have them recreate new PHDs on login, syncing things back down to the original home folder. i'm guess this won't involve much syncing, it's all the same data, essentially.
    the other way i can see resolving this is to replace the account attributes for each client to match what they should be when pointed to the new server. this would involve scripting the process for reliability and not moving any data or deleting accounts, but it will take more testing on my part.
    what do you think? can you think of better ways to accomplish this task?
    summary: what's the best way to move existing portable home accounts bound to "Server A" to "Server B," while maintaining data and portable homes pointed to the new server and storage?
    thanks.

    that createmobileaccount syntax was wrong. i guess you don't need the -t option and can instead specify the whole path to the user's home. it seems to work well enough, creating a portable home with no default sync settings -- basically manual. for my needs that's fine. the sync settings are managed via mcx anyway.
    here's an updated version of the standalone script. i realized just now the script assumes the diradmin usernames and passwords are the same between servers. if that's not the case, you can hard code it or add a couple of variables. since they're just taken in order on stdin, add them in order. i should also add a function to interactively ask for the passwords with stty -echo to avoid having the passes logged in command history or allowing the script to curl the pass from another file on a web server or something. for now, this seems to work for my purposes. edit as you see fit.
    #!/bin/bash
    # nate@tsp, 3/4/10: initial version
    # 3/5/10: added prettier heredoc usage statement, variables, further tested
    # todo: add function to add user to local admin group, as needed. this shouldn't be required in most environments.
    # todo: convert some of these one-liners to functions for better modular use; make it "smarter"
    # todo: convert the whole thing to ruby for practice
    # automates the process of unbinding from the old OD server, binding to the new, removing the existing local user, adding it back, and other bits
    # there are no "smarts" in this script, so use carefully
    # variables
    diradminpass=$1
    account=$2
    password=$3
    oldserver=$4
    newserver=$5
    mkdadmin=$6 # not used in this version
    # if no parameters are passed, display usage, exit
    if [ ! -n "$5" ] ; then
    cat<<endofnote
    usage: you must include at least 5 arguments (6th isn't used right now)
    run with `basename $0`
    1. [directory admin password]
    2. [shortname of account to change]
    3. [account password, which should be the default 'xxxxxxxx' on the new server]
    4. [name of old server]
    5. [name of new server]
    6. [yes or no to make this account a local admin - optional and not used now]
    ex: `basename $0` diradminpass jbrown password oldserver newserver yes
    endofnote
    exit 1
    fi
    # if you're running this as root or with sudo, proceed; otherwise, quit it!
    if [ $(whoami) = "root" ]; then
    echo "you're root. let's proceed..."
    # delete the user in question from the local directory store
    echo "deleting local account: $account"
    dscl . -delete /users/$account
    # remove the old od config
    echo "removing the old OD bind..."
    dsconfigldap -v -r $oldserver -c $HOSTNAME -u diradmin -p $diradminpass
    # remove the old server from the search and contacts paths
    echo "removing the old search paths..."
    dscl /Search -delete / CSPSearchPath /LDAPv3/$oldserver
    dscl /Search/Contacts -delete / CSPSearchPath /LDAPv3/$oldserver
    # add the new one
    echo "adding the new OD bind..."
    dsconfigldap -v -f -a $newserver -n $newserver -c $HOSTNAME -u diradmin -p $diradminpass
    # create and add the new ldap node to the search policy
    echo "adding the new search paths..."
    dscl -q localhost -create /Search SearchPolicy dsAttrTypeStandard:CSPSearchPath
    dscl -q localhost -merge /Search CSPSearchPath /LDAPv3/$newserver
    # create and add the new ldap node for contacts lookups
    dscl -q localhost -create /Contact SearchPolicy dsAttrTypeStandard:CSPSearchPath
    dscl -q localhost -merge /Contact CSPSearchPath /LDAPv3/$newserver
    # give directoryservice a kick to point it to the new server
    echo "killing directoryservice and waiting for 20 seconds..."
    killall DirectoryService
    # rest a bit to ensure everything settled down
    sleep 20
    # optional: lookup the $account you deleted as the first step to ensure it exists in the new directory
    echo "this id lookup should return details because it exists in the new OD:"
    id odtestor
    echo "this id lookup should fail because it doesn't exist in the old OD:"
    id odtestor
    # check the search path to ensure it looks like you need
    echo "verify the new OD server is in the search path:"
    dscl /Search -read / CSPSearchPath
    # optional: create a mobile account on the local machine with various options set.
    echo "creating a portable home for the user..."
    /System/Library/CoreServices/ManagedClient.app/Contents/Resources/createmobileaccount -n $account -v -p $password -h /Users/$account -S -u afp://$newserver/homes/$account
    killall DirectoryService
    cat<<endofnote
    you should be ready to login with this account now.
    if you have trouble, revert the process by re-running with the old and new server names
    (and diradmin passwords, if they're different) reversed.
    endofnote
    else
    echo "you're not root or an admin. please re-run the script as an admin or via sudo."
    exit
    fi
    exit 0

  • Can WE join existing SCCM 2012 RTM to new SCCM 2012R2 CAS

    Hi All
    Is it possible to join sccm 2012 RTM to new sccm 2012R2 CAS or we have to upgrade the RTM to R2 then we can?

    No. You can only, since SP1, expand an existing primary site to a CAS during the installation of the CAS. See for more information:
    http://technet.microsoft.com/en-us/library/jj591551.aspx
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Migrate SCCM 2012 to new server

    I need to migrate our SCCM 2012 installation to a new server. Both the old and new servers will be up concurrently if necessary. What steps do I need to take to do this?
    Also, I want to upgrade to SP1 at the same time. Can I install SP1 on the new box alongside my current RTM install and do the migration or do I have to do the upgrade as a completely separate step after migration is complete?
    Thanks.

    Backup ConfigMgr on the old server (using the built-in maintenance task or a SQL backup; keep in mind to backup ContentLib, sources for applications, drivers, wim files etc!). Shut down server. Install new server (same name + domain + partition layout).
    Install ConfigMgr. Restore ConfigMgr backup. I don't know if it's supported to change the SP level at the same time. I would not recommend changing too much things simultaneously though.
    Torsten Meringer | http://www.mssccmfaq.de

  • Migrate SCCM 2012 server

    I have a working Primary SCCM 2012 SP1 server in my environment. Now company has aquired another company which is in another domain and forest. We are in the process of migrating them to our domain.
    Problem is another company already has an SCCM 2012 server with 300 client and they want to join that server to our existing SCCM 2012 primary server and they want to manage the patches and OSD through it.
    Can someone please guide how can we add their server to our primary server and where can we give them access to manage their environment

    Nothing to guide, what they want is not possible: not only can you not change the domain membership of COnfigMgr site server/system but you cannot join a primary to another primary in 2012. It also makes no sense, that's what RBA is for in ConfigMgr 2012.
    Jason | http://blog.configmgrftw.com

  • SQL Editions and Migrating SCCM 2012 R2

    Hey guys looking for a bit of info here... 
    We have an existing hierarchy of 1 CAS and 3 Primary sites, along with 13 secondary sites attached to 1 of the Primary Sites. I just learned that during the setup of these sites SQL 2012 Enterprise Evaluation Edition was used to install all the sites. Now the
    Evaluation Edition on the CAS SQL server has expired... oops... Obviously I don't want to pay for Enterprise licenses if I don't need them, so I'm looking for a way to get to SQL Standard. 
    I have found some information about moving SCCM Sites to a new SQL server but am a bit nervous doing that from what I've read on how picky SCCM is with not changing SQL stuff. I have a guy here who is a bit of a SQL guru that feels like we should be able to
    migrate to a new SQL database pretty smoothly, but I'm a tad skeptical since he doesn't know much, if anything, about SCCM. 
    My thought was to build a new hierarchy and use the built in migration feature of SCCM 2012 R2 to move data to the new hierarchy. Are there any caveats to the migration? Are there things that can't be transferred using a migration job? Will I have to re-install
    all of our clients once we migrate? 
    Has anyone done this, or could anyone provide some insight on which route to pursue? I'm leaning more towards the migration since it's built into SCCM and it is meant to do that sort of thing, rather than trying to rip the SQL DB out from behind SCCM and trying
    to connect it to a new instance. 
    Thanks in advance for any help.

    Actually, your SQL guru is right.  It's easy enough to do it underneath it all.  Just stop all of the CM stuff before they rip and replace.  Can't hurt to make sure you have a good SQL backup of your CM database on the CAS in a safe place
    just before he starts, too.  The main thing is to keep as much as you can in the exact same places, (although that isn't that big of deal either); but the fewer things you change the better; like tempdb or how your files for sql are laid out for your
    CAS--don't move them about just because you're reinstalling SQL. 
    We did do that in CM07; moved from SQL ent to SQL Std because we didn't really need ent. 
    Worst case scenario, if CM doesn't wake up well post-reinstall, you have to run through Site Recovery / restore from your SQL backup (which you carefully remembered to take, right after shutting down SMS services but before the SQL guy started ripping out
    the old eval version).
    Standardize. Simplify. Automate.

  • Installation of SCCM 2012 R2 and SQL Server 2014 error

    Hello All,
    I am attempting to setup SQL Server 2014 and SCCM 2012 R2 but I keep running into an error stating that "Configuration Manager requires Microsoft SQL Server
    2008 SP2 w/ CU9........ all the way up to Microsoft SQL Server 2012 with CU2 or higher." I am using all evaluation versions for this configuration as we are looking to test and evaluate the products. I was trying it with SQL 2014 because I was running
    into the same error with SQL 2012 and according to "http://blogs.technet.com/b/configmgrteam/archive/2015/03/30/updated-sc2012-configmgr-sp1-and-sc2012r2-configmgr-support-sql-server-2014.aspx" SQL
    2014 is supported with SCCM 2012 R2. SQL is installed locally on the same box. 
    Any suggestions would be appreciated.
    Thanks,
    Tucker
    Update: When running the Pre-Req check these are some of the failed returns.....
    SQL Server Edition: Failed: Configuration Manager primary site and central administration site don't support SQL Server Express Edition
    Not sure why it is recognizing SQL Express as this is a new machine.
    SQL Server service running account: Failed: The logon account for the SQL Server service cannot be a local user account, NT SERVICE\<sql service name> or LOCAL SERVICE.  You must configure
    the SQL Server service to use a valid domain account, NETWORK SERVICE, or LOCAL SYSTEM.
    For the SQL Service I am using a domain account created specifically for this.

    This has nothing to do with moving or restoring. The kb article says "This hotfix provides updated versions of the setup files and enables new installations
    of the System Center 2012 R2 Configuration Manager site database role and the System Center 2012 Configuration Manager SP1 site database role in Microsoft SQL Server 2014"
    Torsten Meringer | http://www.mssccmfaq.de

  • SCCM 2012 moving site Database server from SQL 2008 R2 cluster to 2012 cluster

    Hello,<o:p></o:p>
    Using the SCCM 2012 setup, I get
    the following errors and then it eventually fails……I’ve been uninstalled and
    installed SQL native client .....still unable to move SQL database,i get this error:<o:p></o:p>
    *** Failed to connect to the SQL Server, connection type: SMS ACCESS. Configuration Manager Setup 25/02/2015 21:01:03 8624 (0x21B0)
    INFO: SQL Connection failed. Connection: SMS ACCESS, Type: Secure Configuration Manager Setup 25/02/2015 21:01:03 8624 (0x21B0)
    *** [08001][-2146893019][Microsoft][SQL Server Native Client 11.0]SSL Provider: The certificate chain was issued by an authority that is not trusted. Configuration Manager Setup 25/02/2015 21:01:07 8624 (0x21B0)
    *** [08001][-2146893019][Microsoft][SQL Server Native Client 11.0]Client unable to establish connection Configuration Manager Setup 25/02/2015 21:01:07 8624 (0x21B0)
    I know that the problem is related to a certificat issue but i didn't arrived to resolve it.

    Have a look at this post (pay special attention to the comments):
    http://blogs.technet.com/b/configurationmgr/archive/2013/04/02/how-to-move-the-configmgr-2012-site-database-to-a-new-sql-server.aspx
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • SCCM 2012 R2 Secondary site server will support the DMZ Zone?

    We are planning for SCCM 2012 Migration, currently we have separate Primary server in DMZ.
    Kindly suggest what is the best method to deploy in the DMZ (separate primary or secondary or DP) because we have only 500 Client in DMZ.

    Hi,
    There is a blog talking about this error. You could try the method in the blog.
    To summarise, when installing SCCM 2012 SP1 secondary site on a pre-configured SQL 2012 instance regardless which SQL edition is being used, “NT AUTHORITY\SYSTEM” account needs to be given
    securityadmin and sysadmin rights. If SQL Express is used, there are few additional steps need to be carried out to configure the SQL TCP connection as documented in my previous blog:
    http://blog.tyang.org/2012/04/09/installing-sccm-2012-rtm-secondary-site-using-a-pre-installed-sql-express-2008-r2-instance/
    Installing SCCM 2012 SP1 Secondary Site with a Pre-Configured SQL 2012 Instance
    Note:
    Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How to Migrate the 12 Hives to new server in new farm

    Dear All,
    How could I migrate the 12 hives to new folder ??
    Are there specific folder I just copy/past or I just copy everything and override the original ?
    Thank you

    My first question would be why? Any customizations, hopefully, should be in .wsp format.
    Assuming you have manually copied files into the hive folder and are looking to get them to the new server, copying the whole hive across is a really bad idea. What I have done in this situation (more than once) is to use a differencing app such as Notepad++
    (with plugins) or WinMerge (my personal fave).
    1) Copy the hive from the source server to a temp folder on the destination server
    2) Use one of the apps above to compare the two directory structures
    3) Copy across just the missing files from the source folder to the destination hive
    By doing it this way you ensure you don't damage your fresh clean hive on the new server, and you should be able to get across the manual customizations you need.
    Good luck!
    -Corey

  • Configure SUSDB_log.ldf Autogrowth Size on SCCM 2012 Standalone Primary Site Server

    I have configured the rest of my .ldf log files for SCCM use according to best practices by SCCM MVPs, but I have not read anywhere that states how I should go about configuring the auto growth for the WSUS database log file (susdb_log.ldf) itself.
    If someone can offer some guidance here, I would greatly appreciate it.
    Thanks

    Thanks Torsten. 
    So after I run the first full sync, I can just use that value to set the initial size like you stated and then use some other value to set the growth rate? There is only about 1,000 clients in this organization and I want to get this WSUS db log file configured
    prior to installing the SCCM primary site on the server. I have used Kent Agerlund's instructions on pre-configuring the SCCM 2012 R2 database and everything looks good there, but just wanted to know how to go about NOT using that 2TB default limit on the
    SUSDB_log. What is a good rule of thumb to use to determine the file growth value? Like 2x or 3x the initial value size? 
    Thanks

  • SCCM 2012 License On Virtual Server

    I am trying to understand the Microsoft license and was wondering any of the experiences guys here can help with the scenario below.
    I have a physical server with 2 physical processors and Vsphere is installed on the host.My plan is to install SCCM as a VM which will manage about 5 physical Host and 80Virtual servers. Does than mean with one datacenter license, i can increase the number
    of Virtual processor and Virtual core as much as i like on the SCCM server without breaking Microsoft licensing Agreement?

    Hi,
    There are no license for the SCCM Server itself you license the endpoints.
    This article describes it really good,
    http://windowsitpro.com/system-center-2012/understanding-microsoft-system-center-2012-licensing
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Sccm 2012 sp1 upgrade, new client install hangs

    I just upgraded from 2012 to 2012 sp1. When i try the "Install Client" ccmsetup.exe appears to hang on the remote machine. Thoughts?

    Thanks for helping me track down the issue. Now for the actual problem.
    <![LOG[Checking compatibility of site version '5.00.7711.0000', expect newer than '5.00.7783.1000']LOG]!><time="20:10:02.519+300" date="05-20-2013" component="ccmsetup" context="" type="1" thread="1208" file="siteinfo.cpp:703">
    <![LOG[Client version '5.00.7804.1000' is not compatible with the site 'LNK' version '5.00.7711.0000'.]LOG]!><time="20:10:02.519+300" date="05-20-2013" component="ccmsetup" context="" type="2" thread="1208" file="siteinfo.cpp:721">
    <![LOG[Client version '5.00.7804.1000' is not compatible with the site 'LNK' version '5.00.7711.0000'. Fail the installation.]LOG]!><time="20:10:02.519+300" date="05-20-2013" component="ccmsetup" context="" type="3" thread="1208" file="ccmsetup.cpp:1439">
    <![LOG[CcmSetup failed with error code 0x87d0029d]LOG]!><time="20:10:02.519+300" date="05-20-2013" component="ccmsetup" context="" type="1" thread="1044" file="ccmsetup.cpp:10544">
    So after the upgrade process i "accidently" ran a reset this site from the install. Not sure if thats what is cuasing my issues but i wanted that to be known. Other then that i am not sure why my site is show as pre sp1 still.
    My setup is just 1 primary box nothing complicated all self contained.
    *EDIT*
    If i go to Administration->Site COnfiguration->Sites->Properties on LNK
    It shows Build number 7804
    *EDIT*
    After reading through this post
    http://social.technet.microsoft.com/Forums/en-US/configmanagerdeployment/thread/77abdd5a-fdb8-4202-b092-ddce0dc05b7b/
    I get a new error
    <![LOG[Content boundary is '--aAbBcCdDv1234567890VxXyYzZ']LOG]!><time="07:57:17.773+300" date="05-21-2013" component="ccmsetup" context="" type="0" thread="1312" file="httphelper.cpp:1972">
    <![LOG[Received header '<Msg SchemaVersion="1.1">
    <ID>{0568D04C-8345-4CD0-A502-76391B624A0A}</ID>
    <SourceID>GUID:86F07109-3652-438D-811D-8C96A1EA8FBF</SourceID>
    <SourceHost>SYSCEN0</SourceHost>
    <TargetAddress>direct:COD-VMSCCMT:LS_ReplyLocations</TargetAddress>
    <ReplyTo>MP_LocationManager</ReplyTo>
    <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
    <Priority>3</Priority>
    <Timeout>600</Timeout>
    <ReplyCapabilities><AllowRegistrationReset>direct:SYSCEN0:ClientRegistration</AllowRegistrationReset></ReplyCapabilities><TargetHost>COD-VMSCCMT</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2013-05-21T12:57:17Z</SentTime><Body Type="ByteRange" Offset="0" Length="1252"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">3082019206092A864886F70D010702A08201833082017F020101310B300906052B0E03021A0500300B06092A864886F70D0107013182015E3082015A02010130373023311330110603550403130A434F4453595343454E30310C300A06035504031303534D5302103E001687225A2F8D49A10C8B03BD6DF9300906052B0E03021A0500300D06092A864886F70D010101050004820100B43219C37E69E8657981E3ACDF61A324D51A82F18F5F78485A9B0724A25B973D6879A74BB5732DC30C947201FC6BADD2720621640250ABB29C4A746C520E147425DE9412D34BA6E69080A25174757CF7597B29C46443AD023D56B40005656D8D878AF25543D2591971243A0C8BC4E28351C4EC73AE343FF413119AC52F2A97AE97F4B54D2A3D15579A25CFD9382337FD79A13669255A29621353D08EFBFD57A654E4E7EF63F33D398A883644128F67125A3913462DD072C92D7E467A5106B943DD3794363EDFB166C4661501A1C4EC2145D7A99933C8198C7449A85EA27962976B3FD46A863F43E0672EF7B520542ECF1B9B99B8A09D605CE6A33D3504ABA15A</Property><Property Name="AuthSenderMachine">SYSCEN0;SYSCEN0.abc.medforest.org;</Property><Property Name="MPSiteCode">LNK</Property></Hook></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="07:57:17.773+300" date="05-21-2013" component="ccmsetup" context="" type="0" thread="1312" file="httphelper.cpp:1724">
    <![LOG[Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags=""><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="LNK" MasterSiteCode="LNK" SiteLocality="LOCAL" IISPreferedPort="" IISSSLPreferedPort=""/><LocationRecords/></Site></Sites><ClientPackage FullPackageID="LNK00002" FullPackageVersion="2" FullPackageHash="5EF3A189C48F3469440A83026EC8ECD36EAD6EAF3B5D35663F8201BDE175413C" MinimumClientVersion="5.00.7804.1000" RandomizeMaxDays="1" ProgramEnabled="false" LastModifiedTime="30298897;380127488" SiteVersionMatch="true" SiteVersion="5.00.7804.1000" EnablePeerCache="true"/></ContentLocationReply>']LOG]!><time="07:57:17.773+300" date="05-21-2013" component="ccmsetup" context="" type="0" thread="1312" file="siteinfo.cpp:221">
    <![LOG[Failed to get DP locations as the expected version from MP 'SYSCEN0.abc.medforest.org'. Error 0x87d00215]LOG]!><time="07:57:17.773+300" date="05-21-2013" component="ccmsetup" context="" type="2" thread="1312" file="ccmsetup.cpp:10926">
    <![LOG[A Fallback Status Point has not been specified. Message with STATEID='101' will not be sent.]LOG]!><time="07:57:17.773+300" date="05-21-2013" component="ccmsetup" context="" type="1" thread="1312" file="ccmsetup.cpp:9428">
    <![LOG[Next retry in 10 minute(s)...]LOG]!><time="07:57:17.773+300" date="05-21-2013" component="ccmsetup" context="" type="0" thread="1312" file="ccmsetup.cpp:8498">

Maybe you are looking for