|
|
Central admin site home page error
One of my SharePoint (small) farm, CA site home page throws error "an
unexpected error has occured". Appending ?contents=1 shows only 3 built-in
webparts. There is no error message in eventlog, ULS etc., All other pages in
CA site is working fine except homepage. What could be wrong?
Thanks for any input.
Regards
J Justin
|
|
0
|
|
|
|
Reply
|
Utf
|
2/3/2010 12:39:02 PM |
|
------=_NextPart_0001_87CE2F73
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Please try the below:
1. In a text editor such as Notepad, open the application-level Web.config
file.
2. In the Web.config file, locate the <system.web> section.
3. Replace the <machinekey> entry in all the web.config files to:
<machineKey validationKey="AutoGenerate,IsolateApps"
decryptionKey="AutoGenerate,IsolateApps" validation="3DES"
decryption="3DES"/>
Original Machine key would be
<machineKey
validationKey="68BEFC8A9AE23DD8DB76B952479CFCEF48B03FE750C41DD3"
decryptionKey="BA8B66E510FD830029D9BDFC3BBD537EAB16BB0AFA9E97C1"
validation="SHA1"
/>
Refer http://support.microsoft.com/kb/911722
------=_NextPart_0001_87CE2F73
Content-Type: text/x-rtf
Content-Transfer-Encoding: 7bit
{\rtf1\ansi\ansicpg1252\deff0\deflang16393{\fonttbl{\f0\fnil\fprq2\fcharset0 MS Sans Serif;}}
\viewkind4\uc1\pard\f0\fs20
\par Please try the below:
\par
\par 1. In a text editor such as Notepad, open the application-level Web.config file.
\par
\par 2. In the Web.config file, locate the <system.web> section.
\par
\par 3. Replace the <machinekey> entry in all the web.config files to:
\par
\par <machineKey validationKey="AutoGenerate,IsolateApps"
\par decryptionKey="AutoGenerate,IsolateApps" validation="3DES" decryption="3DES"/>
\par
\par Original Machine key would be
\par
\par <machineKey validationKey="68BEFC8A9AE23DD8DB76B952479CFCEF48B03FE750C41DD3"
\par decryptionKey="BA8B66E510FD830029D9BDFC3BBD537EAB16BB0AFA9E97C1" validation="SHA1"
\par />
\par
\par Refer http://support.microsoft.com/kb/911722
\par }
------=_NextPart_0001_87CE2F73--
|
|
0
|
|
|
|
Reply
|
ramrk
|
2/4/2010 1:28:26 AM
|
|
------=_NextPart_0001_8888A035
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Hello Justin,
1. Use following method to see if FIPS is enabled on SharePoint Server:
a) Open the Local Security Policy ( Start | All Programs | Administrative
Tools | Local Secuity Policy )
b) Expand Local Policies
c) Click Security Options
d) Right Click and choose Properties on System cryptography: Use FIPS
compliant algorithms for encryption, hashing, and signing
e) Set the radio button to Enabled
f) Press OK
g) Reset IIS ( Start | Run | type iisreset | press OK )
h) Attempt to access the site again
2. There could be several other issues if you are not using FIPS in the
environment. Try following in order to see the actual error message and the
callstack due to whcih the page is not rendering. "Unexpected error" is
just a friendly message which is displayed to end users because of security
reasons when any critical error occurs.
Locate the web.config file for the web application in question
Search for a tag customErrors and set its value to "Off".
<customErrors mode="Off" />
�
Search for a tag CallStack and set its value to "true".
<SafeMode MaxControls="50" CallStack="false" />
3. If you want to see the error message immediately in ULS logs then do
following:
Run following command on the Web Front Sever being serving the site:
net stop sptrace
net start sptrace
Try to browse the Central Admin site few time
This will actually force SharePoint logging service to start writiing to a
new log file located in C:\Program Files\Common Files\Microsoft Shared\web
server extensions\12\LOGS
Sort on modified date a take a look at the latest log file to find the
error.
Try to find errors related to Central Admin site in the logs.
4. You can easily provision Central Administration on another Sever using
following command:
Psconfig -cmd adminvs -provision -port <port> -windowsauthprovider
onlyusentlm
Since Central Admin is just a team site, it can be hosted on other servefr
if it is not working from one specific server. However at times there might
be something wrong on the welcome page itself which resides in database in
that case you might want to dig deeper through the callstack you get after
performing step1.
Sunil [MSFT]
------=_NextPart_0001_8888A035
Content-Type: text/x-rtf
Content-Transfer-Encoding: 7bit
{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fprq2\fcharset0 MS Sans Serif;}}
{\colortbl ;\red0\green0\blue255;}
\viewkind4\uc1\pard\f0\fs20 Hello Justin,
\par
\par 1. Use following method to see if FIPS is enabled on SharePoint Server:
\par \tab a) Open the Local Security Policy ( Start | All Programs | Administrative Tools | Local Secuity Policy )
\par \tab b) Expand Local Policies
\par \tab c) Click Security Options
\par \tab d) Right Click and choose Properties on System cryptography: Use FIPS compliant algorithms for encryption, hashing, and signing
\par \tab e) Set the radio button to Enabled
\par \tab f) Press OK
\par \tab g) Reset IIS ( Start | Run | type iisreset | press OK )
\par \tab h) Attempt to access the site again
\par
\par
\par 2. There could be several other issues if you are not using FIPS in the environment. Try following in order to see the actual error message and the callstack due to whcih the page is not rendering. "Unexpected error" is just a friendly message which is displayed to end users because of security reasons when any critical error occurs.
\par
\par Locate the web.config file for the web application in question
\par
\par \tab Search for a tag customErrors and set its value to "Off".
\par \tab\tab\tab <customErrors mode="\cf1\b Off\cf0\b0 " />
\par \tab\~
\par \tab Search for a tag CallStack and set its value to "true".
\par \tab\tab <SafeMode MaxControls="50" CallStack="\cf1\b false\cf0\b0 " />
\par
\par 3. If you want to see the error message immediately in ULS logs then do following:
\par
\par Run following command on the Web Front Sever being serving the site:
\par
\par net stop sptrace
\par net start sptrace
\par
\par Try to browse the Central Admin site few time
\par
\par This will actually force SharePoint logging service to start writiing to a new log file located in C:\\Program Files\\Common Files\\Microsoft Shared\\web server extensions\\12\\LOGS
\par
\par Sort on modified date a take a look at the latest log file to find the error.
\par
\par Try to find errors related to Central Admin site in the logs.
\par
\par 4. You can easily provision Central Administration on another Sever using following command:
\par
\par Psconfig -cmd adminvs -provision -port <port> -windowsauthprovider onlyusentlm
\par
\par Since Central Admin is just a team site, it can be hosted on other servefr if it is not working from one specific server. However at times there might be something wrong on the welcome page itself which resides in database in that case you might want to dig deeper through the callstack you get after performing step1.
\par
\par Sunil [MSFT]
\par
\par
\par }
------=_NextPart_0001_8888A035--
|
|
0
|
|
|
|
Reply
|
sunily
|
2/4/2010 4:52:01 AM
|
|
|
2 Replies
675 Views
(page loaded in 0.04 seconds)
Similiar Articles: Central admin site home page error - microsoft.public.sharepoint ...-----=_NextPart_0001_87CE2F73 Content-Type: text/plain Content-Transfer-Encoding: 7bit Please try the below: 1. In a text editor such as Notepad, open the application ... How to resolve Unknown Error on Central Administration page in WS ...We have installed WSS for a client and have depolyed the sites ok. The end user functionality is working fine, but when we access Central Administr... Shared services admin page missing - microsoft.public.project ...WSS then gives me an error saying that the site GUID###... ... So, from the Central Admin site, I removed ... is missing! ... 2) On the home page of "Shared Services Administration ... Central Admin wont load after installing patch to fix SP2 ...Both appear to be sucessful but produces the same error ... the WSS 3.0 SP2 on a Windows Server 2008, the central adminstration site was ... Is the Central Admin site ... SharePoint default page not loading - microsoft.public.sharepoint ...... WSS se= tup > attempts to open the central admin page for me to configure but it fails = with > the error saying ... A few users getting access denied on PWA home page ... SSP admin page is missing - microsoft.public.sharepoint.setup_and ...... gives me an error saying that the page cannot be found. In the Manage this Farm's Share Services page of the Central Admin site ... look at the Central Administration site ... Create or Extend Web Application - HTTP 403 - microsoft.public ...Open Central Administration Site ->Application Management -> Create or Extend Web Application ... free encyclopedia In the HTTP used on the World Wide Web, 403 ... error in ... Access Denied only to Project Web Access - microsoft.public ...... Admin website works, > > > > the main Central Admin website works. ... role, I get a SQL > > > > server account error ... A few users getting access denied on PWA home page ... Sharepoint Content Deployment Timeout - microsoft.public ...Severity: Error Description: The connection to ... \par If you have applied SSL certificate to central administration site ... Best Practices - Stefan Goßner - Site Home ... You ... PWA 2007 access denied to all but admin - microsoft.public.project ...... Everything looks good, no event log errors ... Central Administration ... PWA Access site access denied inside ... ... users getting access denied on PWA home page ... Central admin site home page error SharePointOne of my SharePoint (small) farm, CA site home page throws error an unexpected error has occured. Appending contents=1 shows only 3 built-in webparts. Th Central admin site home page error - microsoft.public.sharepoint ...-----=_NextPart_0001_87CE2F73 Content-Type: text/plain Content-Transfer-Encoding: 7bit Please try the below: 1. In a text editor such as Notepad, open the application ... Error message when you connect to the SharePoint Central ...Describes how you receive an error message and you cannot view the SharePoint Central Administration page. ... Microsoft Home Page Answer : central admin for WSS 3.0 - Unknown Errorcentral admin for WSS 3.0 - Unknown Error - answer - Central Admin was working before and we are able to ... Home MOSS Central Admin error pageHome SharePoint Server 2010 SharePoint ... MOSS Central Admin error page ... all of the virtual directories of the Admin site ... 7/20/2012 12:02:34 AM
|
|
|
|
|
|
|
|
|