Block Website Access from Public IP

Creating an access block rule The third rule that we will create is used to block all requests made to a Web site if those requests do not have the host header set. This type of rule is useful when you want to prevent hacking attempts that are made by issuing HTTP requests against the […]

How to enable error in IIS Server?

How to enable error in IIS Server for debugging the issue in code? 1) Enable IIS detailed errors IIS introduces a new custom errors feature, which by default hides the error responses issued by the server to remote clients, replacing them with a basic error message.  This is critical for security of your site, as […]

How to wright a Store Procedure in MS SQL Server

How to wright a Store Procedure in MS SQL Server   Basic Stored Procedure in SQL Server CREATE PROCEDURE GetUserById @UserId INT AS BEGIN SET NOCOUNT ON; SELECT * FROM Users WHERE Id = @UserId; END;   To run it: EXEC GetUserById @UserId = 1; Stored Procedure With Multiple Parameters CREATE PROCEDURE InsertUser @Name NVARCHAR(100), […]

SQL SERVER LOG SHIPPING 2017

SQL SERVER LOG SHIPPING 2017 To install and configuration of Log shipping of SQL Server Database we need to follow below steps. There are some prerequisites for Log shipping. Same version of SQL Server database should be installed on both servers. Static IP should be configured on both servers. Shared folder should be configured on […]

What is cipher suite ?

What is cipher suite? A cipher suite is a set of cryptographic algorithms used to secure network connections through protocols like TLS (Transport Layer Security) and SSL (Secure Sockets Layer). Cipher suites define how encryption, authentication, and integrity checks are performed between a client and a server. Components of a Cipher Suite A typical cipher […]

What is the OSI Model?

What is the OSI Model? The OSI (Open Systems Interconnection) model is a conceptual framework that standardizes how computer networks communicate. It divides network communication into seven layers, each with a specific function, ensuring smooth data transmission across different systems and technologies. OSI Model – 7 Layers Layer Name Function Protocols/Examples 7 Application End-user interaction, […]

What is a Computer?

What is a Computer? A computer is an electronic device that processes data, performs calculations, and executes instructions to complete tasks. It can store, retrieve, and process information based on programmed commands. Computers are used in various fields like education, business, healthcare, and entertainment. How Does a Computer Work? A computer operates using a combination […]

Windows RADIUS Server 2019 Configuration

Windows RADIUS Server 2019 Configuration: Install and set up Windows Server 2019. Install Active Directory Domain Services (ADDS) to configure the new domain. Install Certificate Authorities (CA) with Active Directory Certificate Services (ADCS). Install NPS ( Network Policy Server). Configure Certificate Authorities (CA), i.e., Active Directory Certificate Services (ADCS) for Certificates. Configure NPS ( Network Policy Server) for the authentication protocol. Configure […]

How to Install File Server in Windows Server 2019

Install a New File Server as a Content Server  To install File Services and the BranchCache for network files role service In Server Manager, click Manage, and then click Add Roles and Features. The Add Roles and Features Wizard opens. In Before you begin, click Next. In Select installation type, ensure that Role-based or feature-based installation is selected, and then click Next. […]

SQL SERVER HIGH AVAILABILITY CONFIGURATION – PART3

Change the SQL Server Service Account Open the SQL Server configuration manager. We need to change the service account for SQL server services. Right click on SQL server service, select properties, go to log on tab, click on Browse button, click on location select Entire Directory and click on ok, now type the name Administrator […]