设为首页 收藏本站
查看: 988|回复: 0

[经验分享] Configuring The CAS Server Used By RPC Client

[复制链接]

尚未签到

发表于 2018-10-22 12:18:47 | 显示全部楼层 |阅读模式
  RPC clients such as Outlook 2003, 2007, and 2010 use CAS servers as their MAPI endpoint for mailbox access in Exchange 2010.
  RPC客户端,例如outlook 2003,2007和2010使用CAS服务器作为它们在Exchange 2010中邮箱访问的MAPI
  端点。
  Ideally, you want to create your CAS arrays before creating your mailbox databases. This is because, as we discussed previously, once the CAS array for a particular site has been created, all mailbox databases created within the site will be automatically configured to
  use this array as the RPC Client Access server. When a user's Outlook profile is initially configured and the RPCClientAccessServer property for their mailbox database is set to a specific CAS server, their profile will not be updated if you later change this setting using the Set-MailboxDatabase cmdlet. In this situation, you would need to reconfigure the user's Outlook profile and set the server name to the FQDN of the CAS array, or you could run a repair in Outlook to correct the setting. Either way, this requires you or a member of your staff to touch each workstation used by the affected users. Therefore, it is best practice to set the RPC Client Access server to the correct value before allowing any users connect to Exchangeusing Outlook.
  我点一下,不需要完全翻译,就是如果安装Exchange 2010邮箱数据库库之后配置CAS Array,那么我们就面临一个问题,我们需要重新配置用户的outlook配置文件并且设置服务器的名称为CAS Array的FQDN。那假如我目前就是这样的情况,那么我该怎么办呢?
  If you've already created multiple mailbox databases across multiple mailbox servers and have not already created a CAS array, this could end up being a problem for you on the client side, but updating all of the databases with a new RPC Client Access server setting after the fact is very easy to do. Let's say that you've created multiple mailbox databases located on several mailbox servers in the default Active Directory site prior to creating a CAS array. You can use the following code to update each database in the site:
  Get-ExchangeServer |
  Where-Object {$_.Site.Name -eq 'Default-First-Site-Name' `
  -and $_.ServerRole -match 'Mailbox'
  } |
  Get-MailboxDatabase |
  Set-MailboxDatabase -RpcClientAccessServer outlook.contoso.com
  In this example, we first use the Get-ExchangeServer cmdlet to create a collection of mailbox servers. You can see that we're filtering two properties, output by this cmdlet. First, we're checking the Site.Name property to make sure it is set to Default-First-Site-Name, and second, we're filtering the ServerRole property to ensure that we're only going to retrieve servers running the Mailbox role. When filtering the ServerRole property, you can see that we're using the -match operator. This is because comparing the ServerRole property using the -eq (equals) operator will not evaluate to $true if the server is hosting multiple roles. The output of the command returns one or more mailbox servers in the
  default Active Directory site. Each server object returned is then piped down to the
  Get-MailboxDatabase cmdlet, which retrieves every database hosted by each mailbox server. Finally, those objects are piped down to the Set-MailboxDatabase cmdlet, which configures the RPCClientAccessServer property of each database in the default site to the outlook.contoso.com CAS array.
  使用上面的命令,我们就可以一条命令解决,邮箱服务器配置为使用CAS Array的URL,命令的解释非常清楚,有兴趣的自己可以看下。
  至此我要说一点:Microsoft Exchange Server Powershell cookbook 真的是一本好书,cookbook系列真的不错。可以在51cto上下载到,你值得拥有!


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-624976-1-1.html 上篇帖子: SQL 2008评估期已过 下篇帖子: 防sql注入的过滤器
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表