Skip to main content

Types of server, all types of server file server, print server, application server, database server, message server information.

                                                                                                                   Types of Servers

Hi today’s blog is on types of Servers. You can take knowledge of types of servers blog in marathi मराठी. Linkhttps://myblogs0727.blogspot.com/2020/05/blog-post_11.html?m=1

Servers are those who connects us to the internet or links us to a good internet (net) service that we uses the connection of the service.

       Server is the thing that serves the service to us i.e. end users, in other words it plays roll like servant which serves us


1)   File Server.

2)   Print Server.

3)   Application server.

4)   Message Server.

5)   Database Server.

Now see the explanation below…

 

v File Server = file server has some important features

This server provides services that can do retrieving, storing and moving the data.

A user can read, exchange and manage the files with the help of file servers

A file can be stored in three different ways namely offline, online (cloud) . ppt video below


 

v  Print Server = print server is the printing on  network, controlling and managing .means this server controls and manages printing on network

Users can access fax and online print documents and can print services simultaneously

It also offers the services like fax.

 

v Application server = this servers provides services like ‘efficiency’ ‘security’ gives.

This server can share big data like any Application sharing this can be done with the help of application server

v Message Server = this server provides massage services

In this data can be in the form of Audio, video, text, binary or graphics. And also used to co-ordinate interaction between user’s document and applications, the simple file server can’t handle all these so massage server is used

It handles all the complex communication methods.

 

v Database Server = it is also type of Application server

It allows the users to get access the centralized strong database.


Comments

  1. this blog available in marathi

    ReplyDelete
    Replies
    1. https://myblogs0727.blogspot.com/2020/05/blog-post_11.html?m=1

      Delete

Post a Comment

Popular posts from this blog

Classification of Networks Based on Geographical Classification

               ***Classification of Networks Based on Geographical Classification***                   In this section ,we will discuss the following categories of networks.                                                                                                                 PAN ...

Simple java prime or not program

public class PrimeExample{     public static void main(String args[]){       int i,m=0,flag=0;         int n=3;//it is the number to be checked       m=n/2;         if(n==0||n==1){      System.out.println(n+" is not prime number");         }else{      for(i=2;i<=m;i++){           if(n%i==0){            System.out.println(n+" is not prime number");            flag=1;            break;           }          }          if(flag==0)  { System.out.println(n+" is prime number"); }     }//end of else   }     }