Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > File Systems > how to migrate file share to new server

Reply
Thread Tools Display Modes

how to migrate file share to new server

 
 
Rich
Guest
Posts: n/a

 
      09-12-2008
I currently have a Win 2K server with about 300GB of data in a file share,
that i want to migrate to a better server running Win 2K3 at a remote
location. What i think would be best would be if i could set up a constant
replication/syncing of the data from my current server to the old one, so any
changes made on old would be reflected on new. Then one evening after
everyone is done with the old server, i would stop that file share, and point
everyone's shortcuts to the new share. how could i best accomplish this? or
another option would be to have it sync both ways and i can just slowly move
users over one by one to the new server until they are all on it, then stop
the file share on the old server. thanks in advance for the help.
 
Reply With Quote
 
 
 
 
Danny Sanders
Guest
Posts: n/a

 
      09-12-2008
Look into robocopy. Something like robocopy d:\folder e:\folder /e /sec /w:3
r:3 /log:folder.
You can schedule it as a .bat file. Use the log to determine if any files
are not copied.


hth
DDS

"Rich" <> wrote in message
news3B68B41-F64A-432A-AE8F-...
>I currently have a Win 2K server with about 300GB of data in a file share,
> that i want to migrate to a better server running Win 2K3 at a remote
> location. What i think would be best would be if i could set up a
> constant
> replication/syncing of the data from my current server to the old one, so
> any
> changes made on old would be reflected on new. Then one evening after
> everyone is done with the old server, i would stop that file share, and
> point
> everyone's shortcuts to the new share. how could i best accomplish this?
> or
> another option would be to have it sync both ways and i can just slowly
> move
> users over one by one to the new server until they are all on it, then
> stop
> the file share on the old server. thanks in advance for the help.



 
Reply With Quote
 
DaveMills
Guest
Posts: n/a

 
      09-12-2008
On Fri, 12 Sep 2008 15:28:12 -0600, "Danny Sanders" <>
wrote:

>Look into robocopy. Something like robocopy d:\folder e:\folder /e /sec /w:3
>r:3 /log:folder.
>You can schedule it as a .bat file. Use the log to determine if any files
>are not copied.


You can make it respond to changes in the source folder to trigger a new sync
too so the when the source is updated it will re-run the copy adding changed
files.

Another way would by to use DFSR and set up replication between the two shares
but not allow users the use the link to the new share until replication has
completed. Then enable the new link. If you are removing the old server disable
that link. Finally when all have switched to the new link remove the replication
group and wait for the message in the event log that replication has been
removed before deleting the old copy of the data. If you jump the gun on this
then DFSR can notice the delete and sync that delete with the new copy, poof, no
files. I always take a backup of the data before deleting the old copy, once
bitten twice shy <grin>

>
>
>hth
>DDS
>
>"Rich" <> wrote in message
>news3B68B41-F64A-432A-AE8F-...
>>I currently have a Win 2K server with about 300GB of data in a file share,
>> that i want to migrate to a better server running Win 2K3 at a remote
>> location. What i think would be best would be if i could set up a
>> constant
>> replication/syncing of the data from my current server to the old one, so
>> any
>> changes made on old would be reflected on new. Then one evening after
>> everyone is done with the old server, i would stop that file share, and
>> point
>> everyone's shortcuts to the new share. how could i best accomplish this?
>> or
>> another option would be to have it sync both ways and i can just slowly
>> move
>> users over one by one to the new server until they are all on it, then
>> stop
>> the file share on the old server. thanks in advance for the help.

>

--
Dave Mills
There are 10 type of people, those that understand binary and those that don't.
 
Reply With Quote
 
Rich
Guest
Posts: n/a

 
      09-15-2008
Thanks to you both, Robocopy defintiely sounds like the way to go

"DaveMills" wrote:

> On Fri, 12 Sep 2008 15:28:12 -0600, "Danny Sanders" <>
> wrote:
>
> >Look into robocopy. Something like robocopy d:\folder e:\folder /e /sec /w:3
> >r:3 /log:folder.
> >You can schedule it as a .bat file. Use the log to determine if any files
> >are not copied.

