1. 參考 http://kumarcblog.blogspot.com/2012/12/cannot-login-to-sharepoint-2013-site.html
2. 當我依照 "Professional SharePoint 2013 Administration"(出版商WROX)的例子建立起新的網站 portal.contoso.com 並且也在 DNS建立 Host, 但是在IE下輸入三次login name & password,IE 顯示一個空白的網頁.
3. 參考 step 1 的方式,發現我應該在 Registry 作一些修改.
4. 使用 regedit to open Registry.
5. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0
6. 新增 "Multi-String" registy key, 並輸入名稱為 "BackConnectionHostNames".
7. 開啟modify 輸入新建網站名稱.
8. 開啟IE後即可登入新設的網站.
9. http://support.microsoft.com/kb/896861 .
2014年7月17日 星期四
2014年7月14日 星期一
SharePoint 2013 安裝 Search Application Service
1. 我在安裝SharePoint 2013 的 Search Application Service 時若是使用安裝精靈的話,資料庫會有GUID在DB Name 後端.非常不方便.因此使用指令的方式會清爽多了.
2. Open SharePoint 2013 Management Shell and type in or paste these command.
3. Copy from Todd Klindt Blogger .http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=378
4. # Based on scripts at http://www.harbar.net/articles/sp2013mt.aspx
2. Open SharePoint 2013 Management Shell and type in or paste these command.
3. Copy from Todd Klindt Blogger .http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=378
4. # Based on scripts at http://www.harbar.net/articles/sp2013mt.aspx
# Thanks Spence! # Get App Pool $saAppPoolName = "Default SharePoint Service App Pool" # Search Specifics, we are single server farm $searchServerName = (Get-ChildItem env:computername).value $serviceAppName = "Search Service Application" $searchDBName = "SearchService_DB" # Grab the Appplication Pool for Service Application Endpoint $saAppPool = Get-SPServiceApplicationPool $saAppPoolName # Start Search Service Instances Write-Host "Starting Search Service Instances..." Start-SPEnterpriseSearchServiceInstance $searchServerName Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance $searchServerName # Create the Search Service Application and Proxy Write-Host "Creating Search Service Application and Proxy..." $searchServiceApp = New-SPEnterpriseSearchServiceApplication -Name $serviceAppName -ApplicationPool $saAppPoolName -DatabaseName $searchDBName $searchProxy = New-SPEnterpriseSearchServiceApplicationProxy -Name "$serviceAppName Proxy" -SearchApplication $searchServiceApp # Clone the default Topology (which is empty) and create a new one and then activate it Write-Host "Configuring Search Component Topology..." $clone = $searchServiceApp.ActiveTopology.Clone() $searchServiceInstance = Get-SPEnterpriseSearchServiceInstance New-SPEnterpriseSearchAdminComponent –SearchTopology $clone -SearchServiceInstance $searchServiceInstance New-SPEnterpriseSearchContentProcessingComponent –SearchTopology $clone -SearchServiceInstance $searchServiceInstance New-SPEnterpriseSearchAnalyticsProcessingComponent –SearchTopology $clone -SearchServiceInstance $searchServiceInstance New-SPEnterpriseSearchCrawlComponent –SearchTopology $clone -SearchServiceInstance $searchServiceInstance New-SPEnterpriseSearchIndexComponent –SearchTopology $clone -SearchServiceInstance $searchServiceInstance New-SPEnterpriseSearchQueryProcessingComponent –SearchTopology $clone -SearchServiceInstance $searchServiceInstance $clone.Activate()
5. after running, check SQL DB name.
2014年7月11日 星期五
SharePoint 2013 Installation
SharePoint 2013 提供了很多新的功能,因此想來試試看.之前MS提供了試用版本.因此下載後試著在Win server 2012 & SQL 2012 上安裝. 但是連 prerequisiteinstall 都沒成功.因此將系統改成 Win SVR 2008 R2 + SQL 2008R2. 安裝方式如下
1. PC 為 Surface Pro 3, 8G ram + 256G HD, i5 .
2. Hyper-V 80 G, ram 2G + Dynamics. Win SVR 2008 R2 .
3. Virtual Switch Manager 的 connection Type is "Internal network" .
4. Enable Surface Pro 3 WiFi properties's sharing function.
5. Hyper-V 開機後先設好 local administrator password.
6. update Win SVR 2008R2 SP 1.
7. add role ( Application, DNS, Web Server(IIS)) then restart.
8. Add role "Active Directory Domain Service" then restart.
9. run "DCPROMO" in cmd to enable the Domain.
A. 我使用 Contoso.com 當成AD Server 的網用名稱.
B. AD 完成後加入一些 user 的名字.
C. install SQL 2008 R2 and SP2. then restart.
D. 安裝 SharePoint 2013 Server prerequisteinstaller.exe .
E. 此程式會將SP2013需要的檔案先行安裝.
F. 在安裝的過程中會重開機數次.
G. 安裝完成後執行 SETUP.EXE .
H. 運氣不太好.沒有安裝成功.log 檔案在 "C:\Users\Administrator\AppData\Local\Temp"
I. Error code 是 1603(0x643). 上網查詢後發現 Maarten Onderwater 有篇文章在討論此錯誤訊息.http://www.dotnetquest.com/post/2013/02/16/SharePoint-2013-installation-error-oservermsi-error-code-1603(0x643)
J. 依照他的建議到 MS download 網站下載 msi SDK.網址是 http://www.microsoft.com/en-us/download/details.aspx?id=3138
K. 安裝ORCA 的方式如此網址 ㄡhttp://www.itninja.com/blog/view/downloading-installing-and-using-ms-orca
L. 依照 Maarten 的建議將ARPWRITE drop Row by Orca.
M. 完成重新執行安裝程式.Wow!! 成功了.
N. run MSTSC to open this servere by Costoso\administrator .
1. PC 為 Surface Pro 3, 8G ram + 256G HD, i5 .
2. Hyper-V 80 G, ram 2G + Dynamics. Win SVR 2008 R2 .
3. Virtual Switch Manager 的 connection Type is "Internal network" .
4. Enable Surface Pro 3 WiFi properties's sharing function.
5. Hyper-V 開機後先設好 local administrator password.
6. update Win SVR 2008R2 SP 1.
7. add role ( Application, DNS, Web Server(IIS)) then restart.
8. Add role "Active Directory Domain Service" then restart.
9. run "DCPROMO" in cmd to enable the Domain.
A. 我使用 Contoso.com 當成AD Server 的網用名稱.
B. AD 完成後加入一些 user 的名字.
C. install SQL 2008 R2 and SP2. then restart.
D. 安裝 SharePoint 2013 Server prerequisteinstaller.exe .
E. 此程式會將SP2013需要的檔案先行安裝.
F. 在安裝的過程中會重開機數次.
G. 安裝完成後執行 SETUP.EXE .
H. 運氣不太好.沒有安裝成功.log 檔案在 "C:\Users\Administrator\AppData\Local\Temp"
I. Error code 是 1603(0x643). 上網查詢後發現 Maarten Onderwater 有篇文章在討論此錯誤訊息.http://www.dotnetquest.com/post/2013/02/16/SharePoint-2013-installation-error-oservermsi-error-code-1603(0x643)
J. 依照他的建議到 MS download 網站下載 msi SDK.網址是 http://www.microsoft.com/en-us/download/details.aspx?id=3138
K. 安裝ORCA 的方式如此網址 ㄡhttp://www.itninja.com/blog/view/downloading-installing-and-using-ms-orca
L. 依照 Maarten 的建議將ARPWRITE drop Row by Orca.
M. 完成重新執行安裝程式.Wow!! 成功了.
N. run MSTSC to open this servere by Costoso\administrator .
訂閱:
意見 (Atom)

