|
|
|
date: Thu, 24 Jan 2008 12:48:29 -0800,
group: microsoft.public.exchange.clustering
back
Re: how to identify what kind cluster?
Get-MailboxServer | select name,clusteredstoragetype
for CCR, clusteredstoragetype = nonshared.
LCR is not clustering, neither does SCR use clustering by itself (though it
can be used to replicate SCR and CCR clusters).
What's replicated: Storage Groups.
To find out which storage groups are replicated by LCR:
Get-StorageGroup | where {$_.hasLocalCopy} | Select name,server,haslocalcopy
Or:
Get-StorageGroup | select name,server,haslocalcopy
For SCR:
Get-StorageGroup | where {$_.StandbyMachines -ne $null} | select
name,server,standbymachines
--
Bharat Suneja
MVP - Exchange
www.zenprise.com
NEW blog location:
exchangepedia.com/blog
----------------------------------------------
"Chris" wrote in message
news:5F090EC5-7F48-4F65-91DE-A5532CF27FBD@microsoft.com...
> new to Exchange 2007. How to tell which cluster (CCR, LCR, SCR or SCC) is
> used among several mailbox servers?
>
> Thanks.
date: Thu, 24 Jan 2008 13:04:11 -0800
author: Bharat Suneja [MVP]
Re: how to identify what kind cluster?
Bharat,
how aobut SCC? how to check it?
thanks.
"Bharat Suneja [MVP]" wrote:
> Get-MailboxServer | select name,clusteredstoragetype
> for CCR, clusteredstoragetype = nonshared.
>
> LCR is not clustering, neither does SCR use clustering by itself (though it
> can be used to replicate SCR and CCR clusters).
>
> What's replicated: Storage Groups.
> To find out which storage groups are replicated by LCR:
> Get-StorageGroup | where {$_.hasLocalCopy} | Select name,server,haslocalcopy
>
> Or:
> Get-StorageGroup | select name,server,haslocalcopy
>
> For SCR:
> Get-StorageGroup | where {$_.StandbyMachines -ne $null} | select
> name,server,standbymachines
> --
> Bharat Suneja
> MVP - Exchange
> www.zenprise.com
> NEW blog location:
> exchangepedia.com/blog
> ----------------------------------------------
>
>
> "Chris" wrote in message
> news:5F090EC5-7F48-4F65-91DE-A5532CF27FBD@microsoft.com...
> > new to Exchange 2007. How to tell which cluster (CCR, LCR, SCR or SCC) is
> > used among several mailbox servers?
> >
> > Thanks.
>
>
date: Thu, 24 Jan 2008 16:16:14 -0800
author: Chris
Re: how to identify what kind cluster?
actually, here is my problem. I'm working on a Exchange 2007 environment.
There is no document for configuration. I only can see those servers in the
console. I hope I don't have to try all those commands to find out. Is
there something in the configurtion which has recorded how they are set up?
"Chris" wrote:
> Bharat,
> how aobut SCC? how to check it?
>
> thanks.
>
> "Bharat Suneja [MVP]" wrote:
>
> > Get-MailboxServer | select name,clusteredstoragetype
> > for CCR, clusteredstoragetype = nonshared.
> >
> > LCR is not clustering, neither does SCR use clustering by itself (though it
> > can be used to replicate SCR and CCR clusters).
> >
> > What's replicated: Storage Groups.
> > To find out which storage groups are replicated by LCR:
> > Get-StorageGroup | where {$_.hasLocalCopy} | Select name,server,haslocalcopy
> >
> > Or:
> > Get-StorageGroup | select name,server,haslocalcopy
> >
> > For SCR:
> > Get-StorageGroup | where {$_.StandbyMachines -ne $null} | select
> > name,server,standbymachines
> > --
> > Bharat Suneja
> > MVP - Exchange
> > www.zenprise.com
> > NEW blog location:
> > exchangepedia.com/blog
> > ----------------------------------------------
> >
> >
> > "Chris" wrote in message
> > news:5F090EC5-7F48-4F65-91DE-A5532CF27FBD@microsoft.com...
> > > new to Exchange 2007. How to tell which cluster (CCR, LCR, SCR or SCC) is
> > > used among several mailbox servers?
> > >
> > > Thanks.
> >
> >
date: Thu, 24 Jan 2008 16:29:03 -0800
author: Chris
|
|