>
> You can make it respond to changes in the source folder to trigger a new sync
> too so the when the source is updated it will re-run the copy adding changed
> files.
>
> Another way would by to use DFSR and set up replication between the two shares
> but not allow users the use the link to the new share until replication has
> completed. Then enable the new link. If you are removing the old server disable
> that link. Finally when all have switched to the new link remove the replication
> group and wait for the message in the event log that replication has been
> removed before deleting the old copy of the data. If you jump the gun on this
> then DFSR can notice the delete and sync that delete with the new copy, poof, no
> files. I always take a backup of the data before deleting the old copy, once
> bitten twice shy <grin>
>
> >
> >
> >hth
> >DDS
> >
> >"Rich" <> wrote in message
> >news3B68B41-F64A-432A-AE8F-...
> >>I currently have a Win 2K server with about 300GB of data in a file share,
> >> that i want to migrate to a better server running Win 2K3 at a remote
> >> location. What i think would be best would be if i could set up a
> >> constant
> >> replication/syncing of the data from my current server to the old one, so
> >> any
> >> changes made on old would be reflected on new. Then one evening after
> >> everyone is done with the old server, i would stop that file share, and
> >> point
> >> everyone's shortcuts to the new share. how could i best accomplish this?
> >> or
> >> another option would be to have it sync both ways and i can just slowly
> >> move
> >> users over one by one to the new server until they are all on it, then
> >> stop
> >> the file share on the old server. thanks in advance for the help.

> >

> --
> Dave Mills
> There are 10 type of people, those that understand binary and those that don't.
>

 
Reply With Quote
 
Rich
Guest
Posts: n/a

 
      09-15-2008
Since i have like 340GB of data, that would be nice to do one big copy over
the weekend when nobody is using the server, then throughout the week have it
keep updating whenever anything is changed on the current server. how do you
set it up like that?

"DaveMills" wrote:

> On Fri, 12 Sep 2008 15:28:12 -0600, "Danny Sanders" <>
> wrote:
>
> >Look into robocopy. Something like robocopy d:\folder e:\folder /e /sec /w:3
> >r:3 /log:folder.
> >You can schedule it as a .bat file. Use the log to determine if any files
> >are not copied.

>
> You can make it respond to changes in the source folder to trigger a new sync
> too so the when the source is updated it will re-run the copy adding changed
> files.
>
> Another way would by to use DFSR and set up replication between the two shares
> but not allow users the use the link to the new share until replication has
> completed. Then enable the new link. If you are removing the old server disable
> that link. Finally when all have switched to the new link remove the replication
> group and wait for the message in the event log that replication has been
> removed before deleting the old copy of the data. If you jump the gun on this
> then DFSR can notice the delete and sync that delete with the new copy, poof, no
> files. I always take a backup of the data before deleting the old copy, once
> bitten twice shy <grin>
>
> >
> >
> >hth
> >DDS
> >
> >"Rich" <> wrote in message
> >news3B68B41-F64A-432A-AE8F-...
> >>I currently have a Win 2K server with about 300GB of data in a file share,
> >> that i want to migrate to a better server running Win 2K3 at a remote
> >> location. What i think would be best would be if i could set up a
> >> constant
> >> replication/syncing of the data from my current server to the old one, so
> >> any
> >> changes made on old would be reflected on new. Then one evening after
> >> everyone is done with the old server, i would stop that file share, and
> >> point
> >> everyone's shortcuts to the new share. how could i best accomplish this?
> >> or
> >> another option would be to have it sync both ways and i can just slowly
> >> move
> >> users over one by one to the new server until they are all on it, then
> >> stop
> >> the file share on the old server. thanks in advance for the help.

> >

> --
> Dave Mills
> There are 10 type of people, those that understand binary and those that don't.
>

 
Reply With Quote
 
Danny Sanders
Guest
Posts: n/a

 
      09-15-2008
Stop the share on Friday evening, perform the robocopy over the weekend.
Restart the share Monday morning and use robocopy again using /MON or /MOT
switch.

hth
DDS

