Miscbrah Posted April 26, 2012 Posted April 26, 2012 Hi - we're moving our SIMS server from our current domain over to our new domain in a few weeks, or over the summer depending on how much headwind we pick up with our great migration. At this stage, just looking for any advice or hints. Has anyone done this before? What's good to do and what's good to not do? Is it fairly straightforward or is it a WORLD OF BREAKAGE? Thanks for reading, and why am I moderately dreading replies?
Brucy Posted April 26, 2012 Posted April 26, 2012 One thing to check is the username for the scheduled tasks (assuming the old domain is going) 1
sparkeh Posted April 26, 2012 Posted April 26, 2012 I did this last summer, just removed from old domain, joined to new domain and everything was fine. Disclaimer: this was just my experience, your mileage may vary 1
Miscbrah Posted April 26, 2012 Author Posted April 26, 2012 I did this last summer, just removed from old domain, joined to new domain and everything was fine. Disclaimer: this was just my experience, your mileage may vary http://www.how-to-draw-cartoons-online.com/image-files/cartoon_heart.gif
matt40k Posted April 26, 2012 Posted April 26, 2012 Are you changing the server name? Is it a dc or just a member server? 1
Brucy Posted April 26, 2012 Posted April 26, 2012 One thing to check is the username for the scheduled tasks (assuming the old domain is going) I should have added, our SIMS server was the last survivor of our old domain. It then started loosing the DC knocking out our drive mappings, so we had to do an emergency swap but had no issues (other than checking above) 1
Miscbrah Posted April 27, 2012 Author Posted April 27, 2012 Are you changing the server name? Is it a dc or just a member server? Not changing the name (sql objects to this I hear) and not a DC. Oh gawd I have optimism now... XD
ihaveaproblem Posted May 11, 2012 Posted May 11, 2012 Hello, Does anyone have any experience and can share their knowledge on migrating a Sims.Net and FMS server to a new domain. Or is anyone aware of some documentation that's available? As well as this I would like to move the SQL database from SQL 2008 that's currently sitting on the sims server and move it to SQL Server 2008 R2 that's installed on a dedicated SQL server. Thanks in advanced.
timzim Posted May 11, 2012 Posted May 11, 2012 Split the jobs. Setup SQL2008 and move the database there first. Then do the SQL upgrade to SQL2008R2. There should be instructions on SupportNet for the two jobs - look for documentation about migrating to a new server. Also make plenty of backups along the way so you can always roll back. TBH SIMS doesn't really care what domain its on and its users are SQL users, not domain users, so the domain migration shouldn't be a problem. 1
matt40k Posted May 11, 2012 Posted May 11, 2012 I would just get the latest installable CD, install SIMS + FMS on the new server, the migrate the data across later. Maybe do a dummy run if you've got the time. So are you having SIMS and FMS database on a dedicated SQL box to the rest of the SIMS bits - DMS etc? 1
vikpaw Posted May 12, 2012 Posted May 12, 2012 Will merge this with a previous similar thread from last month. 1
ihaveaproblem Posted May 12, 2012 Posted May 12, 2012 Will merge this with a previous similar thread from last month. Thanks, and sorry So from reading what others have said above I might be able to get away with just joining the server to the new domain? but cant change the computer name if I do this. I've registered for a supportNet account and will take a look at the documentation provided there once I've been accepted. matt40k, Yeah I was hoping to have the databases on a dedicated box separate to sims server. Is there any negatives to this? I thought it was something most people would do...but maybe I'm wrong.
glennda Posted May 12, 2012 Posted May 12, 2012 Yes All you would need to check is giving permissions on the Simsroot folder again to a group on the new domain and remove other one!
vikpaw Posted May 12, 2012 Posted May 12, 2012 Changing computer name at any stage is fairly straight forward from SIMS point of view. It's SQL that doesn't like it. If you want to change, it's best to make a new server and reinstall SQL, then just restore SIMS over. Alter any permissions and do a config on the docstore if it's held on same server. The only downside you might get to storing the SQL elsewhere is your support team might get confused. SIMS may run a tad slower. I don't see much advantage really. I didn't think there was much to the SIMS server side application or is there? I thought most of it is just static data, it's just SQL that other clients access. So it already is a dedicated SQL box for only SIMS tables.
gsayer Posted May 16, 2012 Posted May 16, 2012 (edited) We are going to be migrating to a new domain over the Summer as well. The SIMS server is a 2008 R2 member server on a MS Hyper V image and has SQL running on it as well. All we want to do is join it to the new domain, no other changes are required. I am told by our friends at Capita that all we need to do is to remove the server from the old domain and then join it to the new domain, simples. Edited May 16, 2012 by gsayer
ihaveaproblem Posted May 18, 2012 Posted May 18, 2012 Done a test and simply joining the server to a different domain works fine:) On another note. Please can someone either post or pm me their simsperm.bat? I believe their is an error with ours and would like to compare. Thanks 1
vikpaw Posted May 19, 2012 Posted May 19, 2012 Here's mine not that I use it. We did a load of group policy changes for our Win 7 environment. @echo off if "%1" == "" goto :usage SubInAcl /FILE "%WINDIR%\SIMS.INI" /GRANT=%1=F SubInAcl /KEYREG HKEY_LOCAL_MACHINE\SOFTWARE\Classes /GRANT=%1 SubInAcl /KEYREG HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID /GRANT=%1 SubInAcl /KEYREG HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface /GRANT=%1 SubInAcl /KEYREG HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib /GRANT=%1 if "%ALLUSERSPROFILE%" == "" goto :skip_simsapps SubInAcl /FILE "%ALLUSERSPROFILE%\Start Menu\Programs\SIMS Applications\*.*" /GRANT=%1=F SubInAcl /FILE "%ALLUSERSPROFILE%\Start Menu\Programs\SIMS Applications" /GRANT=%1=F SubInAcl /SUBDIRECTORIES "%ALLUSERSPROFILE%\Start Menu\Programs\SIMS Applications\*.*" /GRANT=%1=F SubInAcl /SUBDIRECTORIES "%ALLUSERSPROFILE%\Start Menu\Programs\SIMS Applications" /GRANT=%1=F goto :after_profile_warning :skip_simsapps echo. echo ** WARNING: The Environment Variable for All Users Profiles is not set on this pc, echo ** cannot grant permissions for the SIMS Applications Program Folder. echo. :after_profile_warning if "%ProgramFiles%" == "" goto :skip_simsdir SubInAcl /FILE "%ProgramFiles%\SIMS\*.*" /GRANT=%1=F SubInAcl /FILE "%ProgramFiles%\SIMS" /GRANT=%1=F SubInAcl /SUBDIRECTORIES "%ProgramFiles%\SIMS\*.*" /GRANT=%1=F SubInAcl /SUBDIRECTORIES "%ProgramFiles%\SIMS" /GRANT=%1=F goto :after_simsdir_warning :skip_simsdir echo. echo ** WARNING: The Environment Variable for the Program Files Folder is not set on this pc, echo ** cannot grant permissions to the SIMS Application Folder. echo. :after_simsdir_warning goto :end :usage echo. echo "Usage simsperm [domain]\ or simsperm [domain]\" echo. :end
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now