BLOG zzy.my

合抱之木, 生于毫末; 九层之台, 起于累土; 千里之行, 始于足下。

Ubuntu16.04 ownCloud 9.0 安装日记

大致参考
https://doc.owncloud.org/server/9.0/admin_manual/installation/source_installation.html#ubuntu-
installation-label

国内可能安装 libapache2-mod-php5 出错
E: Package 'libapache2-mod-php5' has no installation candidate

编辑 /etc/apt/sources.list 加上

deb http://ftp.es.debian.org/debian stable main contrib non-free
deb-src http://ftp.es.debian.org/debian stable main contrib non-free

deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free
deb-src http://ftp.debian.org/debian/ wheezy-updates main contrib non-free

deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free

再运行 sudo apt-get update

----------
安装 mysql
安装中设置mysql的root账号和密码
sudo apt-get install mysql-server

[更多...]

Exchange 删除默认数据库

Exchange 2010/2013 安装完邮箱服务角色,���认自带一个数据库 "Mailbox Database xxxxxxxx"

如果需要删除,首先需新建一个数据库,再将自带数据库中的系统邮箱(审批助理、Federation)、发现搜索邮箱迁移到新建数据库,才可删除。

 

----------------------

迁移发现搜索邮箱

查看发现搜索邮箱
Get-Mailbox -Filter {RecipientTypeDetails -eq "DiscoveryMailbox"}  获取邮箱名

建立迁移请求
New-MoveRequest -Identity "DiscoverySearchMailbox {XXXXX}" -TargetDatabase DBName

迁移完成删除请求
Get-MoveRequest -MoveStatus Completed | Remove-MoveRequest (也有可能是CompletedWithWarning)

验证
Get-Mailbox -Filter {RecipientTypeDetails -eq "DiscoveryMailbox"} | select Name,Database

[更多...]