"Rich" <> wrote in message
news:395A1372-CDD8-4D92-B993-...
> Since i have like 340GB of data, that would be nice to do one big copy
> over
> the weekend when nobody is using the server, then throughout the week have
> it
> keep updating whenever anything is changed on the current server. how do
> you
> set it up like that?
>
> "DaveMills" wrote:
>
>> On Fri, 12 Sep 2008 15:28:12 -0600, "Danny Sanders"
>> <>
>> wrote:
>>
>> >Look into robocopy. Something like robocopy d:\folder e:\folder /e /sec
>> >/w:3
>> >r:3 /log:folder.
>> >You can schedule it as a .bat file. Use the log to determine if any
>> >files
>> >are not copied.

>>
>> You can make it respond to changes in the source folder to trigger a new
>> sync
>> too so the when the source is updated it will re-run the copy adding
>> changed
>> files.
>>
>> Another way would by to use DFSR and set up replication between the two
>> shares
>> but not allow users the use the link to the new share until replication
>> has
>> completed. Then enable the new link. If you are removing the old server
>> disable
>> that link. Finally when all have switched to the new link remove the
>> replication
>> group and wait for the message in the event log that replication has been
>> removed before deleting the old copy of the data. If you jump the gun on
>> this
>> then DFSR can notice the delete and sync that delete with the new copy,
>> poof, no
>> files. I always take a backup of the data before deleting the old copy,
>> once
>> bitten twice shy <grin>
>>
>> >
>> >
>> >hth
>> >DDS
>> >
>> >"Rich" <> wrote in message
>> >news3B68B41-F64A-432A-AE8F-...
>> >>I currently have a Win 2K server with about 300GB of data in a file
>> >>share,
>> >> that i want to migrate to a better server running Win 2K3 at a remote
>> >> location. What i think would be best would be if i could set up a
>> >> constant
>> >> replication/syncing of the data from my current server to the old one,
>> >> so
>> >> any
>> >> changes made on old would be reflected on new. Then one evening after
>> >> everyone is done with the old server, i would stop that file share,
>> >> and
>> >> point
>> >> everyone's shortcuts to the new share. how could i best accomplish
>> >> this?
>> >> or
>> >> another option would be to have it sync both ways and i can just
>> >> slowly
>> >> move
>> >> users over one by one to the new server until they are all on it, then
>> >> stop
>> >> the file share on the old server. thanks in advance for the help.
>> >

>> --
>> Dave Mills
>> There are 10 type of people, those that understand binary and those that
>> don't.
>>



 
Reply With Quote
 
Rich
Guest
Posts: n/a

 
      09-15-2008
Thanks. So do i only need to do the /MON once and it will just keep
constantly checking and synching the new server?

"Danny Sanders" wrote:

> Stop the share on Friday evening, perform the robocopy over the weekend.
> Restart the share Monday morning and use robocopy again using /MON or /MOT
> switch.
>
> hth
> DDS
>
> "Rich" <> wrote in message
> news:395A1372-CDD8-4D92-B993-...
> > Since i have like 340GB of data, that would be nice to do one big copy
> > over
> > the weekend when nobody is using the server, then throughout the week have
> > it
> > keep updating whenever anything is changed on the current server. how do
> > you
> > set it up like that?
> >
> > "DaveMills" wrote:
> >
> >> On Fri, 12 Sep 2008 15:28:12 -0600, "Danny Sanders"
> >> <>
> >> wrote:
> >>
> >> >Look into robocopy. Something like robocopy d:\folder e:\folder /e /sec
> >> >/w:3
> >> >r:3 /log:folder.
> >> >You can schedule it as a .bat file. Use the log to determine if any
> >> >files
> >> >are not copied.
> >>
> >> You can make it respond to changes in the source folder to trigger a new
> >> sync
> >> too so the when the source is updated it will re-run the copy adding
> >> changed
> >> files.
> >>
> >> Another way would by to use DFSR and set up replication between the two
> >> shares
> >> but not allow users the use the link to the new share until replication
> >> has
> >> completed. Then enable the new link. If you are removing the old server
> >> disable
> >> that link. Finally when all have switched to the new link remove the
> >> replication
> >> group and wait for the message in the event log that replication has been
> >> removed before deleting the old copy of the data. If you jump the gun on
> >> this
> >> then DFSR can notice the delete and sync that delete with the new copy,
> >> poof, no
> >> files. I always take a backup of the data before deleting the old copy,
> >> once
> >> bitten twice shy <grin>
> >>
> >> >
> >> >
> >> >hth
> >> >DDS
> >> >
> >> >"Rich" <> wrote in message
> >> >news3B68B41-F64A-432A-AE8F-...
> >> >>I currently have a Win 2K server with about 300GB of data in a file
> >> >>share,
> >> >> that i want to migrate to a better server running Win 2K3 at a remote
> >> >> location. What i think would be best would be if i could set up a
> >> >> constant
> >> >> replication/syncing of the data from my current server to the old one,
> >> >> so
> >> >> any
> >> >> changes made on old would be reflected on new. Then one evening after
> >> >> everyone is done with the old server, i would stop that file share,
> >> >> and
> >> >> point
> >> >> everyone's shortcuts to the new share. how could i best accomplish
> >> >> this?
> >> >> or
> >> >> another option would be to have it sync both ways and i can just
> >> >> slowly
> >> >> move
> >> >> users over one by one to the new server until they are all on it, then
> >> >> stop
> >> >> the file share on the old server. thanks in advance for the help.
> >> >
> >> --
> >> Dave Mills
> >> There are 10 type of people, those that understand binary and those that
> >> don't.
> >>

