Recently, I setup SharePoint 2010 RTM in a test lab and wanted to only setup or enable the minimum services for the Web Server role. I scoured the inter-web for the information and came up empty handed… almost. Finally, after giving up and searching for something totally different, I came across a Microsoft Download site for Topologies for SharePoint Server 2010. This is a PDF/XPS/VSD depicting physical servers, service application recommendations and suggested farm topologies for small, medium, and large farms. I would have never guessed it would have the information I needed but there it was, on the bottom right. I wanted to re-post it here for others to find easily, so here it is:
Service
|
Associated with a service app?
|
Server recommendation
|
Access Database Services |
Yes |
Application Server |
Application Registry Service |
No |
Application Server |
Business Data Connectivity |
Yes |
Application Server |
Central Administration |
No |
Application Server |
Document Conversions Launcher Service |
No |
Application Server |
Document Conversions Load Balancer Service |
No |
Application Server |
Excel Calculation Services |
Yes |
Application Server |
Lotus Notes Connector |
Yes– Search |
Application Server – Start this service on the index server. |
Managed Metadata Web Service |
Yes |
Application Server |
Microsoft SharePoint Foundation Incoming E-Mail |
No |
Web Server or Application Server |
Microsoft Foundation Subscription Settings Service |
Yes – Deployed only using PowerShell |
Web Server or Application Server (pref) |
Microsoft SharePoint Foundation User Code Service |
No |
Web Server or Application Server |
Microsoft SharePoint Foundation Web Application |
No |
Web Server |
Microsoft SharePoint Foundation Workflow Timer Service |
No |
Web Server |
PerformancePoint Service |
Yes |
Application Server |
Search Query and Site Settings Service |
Yes– Search |
Application Server |
Secure Store Service |
Yes |
Application Server |
SharePoint Foundation Search |
No |
Any |
SharePoint Server Search |
Yes – Search |
Automatically Config’d |
User Profile Service |
Yes |
Application Server |
User Profile Synchronization Service |
Yes |
Application Server |
Visio Graphics Service |
Yes |
Application Server |
Web Analytics Data Processing Service |
Yes |
Application Server |
Web Analytics Web Service |
Yes |
Application Server |
Word Automation Services |
Yes |
Application Server |
Check out the download for more information and notes not included here.
The answer for me was that I needed
- Microsoft SharePoint Foundation Web Application
- Microsoft SharePoint Foundation Workflow Timer Service
To configure these services: From Central Administration, navigate to Manage services on server under the System Settings heading.
The following is a re-post from Bryon Wyly’s blog Codeless Solutions for Sharepoint originally posted 11/21/2009.
Right now I am in Birmingham Alabama getting ready to give a couple of presentaions at the SharePoint Saturday here. I have uploaded the outline to how to Jazz up your sharepoint pages with no more skill than copy and pasting.
Three items are already covered in my blog; Pie charts, SharePointCanvas.com, and Hiding/Displaying web parts. The other three are from other authors and I have provided links directly to their sites. Please let me know if you are author on any of these sites and the links or credit due is not to your liking.
* note: I updated the Progress bar text to the code I use on my site, since the linked text did not work during the presentation.
1. Making unwanted items disappear:
- Go to http://www.sharepointcanvas.com
- Uncheck the elements you don’t want. Click on the camera item to see where they are.
- Click Create CSS
- Copy/paste the code into a content editor web part in your page
- Hide the content editor web part in layouts
2. Showing a Progress Bar in your Task List:
- Create a new calculated column in your task list.
- In the formula copy and paste the following:
- =”<DIV style=’background-color:blue; width:”&([% Complete]*100)&”%;’> </DIV>”
- Copy and paste the code at
- http://www.sharepointcanvas.com/spc/docs/text2HTML.txt
- into a content editor web part
- Hide the content editor web part in layouts.
3. Highlighting text in a List:
if (x[i].innerHTML=="Not Started") //find the data to use to determine the color
{ x[i].parentNode.style.backgroundColor='white'; // set the color }
This part says if the table cell contains “Not Startedâ€, highlight the entire row white.
You can change the text and colors
Taking out parentNode ie x[i].style.backgroundColor=’white’; allows you to highlight only the row
x[i].style.color=’red’ – will change the font color to red
4. Showing a “Mini†Calendar:
5. Making a Dashboard Pie Chart:
WARNING: This uses google API’s that means the data on your page is sent to google to be processed. Don’t do this with confidential data!
6. Hide/Show Web Parts:
- Add all the web parts or views of web parts you would like to use. Give them all a common keyword in the title ie “department†or “task†(Capitalization Matters!)
- Go to: http://wyly.wordpress.com/2009/05/22/showhide-multiple-web-parts/
- Copy and paste the code into a content editor web part
- Set the keyword to the common title element from the first step
- Pick if you want the first web part to show up when the page is loaded and if you want a menu or a drop down box
- Hide the content editor web part
Bonus: Creating a Master Calendar or Library
First Created by Mike Smith at http://techtrainingnotes.blogspot.com/2009/03/sharepoint-one-library-multiple-sites.html
- Create a calendar (works on document libraries too)
- Add the calendar as a web part to the page
- Open up the page the calendar web part is on
- Find the string <ExportControlledProperties>false</ExportControlledProperties> – Change from false to true
- Export the web part somewhere you can find it – ie your desktop
- Find the GUID of you web site, use one of the methods on Mike’s site
http://techtrainingnotes.blogspot.com/2009/03/sharepoint-finding-sharepoint-guids.html
- Open up the DWP site with your favorite text editor find <WebId ….> guid_here </WebId> and replace guid_here with you guid ID
- Upload the web part to your site collection web part gallery (Top site – site action – modify all site settings – Under galleries)
- Now when you go to any site in your site collection and go to add a web part, the web part you uploaded will be available. It will show the data from your list no matter what site you are in!
It’s day 4 of SharePoint Conference 2009. My legs are sore, I’m sleep deprived but there’s still so much more to look at and so many more people to meet. It’s been a busy week so far but I’m taking a break to post some highlights.
Yesterday, Mike Ganotti and Mark Miller live streamed a special webcast with attendee comments and some Q&A. I was taking some pictures of the crew and some attendees, including a few Live Bloggers. Also, check out the stream to hear my comments on the new ribbon and UI enhancements in SharePoint 2010.
One of the attendees, Jay Simcox (who couldn’t attend, sorry)Â put together a nice list of links for more information on SharePoint 2010.
Finally, check out EndUserSharePoint.com Digital Swag series. The series has links to free software, posters, and other goodies that were highlighted during the conference.