Skip to main content

Posts

Showing posts with the label Melick

SharePoint 2016 Installation using AutoSPInstaller Online Part 1– Setting up the Environment and Service Accounts

AutoSPInstaller Online is one of a great project that facilitate Automated SharePoint installation including Sharepoint 2010, 2013 and 2016. Auto SP Installer provides a powerful way to deploy and configure a single-server development environment to multiple-server SharePoint farm. Reference: https://autospinstaller.com/ Before doing anything we will set up the environment for SharePoint three server Farm. Will name these servers as SPWFE - Share Point Front End Server SPAPP - Share Point App server SPDB - DB server Please find the reference for SharePoint minimum requirement and practices from https://docs.microsoft.com/en-us/SharePoint/install/install-sharepoint-server-2016-across-multiple-servers For the the medium segregation, we have to create below list of service accounts. Service Accounts for Active Directory Service Account name : spadmin Rights : Local Admin All Servers (DB,WFE,APP) SQL DB Rights: SQL DB Creator and Security Admin Rights Domain Privileges: Service ...

Complete guide to Install SharePoint in a Three Server Farm using AutpSPInstaller

This article will be divided to three sections Setting up the Environment and Service Accounts Getting Ready with AutoSPInstaller Online Configuring the XML using Online Editor and Installation Setting up the Environment and Service Accounts AutoSPInstaller Online is one of a great project that facilitate Automated SharePoint installation including Sharepoint 2010, 2013 and 2016. Auto SP Installer provides a powerful way to deploy and configure a single-server development environment to multiple-server SharePoint farm. Reference: https://autospinstaller.com/ Before doing anything we will set up the environment for SharePoint three server Farm. Will name these servers as SPWFE - Share Point Front End Server SPAPP - Share Point App server SPDB - DB server Please find the reference for SharePoint minimum requirement and practices from https://docs.microsoft.com/en-us/SharePoint/install/install-sharepoint-server-2016-across-multiple-servers For the the medium segregation, we have to create...

Step by Step for create and deploy a SharePoint 2016 Custom Layout With out using designer or Design Manager

This article is a to ensure how to create a simple SharePoint 2016 Page layout without using Share Point designer Design Manager Before doing anything you need to create the base of the layout. Following placeholders are minimal and commonly used in any template. PlaceHolderAdditionalPageHead PlaceHolderPageTitle PlaceHolderMain Place Holders PlaceHolderAdditionalPageHead This place holder is used to defined additional CSS and other scripts and inline CSS if you have any. We will be using this to register a CSS and register a different CSS for the SharePoint Edit Mode < asp:Content ContentPlaceHolderId = "PlaceHolderAdditionalPageHead" runat = "server" > <!—Your code goes here--> </ asp:Content > PlaceHolderPageTitle This place holder will be mainly for the page title. < asp:Content ContentPlaceHolderId = "PlaceHolderPageTitle" runat = "server" > <!—Your code goes here--> </ asp:Content > PlaceHolderMain Th...

SharePoint 2016 Installation using AutoSPInstaller Online Part 3– configuring the XML using Online Editor

This the final article of Auto SP Installer for SharePoint 2016. Please refer my previous articles if you are interested in SharePoint 2016 Installation using AutoSPInstaller Online Part 1– Setting up the Environment and Service Accounts http://melick-rajee.blogspot.com/2018/09/sharepoint-2016-installation-using.html SharePoint 2016 Installation using AutoSPInstaller Online Part 2– Getting Ready with AutoSPInstaller Online http://melick-rajee.blogspot.com/2018/10/sharepoint-2016-installation-using.html Purpose of this article to user Online Editor to SharePoint Installation configuration. after you have set up everything, as per my previous articles, You need to go to Online Configuration Editor https://autospinstaller.com/FarmConfiguration Then you need to choose Load from my XML and and choose the AutoSPInstallerInput file. Then the below page will be visible. we don't need to edit all the configurations for this scenario. First add the HOST name for the SharePoint Server. Since...