>
>
>

 
Reply With Quote
 
Danny Sanders
Guest
Posts: n/a

 
      09-15-2008
> Thanks. So do i only need to do the /MON once and it will just keep
> constantly checking and synching the new server?



I haven't used that switch so I can't tell you what to expect. It should be
easy enough to create 2 folders, dump some word files in one and test.

hth
DDS

"Rich" <> wrote in message
news:1F142AE5-88BA-4474-B0F2-...
> Thanks. So do i only need to do the /MON once and it will just keep
> constantly checking and synching the new server?
>
> "Danny Sanders" wrote:
>
>> Stop the share on Friday evening, perform the robocopy over the weekend.
>> Restart the share Monday morning and use robocopy again using /MON or
>> /MOT
>> switch.
>>
>> hth
>> DDS
>>
>> "Rich" <> wrote in message
>> news:395A1372-CDD8-4D92-B993-...
>> > Since i have like 340GB of data, that would be nice to do one big copy
>> > over
>> > the weekend when nobody is using the server, then throughout the week
>> > have
>> > it
>> > keep updating whenever anything is changed on the current server. how
>> > do
>> > you
>> > set it up like that?
>> >
>> > "DaveMills" wrote:
>> >
>> >> On Fri, 12 Sep 2008 15:28:12 -0600, "Danny Sanders"
>> >> <>
>> >> wrote:
>> >>
>> >> >Look into robocopy. Something like robocopy d:\folder e:\folder /e
>> >> >/sec
>> >> >/w:3
>> >> >r:3 /log:folder.
>> >> >You can schedule it as a .bat file. Use the log to determine if any
>> >> >files
>> >> >are not copied.
>> >>
>> >> You can make it respond to changes in the source folder to trigger a
>> >> new
>> >> sync
>> >> too so the when the source is updated it will re-run the copy adding
>> >> changed
>> >> files.
>> >>
>> >> Another way would by to use DFSR and set up replication between the
>> >> two
>> >> shares
>> >> but not allow users the use the link to the new share until
>> >> replication
>> >> has
>> >> completed. Then enable the new link. If you are removing the old
>> >> server
>> >> disable
>> >> that link. Finally when all have switched to the new link remove the
>> >> replication
>> >> group and wait for the message in the event log that replication has
>> >> been
>> >> removed before deleting the old copy of the data. If you jump the gun
>> >> on
>> >> this
>> >> then DFSR can notice the delete and sync that delete with the new
>> >> copy,
>> >> poof, no
>> >> files. I always take a backup of the data before deleting the old
>> >> copy,
>> >> once
>> >> bitten twice shy <grin>
>> >>
>> >> >
>> >> >
>> >> >hth
>> >> >DDS
>> >> >
>> >> >"Rich" <> wrote in message
>> >> >news3B68B41-F64A-432A-AE8F-...
>> >> >>I currently have a Win 2K server with about 300GB of data in a file
>> >> >>share,
>> >> >> that i want to migrate to a better server running Win 2K3 at a
>> >> >> remote
>> >> >> location. What i think would be best would be if i could set up a
>> >> >> constant
>> >> >> replication/syncing of the data from my current server to the old
>> >> >> one,
>> >> >> so
>> >> >> any
>> >> >> changes made on old would be reflected on new. Then one evening
>> >> >> after
>> >> >> everyone is done with the old server, i would stop that file share,
>> >> >> and
>> >> >> point
>> >> >> everyone's shortcuts to the new share. how could i best accomplish
>> >> >> this?
>> >> >> or
>> >> >> another option would be to have it sync both ways and i can just
>> >> >> slowly
>> >> >> move
>> >> >> users over one by one to the new server until they are all on it,
>> >> >> then
>> >> >> stop
>> >> >> the file share on the old server. thanks in advance for the help.
>> >> >
>> >> --
>> >> Dave Mills
>> >> There are 10 type of people, those that understand binary and those
>> >> that
>> >> don't.
>> >>

