Sharepoint Foundation 2010开发环境安装问题
我在安装 Sharepoint (Foundation) 2010 的开发计算机时遇到问题。这是我迄今为止在同一台计算机上所做的操作:
- 安装了带有 4GB RAM 的干净 Windows 7 x64,但不属于任何域。只是一个简单的独立机器。
- 按照描述启用 IIS 相关功能 这里 除了 IIS6 相关的(其中两个)
- 安装了 SQL Server 2008 R2 开发版(启用了数据库引擎和编写器,但未启用 SQL 代理)
- 安装了 Visual Studio 2010 Premium
- 开始安装 Sharepoint Foundation 2010,首先提取文件,更改配置以启用 Windows 7 安装,然后将其安装为服务器场(然后完成)以避免安装 SQL Express。
- 创建了一个具有
作为服务登录
权限的单独 SPF_CONFIG 本地用户。 - 打开 SPF Management Shell 并运行
New-SPConfigurationDatabase
,这样我就可以使用非域用户名(我在上一步中创建的 SPF_CONFIG),
此错误后的结果是:
- 数据库
Sharepoint2010Config
已创建 - 用户 SPF_CONFIG 已添加到 SQL Server 并作为
dbowner
附加到此新创建的数据库
- 检查 SQL Server 安全登录该用户具有以下权限:
dbcreator
安全管理员
公开
I'm having problems installing development machine for Sharepoint (Foundation) 2010. This is what I did so far on the same machine:
- Installed a clean Windows 7 x64 with 4GB of RAM without being part of any domain. Just a simple standalone machine.
- Enabled IIS related features as described here except IIS6 related ones (two of them)
- Installed SQL Server 2008 R2 Development Edition (DB Engine and Writer being enabled but not SQL Agent)
- Installed Visual Studio 2010 Premium
- Started installing Sharepoint Foundation 2010 with first extracting files, changing config to enable Windows 7 installation and then installed it as Server Farm (then Complete) to avoid installing SQL Express.
- Created a separate SPF_CONFIG local user with
Logon on as a service
right. - Opened SPF Management Shell and run
New-SPConfigurationDatabase
so I am able to use a non-domain username (SPF_CONFIG that I created in the previous step)
The outcome after this error is:
- Database
Sharepoint2010Config
is created - User SPF_CONFIG is added to SQL Server and attached to this newly created database as
dbowner
- Checking SQL server security logins this user has following rights:
dbcreator
securityadmin
public
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在尝试了各种方法后自己解决了这个问题
最主要的是我还没有放弃并安装了stadalone安装。
我遵循了两个指南:
分步说明 I接下来(可能对其他人也有帮助):
New-SPConfigurationDatabase -AdministrationContentDatabaseName "SomeDBName"
psconfigui
并完成配置拍手拍手
Resolved it myself after trying all kinds of things
The main thing is I haven't given up and installed stadalone installation.
I've followed two guides:
Step by step instructions I followed (may be helpful to someone else as well):
New-SPConfigurationDatabase -AdministrationContentDatabaseName "SomeDBName"
psconfigui
and finished configurationclap clap clap