SharePoint 2016 PWA 网站不工作
SharePoint 2016 PWA site not working
我已经在 Windows Server 2012 和 SQL Server 2014 上安装了 SharePoint 2016 Server。我已经使用以下命令创建了内容数据库并启用了 SP 功能。
Enable-SPFeature pwasite -URL $http://XYZ/sites/pwa
我收到了成功消息,但是当我尝试使用站点主管理员帐户访问 URL 时,系统将我重定向到一个错误页面:
"Sorry, something went wrong
An unexpected error has occurred."
几天来我一直被这个问题困扰,无法设置项目服务器 2016。
请帮忙,提前致谢
看起来 PWA 实例配置不正确,您应该首先使用以下 cmdlet
启用 Project Server License
Enable-ProjectServerLicense -Key xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
Note: Although Project Server 2016 is included as part of the SharePoint Server 2016 Enterprise installation, it still requires a
separate license. (Trial key:Y2WC2-K7NFX-KWCVC-T4Q8P-4RG9W
)
要配置 Project Server 2016,您应该执行以下操作:
- 启用 Project Server 2016 许可证。
- 正在创建 Project Server 2016 服务应用程序。
- 部署 Project Web App。
- 创建 Web 应用程序。
- 创建 PWA 内容数据库。
- 锁定 PWA 内容数据库以防止添加除 PWA 网站之外的任何新网站集。
最后,使用Powershell创建PWA站点并启用PWA站点功能
#Create a PWA site collection
New-SPSite -ContentDatabase PWA_Content -URL http://epm/sites/PWA -Template pwa#0
#enable PWA Site Feature
Enable-SPFeature pwasite -URL http://epm/sites/PWA
请在
查看详细步骤
或使用以下脚本自动配置 Project Server 2016
经过几天的研发,我了解到服务器场账号也被下面的人使用:
Web Application Pool - SharePoint - 80
导致 SPTimerService (SPTimerV4) 失败。
感谢 M.Qassas 迄今为止的支持。
我已经在 Windows Server 2012 和 SQL Server 2014 上安装了 SharePoint 2016 Server。我已经使用以下命令创建了内容数据库并启用了 SP 功能。
Enable-SPFeature pwasite -URL $http://XYZ/sites/pwa
我收到了成功消息,但是当我尝试使用站点主管理员帐户访问 URL 时,系统将我重定向到一个错误页面:
"Sorry, something went wrong An unexpected error has occurred."
几天来我一直被这个问题困扰,无法设置项目服务器 2016。
请帮忙,提前致谢
看起来 PWA 实例配置不正确,您应该首先使用以下 cmdlet
启用Project Server License
Enable-ProjectServerLicense -Key xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
Note: Although Project Server 2016 is included as part of the SharePoint Server 2016 Enterprise installation, it still requires a separate license. (Trial key:
Y2WC2-K7NFX-KWCVC-T4Q8P-4RG9W
)
要配置 Project Server 2016,您应该执行以下操作:
- 启用 Project Server 2016 许可证。
- 正在创建 Project Server 2016 服务应用程序。
- 部署 Project Web App。
- 创建 Web 应用程序。
- 创建 PWA 内容数据库。
- 锁定 PWA 内容数据库以防止添加除 PWA 网站之外的任何新网站集。
最后,使用Powershell创建PWA站点并启用PWA站点功能
#Create a PWA site collection New-SPSite -ContentDatabase PWA_Content -URL http://epm/sites/PWA -Template pwa#0 #enable PWA Site Feature Enable-SPFeature pwasite -URL http://epm/sites/PWA
请在
查看详细步骤或使用以下脚本自动配置 Project Server 2016
经过几天的研发,我了解到服务器场账号也被下面的人使用:
Web Application Pool - SharePoint - 80
导致 SPTimerService (SPTimerV4) 失败。
感谢 M.Qassas 迄今为止的支持。