>>
>>
>>



 
Reply With Quote
 
DaveMills
Guest
Posts: n/a

 
      09-15-2008
I agree, I cannot remember the switches I used but I tested it on a folder like
"Home Folders" but at the user level. Then I made changes a watched what
happened. It only took a few tests to see what switched worked best then I moved
up a level and did the real job. I left it running for a few days while I got up
to date.

Another nice feature of Robocopy is that if you run into errors (e.g. user has
denied Admin any access) then it pops up a error but will keep retrying (2^16
times). So you simply open a new Explorer window and fix the permissions and
Robocopy suddenly just continues

On Mon, 15 Sep 2008 10:58:03 -0600, "Danny Sanders" <>
wrote:

>> Thanks. So do i only need to do the /MON once and it will just keep
>> constantly checking and synching the new server?

>
>
>I haven't used that switch so I can't tell you what to expect. It should be
>easy enough to create 2 folders, dump some word files in one and test.
>
>hth
>DDS
>
>"Rich" <> wrote in message
>news:1F142AE5-88BA-4474-B0F2-...
>> Thanks. So do i only need to do the /MON once and it will just keep
>> constantly checking and synching the new server?
>>
>> "Danny Sanders" wrote:
>>
>>> Stop the share on Friday evening, perform the robocopy over the weekend.
>>> Restart the share Monday morning and use robocopy again using /MON or
>>> /MOT
>>> switch.
>>>
>>> hth
>>> DDS
>>>
>>> "Rich" <> wrote in message
>>> news:395A1372-CDD8-4D92-B993-...
>>> > Since i have like 340GB of data, that would be nice to do one big copy
>>> > over
>>> > the weekend when nobody is using the server, then throughout the week
>>> > have
>>> > it
>>> > keep updating whenever anything is changed on the current server. how
>>> > do
>>> > you
>>> > set it up like that?
>>> >
>>> > "DaveMills" wrote:
>>> >
>>> >> On Fri, 12 Sep 2008 15:28:12 -0600, "Danny Sanders"
>>> >> <>
>>> >> wrote:
>>> >>
>>> >> >Look into robocopy. Something like robocopy d:\folder e:\folder /e
>>> >> >/sec
>>> >> >/w:3
>>> >> >r:3 /log:folder.
>>> >> >You can schedule it as a .bat file. Use the log to determine if any
>>> >> >files
>>> >> >are not copied.
>>> >>
>>> >> You can make it respond to changes in the source folder to trigger a
>>> >> new
>>> >> sync
>>> >> too so the when the source is updated it will re-run the copy adding
>>> >> changed
>>> >> files.
>>> >>
>>> >> Another way would by to use DFSR and set up replication between the
>>> >> two
>>> >> shares
>>> >> but not allow users the use the link to the new share until
>>> >> replication
>>> >> has
>>> >> completed. Then enable the new link. If you are removing the old
>>> >> server
>>> >> disable
>>> >> that link. Finally when all have switched to the new link remove the
>>> >> replication
>>> >> group and wait for the message in the event log that replication has
>>> >> been
>>> >> removed before deleting the old copy of the data. If you jump the gun
>>> >> on
>>> >> this
>>> >> then DFSR can notice the delete and sync that delete with the new
>>> >> copy,
>>> >> poof, no
>>> >> files. I always take a backup of the data before deleting the old
>>> >> copy,
>>> >> once
>>> >> bitten twice shy <grin>
>>> >>
>>> >> >
>>> >> >
>>> >> >hth
>>> >> >DDS
>>> >> >
>>> >> >"Rich" <> wrote in message
>>> >> >news3B68B41-F64A-432A-AE8F-...
>>> >> >>I currently have a Win 2K server with about 300GB of data in a file
>>> >> >>share,
>>> >> >> that i want to migrate to a better server running Win 2K3 at a
>>> >> >> remote
>>> >> >> location. What i think would be best would be if i could set up a
>>> >> >> constant
>>> >> >> replication/syncing of the data from my current server to the old
>>> >> >> one,
>>> >> >> so
>>> >> >> any
>>> >> >> changes made on old would be reflected on new. Then one evening
>>> >> >> after
>>> >> >> everyone is done with the old server, i would stop that file share,
>>> >> >> and
>>> >> >> point
>>> >> >> everyone's shortcuts to the new share. how could i best accomplish
>>> >> >> this?
>>> >> >> or
>>> >> >> another option would be to have it sync both ways and i can just
>>> >> >> slowly
>>> >> >> move
>>> >> >> users over one by one to the new server until they are all on it,
>>> >> >> then
>>> >> >> stop
>>> >> >> the file share on the old server. thanks in advance for the help.
>>> >> >
>>> >> --
>>> >> Dave Mills
>>> >> There are 10 type of people, those that understand binary and those
>>> >> that
>>> >> don't.
>>> >>
>>>
>>>
>>>

