Pages

Friday 26 September 2014

Network Load Balancing Using Windows Server 2012 For SharePoint 2013


Consider the Example That i have 2 Front-End server and One DNS record for Load Balance


Server Name
Role
IP
SP2013-FE01
Front end 1
192.168.137.15
SP2013-FE02
Front end 2
192.168.137.16
SPS2013
Load Balancer Name
192.168.137.30


SP2013-FE01 Sever

Step 1: Open Server Manager



Step 2: Click Manage on Right Top and Select “Add Role and Features”




Step 3: Leave every thing Default and Click Next


Step 4: "Select Installation Type"Leave Default and Press Next



Step 5:Selecting Destination server “Leave Default and Press Next



Step 6: “Selecting Role “Leave Default and Press Next



Step 7: “Selecting Feature “Select Network Load Balancing After checking the Check box it will prompt for Extra Features.




Step 8: Select Extra Feature Required for Network Load Balancing and Press Add Features and will return to main features screen, Press Install



Installation Process will start, Wait for Completion of installation



SP2013-FE02 Server

Open The Second Front server and Repeat the Step 1 to step 8.



Configuration of Network Load balance.

Open the Server First Server SP2013-FE01

Step 1: Open Server Manager and Click Tools and Select Network Load Balancing manager.



Step 2:   From Menu select Cluster and Sub Menu New.


Step 3: Enter the first Host Name, in current scenario I am using SP2013-FE01 and Press Connect
After connecting successfully it will add in interfaces And Press Next





Step 4: New Cluster -- > Host parameters  make sure for first node Priority  is select  1 from Drop down and Default state is to be selected as started .

Step 5: Define Cluster IP -> Press Add Button to Add cluster IP.


Step 6: Enter IP for Cluster in My Case I am using 192.168.137.30 and Subnet is 255.255.255.0 and Press OK

Step 7: Select the Cluster from Drop Down, (automatically selected if not selected then select manually) Enter the Full Internet name and From Cluster Operation Mode Select Multicast and press Next

Step 8: Port Rules it will select from 0 to 65535 if you want to edit it, otherwise leave as default and Press Finish.
Now you can see you Cluster , One node is already added, 

Add Second Node to the NLB Cluster

Right Click on Cluster  -"Add Host to the Cluster"


Enter Host IP and Press Connect after Press Connect it will added into interfaces.



Setting the host parameters, For This Node select priority 2 and state as "started"





Press Next and it will prompt for Ports setting , If you want to change can edit other wise leave it default.

Verify the nodes.



Wednesday 24 September 2014

Your backup is from a different version of Microsoft SharePoint Foundation and cannot be restored to a server running the current version

Source Server:
Running on SharePoint 2010 with SP1 (Installed SP1 manually)
Version Information:



Target Server:
Running on SharePoint 2010 With SP1 (Newly configure using SharePoint 2010 With SP1 Media)
Version information:




But I was trying to restore using Power Shell I am getting the Error for version is not same.
Your backup is from a different version of Microsoft SharePoint Foundation and cannot be restored to a server running the current version. The backup file should be restored to a server with version 14.0.0....   Or later

Versions are same, that’s why I was not sure what the difference is,

I just verify the Installed Update I found at Source and Target server are different in the terms of SharePoint Updates.


  1. Download required Updates
  2. Installed on Target server
  3. Restart is required.
  4. Run the configuration Wizard
 you can Find Required Update and hot fix information at 
After that doing the above steps I am able to restore my site collection backup.

Tuesday 23 September 2014

Restore SQL DataBase Backup On same or Different Server Using SQL Command



Most of the time i am struggling to restore to the back from interface, Different types of errors every time i need to face,  Using SQL command its more easy just have to make sure about the file names are correct and  current user have permissions to access.

You must have a Valid SQL Backup file with .bak extension, You can use this Sql command to restore the back on the same server or different Server.

Open SQL Server
Click at New Query
use the below query , just the required Parameters according to you files and locations.



Restore filelistonly from disk = 'FULL-PATH\FileName'
Go

restore database DatabaseName
from disk = 'FULL-PATH\FileName'
with
move 'Logical Name for Data File to 'FULL-PATH\FileName.mdb'

move 'Logical name for Log Fileto 'FULL-PATH\FileName.ldf'



Example
Restore filelistonly from disk = 'C:\Backups\WSS_Content_2010_Portal-Full-Database-Backup'
go
restore database WSS_Content_2013_portalTest
from disk = 'C:\Backups\ WSS_Content_2010_Portal-Full-Database-Backup'
with
move 'WSS_Content_2013_portalTest' to 'C:\Backups\WSS_Content_2013_Portal.mdf',

move 'WSS_Content_2013_portalTest_log' to 'C:\Backups\WSS_Content_2013_Portal_log.ldf'