Monday, November 4, 2013

SharePoint 2013 - 1st step

როგორც აღმოჩნდა, ადმინისტრირების ნაწილში, ისევ პრობლემებია..

არსად არაა ზუსტი დირექტივა იმისა რომ Powershell, ბროუზერი სერვერზე უნდა გაიხსნას ადმინისტრატორით Run as Administrator ფუნქცით, სხვა შემთხვევაში სისტემული ექაუნთის მიუხედავად არ გვაძლევს ფარმის "ადმინისტრირების" უფლებას

Distributed Cache Service does not support this operation from Central Administration. Please use Sharepoint Powershell commandlets. - ექქაუნთის ცვლილებისთვის კვლავ ცუმპა ცუმპა უნდა..

$farm = Get-SPFarm
$cacheService = $farm.Services | where {$_.Name -eq "AppFabricCachingService"}
$accnt = Get-SPManagedAccount -Identity დომენი\სერვისის_მომხმარებელი
$cacheService.ProcessIdentity.CurrentIdentityType = "SpecificUser"
$cacheService.ProcessIdentity.ManagedAccount = $accnt
$cacheService.ProcessIdentity.Update()

$cacheService.ProcessIdentity.Deploy()

...და...
სხვა შეცდომები:

2. MissingWebPart
ამის გასასწორებლად:


[MissingWebPart] WebPart class [28c23aec-2537-68b3-43b6-845b13cea19f] is referenced [5] times in the database [SharePoint_AdminContent_396b143d-21be-4f28-a836-086448661e8f], but is not installed on the current farm. Please install any feature/solution which contains this web part. One or more web parts are referenced in the database [SharePoint_AdminContent_396b143d-21be-4f28-a836-086448661e8f], but are not installed on the current farm. Please install any feature or solution which contains these web parts.

ბაზაში უშვებთ პროცედურას:
use [SharePoint_AdminContent_396b143d-21be-4f28-a836-086448661e8f]
select DirName, LeafName
    from dbo.AllDocs
    where id in
        (select tp_PageUrlID
            from dbo.AllWebParts
            where lower(tp_WebPartTypeId) = '28c23aec-2537-68b3-43b6-845b13cea19f')

და გადავდივართ ამ ლინკებზე შესაბამისად:
http://[centraladmin:port]/SearchAdministration.aspx
http://[centraladmin:port]/SearchFarmDashBoard.aspx
მიუხედავად ერორებისა, ეს გევრდები არაა კონფიგურირებული ჯერ, მაგრამ გვერდის მისამართის ვიზიტის შემდეგ შეცდომა ქრება პანელიდან.

No comments:

Post a Comment