>

--
Dave Mills
There are 10 types of people, those that understand binary and those that don't.
 
Reply With Quote
 
Mike
Guest
Posts: n/a

 
      09-30-2008
Rich - I'm in the midst of doing the exact same type of project with about
340GB of data that I am moving to a clustered file server. I'm using
ROBOCOPY to make the first pass of data over and then I plan to re-run the
ROBOCOPY script daily to get any changes and then one weekend, I plan to
stop the share, run ROBOCOPY again and point the DFS Target to the new
location and disable the referral to the old server.

This is what my ROBOCOPY script looks like:

robocopy {source} {destination} /copyall /e /zb /MIR /log:share_data.log
/np /tee /r:2 /w:1 /ndl

"DaveMills" wrote:

> I agree, I cannot remember the switches I used but I tested it on a folder like
> "Home Folders" but at the user level. Then I made changes a watched what
> happened. It only took a few tests to see what switched worked best then I moved
> up a level and did the real job. I left it running for a few days while I got up
> to date.
>
> Another nice feature of Robocopy is that if you run into errors (e.g. user has
> denied Admin any access) then it pops up a error but will keep retrying (2^16
> times). So you simply open a new Explorer window and fix the permissions and
> Robocopy suddenly just continues
>
> On Mon, 15 Sep 2008 10:58:03 -0600, "Danny Sanders" <>
> wrote:
>
> >> Thanks. So do i only need to do the /MON once and it will just keep
> >> constantly checking and synching the new server?

