- http://programming4.us/enterprise/3492.aspx , discussion of three supported topologies: Single Data Center High-Availability Model, Cross-Site High-Availability Model, and Multiple-Farm Cross-Site Model.
- http://technet.microsoft.com/en-us/library/cc263199.aspx , technical diagrams of recommended solutions.
- http://www.microsoft.com/en-us/download/details.aspx?id=6096 , common ways to build and scale farm topologies.
- http://www.techbubbles.com/sharepoint-2010/sharepoint-2010-farm-topologies/ , nice explanation of basic terminology.
- http://sharepointsolutions.com/sharepoint-help/blog/2011/02/how-to-scale-out-a-sharepoint-2010-farm-from-two-tier-to-three-tier-by-adding-a-dedicated-application-server/ , scale out from a 2-tier farm to a 3-tier farm.
- http://www.sharepointedutech.com/2011/01/02/topology-med-sp2010-farm/ , topology and licensing example of medium farm.
- http://www.astaticstate.com/2010/07/sharepoint-2010-physical-topology.html , examples of diagramming SharePoint topologies.
- http://technet.microsoft.com/en-us/library/ee805948.aspx , 3-tier farm.
- http://mscerts.programming4.us/sharepoint/Topologies%20for%20SharePoint%202010.aspx , discussion of basic types of deployment.
Wednesday, June 26, 2013
SharePoint 2010 farm topologies
Testing and Verifying SP2010 after software Installation and configuration
Even though you are ready to head out the door and head home since you are probably doing this on a night or weekend, it is really important to fight the urge to leave too soon. You really need to do some basic testing and verification before you leave. It will be a lot better to find out about any problems now rather than when the next business day has already started.
Here is what I recommend doing before you leave:
- Browse to each of your SharePoint web applications and log in with your user account and make sure you can hit the home page of each of them.
- While you are there, try to open up and edit a document in the browser using one of the Office 2010 Web Apps (Word, PowerPoint, Excel or OneNote).
- Browse to your My Site and verify that everything is working normally.
- Add a unique phrase to a test page somewhere in one of your Sites (I always use the phrase “jabborwocky” ) and then go run an incremental Search crawl from Central Administration. After the crawl completes, go back to your Site Collection and search for the phrase. Verify that it comes up in the results.
- Run an incremental User Profile Synchronization from the User Profile Administration page. While it is running, logon to the desktop of the new Application Server, and find this program and run it: c:\program files\microsoft office servers\14.0\synchronization service\uishell\miisclient.exe. This is the Forefront Identity Management (FIM) client application that you can use to see the details of the AD synchronization process. Several jobs will be run by FIM. Verify that they all complete successfully with no error messages.
- In Central Administration, go into Manage Service Applications and click on Managed Metadata Service and select Manage in the ribbon. Verify that the Term Store management interface loads and that you can add/change/delete a Term Set and some Terms.
- Finally, reboot your WFE and Application Server. When they come back up, check your Windows System and Application event logs on those servers and verify that there are no SharePoint-related critical or warning events that you haven’t seen before you scaled out to three tiers.
- Browse to your primary web application one more time before you head out the door.
Tuesday, June 25, 2013
Scale out Sharepoint 2010 Farm
How to Scale Out a SharePoint 2010 Farm From Two-Tier to Three-Tier By Adding A Dedicated Application Server
http://sharepointsolutions.com/sharepoint-help/blog/2011/02/how-to-scale-out-a-sharepoint-2010-farm-from-two-tier-to-three-tier-by-adding-a-dedicated-application-server/
http://www.khamis.net/blog/Lists/Posts/Post.aspx?List=6c8a23d1%2D47ea%2D47e5%2Db56f%2D2bc57cb95b93&ID=48&Web=d64cd8b3%2Da3f4%2D40d8%2D8d93%2D6aa6dc82fcda
Thursday, June 13, 2013
Bootstrap CSS framework - faster and easier web development
Sleek, Intuitive and powerful front-end framework for faster and easier web development
http://twitter.github.io/bootstrap/base-css.html#typography
http://twitter.github.io/bootstrap/base-css.html#typography
Tuesday, June 4, 2013
Apply Theme for Publishing site
public
override
void
FeatureActivated(SPFeatureReceiverProperties properties)
{
ApplyTheme(properties);
}
/// <summary>
/// Sets master page and css properties for the site collection
/// </summary>
/// <param name="properties"></param>
private
void
ApplyTheme(SPFeatureReceiverProperties properties)
{
SPSite site = (SPSite)properties.Feature.Parent;
if
(site !=
null
)
{
// System Master Page
Uri masterUri =
new
Uri(site.RootWeb.Url +
"/_catalogs/masterpage/v4.master"
);
site.RootWeb.MasterUrl = masterUri.AbsolutePath;
// Publishing Master Page
Uri customMasterUri =
new
Uri(site.RootWeb.Url +
"/_catalogs/masterpage/mycustom.master"
);
site.RootWeb.CustomMasterUrl = customMasterUri.AbsolutePath;
//logo and css
site.RootWeb.SiteLogoUrl =
"/_layouts/MyProjectName/Images/mycustomlogo.jpg"
;
site.RootWeb.AlternateCssUrl =
"/Style Library/MyProjectName/css/mycustomcss.css"
;
site.RootWeb.Update();
}
}
Monday, June 3, 2013
Subscribe to:
Posts (Atom)