> >
> >
> >I haven't used that switch so I can't tell you what to expect. It should be
> >easy enough to create 2 folders, dump some word files in one and test.
> >
> >hth
> >DDS
> >
> >"Rich" <> wrote in message
> >news:1F142AE5-88BA-4474-B0F2-...
> >> Thanks. So do i only need to do the /MON once and it will just keep
> >> constantly checking and synching the new server?
> >>
> >> "Danny Sanders" wrote:
> >>
> >>> Stop the share on Friday evening, perform the robocopy over the weekend.
> >>> Restart the share Monday morning and use robocopy again using /MON or
> >>> /MOT
> >>> switch.
> >>>
> >>> hth
> >>> DDS
> >>>
> >>> "Rich" <> wrote in message
> >>> news:395A1372-CDD8-4D92-B993-...
> >>> > Since i have like 340GB of data, that would be nice to do one big copy
> >>> > over
> >>> > the weekend when nobody is using the server, then throughout the week
> >>> > have
> >>> > it
> >>> > keep updating whenever anything is changed on the current server. how
> >>> > do
> >>> > you
> >>> > set it up like that?
> >>> >
> >>> > "DaveMills" wrote:
> >>> >
> >>> >> On Fri, 12 Sep 2008 15:28:12 -0600, "Danny Sanders"
> >>> >> <>
> >>> >> wrote:
> >>> >>
> >>> >> >Look into robocopy. Something like robocopy d:\folder e:\folder /e
> >>> >> >/sec
> >>> >> >/w:3
> >>> >> >r:3 /log:folder.
> >>> >> >You can schedule it as a .bat file. Use the log to determine if any
> >>> >> >files
> >>> >> >are not copied.
> >>> >>
> >>> >> You can make it respond to changes in the source folder to trigger a
> >>> >> new
> >>> >> sync
> >>> >> too so the when the source is updated it will re-run the copy adding
> >>> >> changed
> >>> >> files.
> >>> >>
> >>> >> Another way would by to use DFSR and set up replication between the
> >>> >> two
> >>> >> shares
> >>> >> but not allow users the use the link to the new share until
> >>> >> replication
> >>> >> has
> >>> >> completed. Then enable the new link. If you are removing the old
> >>> >> server
> >>> >> disable
> >>> >> that link. Finally when all have switched to the new link remove the
> >>> >> replication
> >>> >> group and wait for the message in the event log that replication has
> >>> >> been
> >>> >> removed before deleting the old copy of the data. If you jump the gun
> >>> >> on
> >>> >> this
> >>> >> then DFSR can notice the delete and sync that delete with the new
> >>> >> copy,
> >>> >> poof, no
> >>> >> files. I always take a backup of the data before deleting the old
> >>> >> copy,
> >>> >> once
> >>> >> bitten twice shy <grin>
> >>> >>
> >>> >> >
> >>> >> >
> >>> >> >hth
> >>> >> >DDS
> >>> >> >
> >>> >> >"Rich" <> wrote in message
> >>> >> >news3B68B41-F64A-432A-AE8F-...
> >>> >> >>I currently have a Win 2K server with about 300GB of data in a file
> >>> >> >>share,
> >>> >> >> that i want to migrate to a better server running Win 2K3 at a
> >>> >> >> remote
> >>> >> >> location. What i think would be best would be if i could set up a
> >>> >> >> constant
> >>> >> >> replication/syncing of the data from my current server to the old
> >>> >> >> one,
> >>> >> >> so
> >>> >> >> any
> >>> >> >> changes made on old would be reflected on new. Then one evening
> >>> >> >> after
> >>> >> >> everyone is done with the old server, i would stop that file share,
> >>> >> >> and
> >>> >> >> point
> >>> >> >> everyone's shortcuts to the new share. how could i best accomplish
> >>> >> >> this?
> >>> >> >> or
> >>> >> >> another option would be to have it sync both ways and i can just
> >>> >> >> slowly
> >>> >> >> move
> >>> >> >> users over one by one to the new server until they are all on it,
> >>> >> >> then
> >>> >> >> stop
> >>> >> >> the file share on the old server. thanks in advance for the help.
> >>> >> >
> >>> >> --
> >>> >> Dave Mills
> >>> >> There are 10 type of people, those that understand binary and those
> >>> >> that
> >>> >> don't.
> >>> >>
> >>>
> >>>
> >>>

> >

> --
> Dave Mills
> There are 10 types of people, those that understand binary and those that don't.
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Netware 6 file server migrate to Windows 2003 server Jorge de Almeida Pinto [MVP - DS] Server Migration 0 03-18-2008 03:42 PM
RE: Netware 6 file server migrate to Windows 2003 server Morgan che Server Migration 0 03-06-2008 08:10 AM
Best way to migrate 2TB file server CK Server Migration 3 09-11-2007 10:48 AM
Migrate a single Win2K file server to new Win Server 2003 hardware Vince57 Server Migration 2 11-21-2005 03:55 AM
migrate file server ms Server Migration 2 11-08-2004 04:58 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59