Difference between revisions of "Server (computing)"

From Pulsed Media Wiki
(Created page with "== Server (computing) == In computing, a '''server''' is a computer program or a device that provides a Resour...")
 
(Guides: Information: PulsedMedia: Pulsed Media)
 
Line 1: Line 1:
 
== Server (computing) ==
 
== Server (computing) ==
  
In [[Computer science|computing]], a '''[[Server (computing)|server]]''' is a computer program or a [[Device driver|device]] that provides a [[Resource (computer science)|resource]], [[Data transfer|data]], [[Service (systems architecture)|service]], or program to other computers, called [[Client (computing)|clients]], over a [[Networking|network]]. Essentially, a [[Server (computing)|server]] is designed to "serve" the needs of [[Client (computing)|clients]] by responding to their requests.
+
In computing, a '''[[Server (computing)|server]]''' is a computer program or a [[Device driver|device]] that provides a resource, data, service, or program to other computers, called clients, over a network. Essentially, a server is designed to "serve" the needs of clients by responding to their requests.
  
The concept is part of the '''[[Client–server model]]''', where [[Client (computing)|clients]] initiate communication by requesting a [[Service (systems architecture)|service]] or [[Resource (computer science)|resource]], and the [[Server (computing)|server]] waits for requests and provides the requested [[Resource (computer science)|resource]] or [[Service (systems architecture)|service]].
+
The concept is part of the '''[[Client–server model]]''', where clients initiate communication by requesting a service or resource, and the [[Server (computing)|server]] waits for requests and provides the requested resource or service.
  
It's important to understand that the term "[[Server (computing)|server]]" can refer to both the [[Software|software]] program that provides a service and the [[Hardware (computing)|physical computer]] that runs that [[Software|software]].
+
It's important to understand that the term "server" can refer to both the software program that provides a service and the physical computer that runs that software.
  
 
=== Server Software vs. Server Hardware ===
 
=== Server Software vs. Server Hardware ===
Line 18: Line 18:
 
Servers are often categorized by the type of [[Service (systems architecture)|service]] they provide:
 
Servers are often categorized by the type of [[Service (systems architecture)|service]] they provide:
  
* '''[[Web server|Web Server]]:''' Stores and delivers web pages to [[Client (computing)|clients]] (web browsers) using the [[HTTP]] protocol. (e.g., Apache HTTP Server, Nginx).
+
* '''Web Server:''' Stores and delivers web pages to clients (web browsers) using the [[HTTP]] protocol. (e.g., Apache HTTP Server, Nginx).
* '''[[File server|File Server]]:''' Stores and manages files, allowing [[Client (computing)|clients]] to access, store, and manage data centrally (e.g., Samba, NFS).
+
* '''File Server:''' Stores and manages files, allowing clients to access, store, and manage data centrally (e.g., Samba, NFS).
* '''[[Database server|Database Server]]:''' Runs a [[Database|database]] system and provides other programs or computers with query and [[Data transfer|data]] services (e.g., MySQL, PostgreSQL, Microsoft SQL Server).
+
* '''Database Server:''' Runs a [[Database|database]] system and provides other programs or computers with query and [[Data transfer|data]] services (e.g., MySQL, PostgreSQL, Microsoft SQL Server).
* '''[[Mail server|Mail Server]]:''' Handles the sending, receiving, and storage of email (e.g., Postfix, Exim, Microsoft Exchange Server).
+
* '''Mail Server:''' Handles the sending, receiving, and storage of email (e.g., Postfix, Exim, Microsoft Exchange Server).
* '''[[Application server|Application Server]]:''' Hosts and runs [[Application software|applications]] or parts of [[Application software|applications]], providing the business logic and processes that [[Client (computing)|clients]] can access (e.g., Apache Tomcat, Oracle WebLogic Server).
+
* '''Application Server:''' Hosts and runs [[Application software|applications]] or parts of [[Application software|applications]], providing the business logic and processes that [[Client (computing)|clients]] can access (e.g., Apache Tomcat, Oracle WebLogic Server).
* '''[[DNS server|DNS Server]]:''' Translates human-readable domain names (like google.com) into [[IP address|IP addresses]] that computers use to locate each other on the network.
+
* '''DNS Server:''' Translates human-readable domain names (like google.com) into IP addresses that computers use to locate each other on the network.
* '''[[Proxy server|Proxy Server]]:''' Acts as an intermediary for requests from [[Client (computing)|clients]] seeking [[Resource (computer science)|resources]] from other servers. Can be used for security, caching, or filtering.
+
* '''Proxy Server:''' Acts as an intermediary for requests from [[Client (computing)|clients]] seeking resources from other servers. Can be used for security, caching, or filtering.
  
 
There are many other types of servers for various specific services, such as game servers, print servers, and streaming media servers.
 
There are many other types of servers for various specific services, such as game servers, print servers, and streaming media servers.
Line 32: Line 32:
 
[[Hardware (computing)|Server hardware]] is often more robust and powerful than typical desktop computers because it needs to handle many requests simultaneously and run without interruption. Common characteristics include:
 
[[Hardware (computing)|Server hardware]] is often more robust and powerful than typical desktop computers because it needs to handle many requests simultaneously and run without interruption. Common characteristics include:
  
* More powerful and numerous [[CPU|CPUs]].
+
* More powerful and numerous [[CPUs]].
 
* Larger amounts of [[RAM]].
 
* Larger amounts of [[RAM]].
 
* High-speed and large-capacity [[Data storage|storage]] (often using [[SSD|SSDs]] and [[RAID]] configurations for performance and redundancy).
 
* High-speed and large-capacity [[Data storage|storage]] (often using [[SSD|SSDs]] and [[RAID]] configurations for performance and redundancy).
Line 47: Line 47:
 
* Powering the [[Internet]] (web servers, mail servers, DNS servers).
 
* Powering the [[Internet]] (web servers, mail servers, DNS servers).
 
* Enterprise networks (file servers, database servers, application servers).
 
* Enterprise networks (file servers, database servers, application servers).
* Cloud computing ([[Cloud hosting|cloud platforms]] are built on vast numbers of servers).
+
* Cloud computing ([[cloud platforms]] are built on vast numbers of servers).
 
* Online services and applications.
 
* Online services and applications.
  
Line 53: Line 53:
  
 
=== See Also ===
 
=== See Also ===
* [[Client–server model]]
 
* [[Client (computing)]]
 
 
* [[Networking]]
 
* [[Networking]]
 
* [[Data center]]
 
* [[Data center]]
* [[Web server]]
 
* [[File server]]
 
* [[Database server]]
 
* [[Mail server]]
 
* [[Application server]]
 
* [[DNS server]]
 
* [[Proxy server]]
 
* [[Hardware (computing)]]
 
* [[Software]]
 
* [[Operating system]]
 
  
=== References ===
+
[[Category:Guides]]
* {{cite web |url=https://www.techtarget.com/searchstorage/definition/server |title=Server Definition |publisher=TechTarget |access-date=2025-04-25}} - Technical definition.
 
* {{cite web |url=https://www.ibm.com/topics/servers |title=What are Servers? |publisher=IBM |access-date=2025-04-25}} - Explanation from a major server vendor.
 
* {{cite web |url=https://developer.mozilla.org/en-US/docs/Learn/Basics_of_web/Client-server_overview |title=Client-server overview |publisher=Mozilla Developer Network (MDN) |access-date=2025-04-25}} - Explains the client-server model in the context of the web.
 
 
 
[[Category:Server (computing)]]
 
[[Category:Client–server model]]
 
[[Category:Networking]]
 
[[Category:Computer hardware]]
 
[[Category:Software]]
 
[[Category:System administration]]
 

Latest revision as of 08:17, 27 May 2025

Server (computing)

In computing, a server is a computer program or a device that provides a resource, data, service, or program to other computers, called clients, over a network. Essentially, a server is designed to "serve" the needs of clients by responding to their requests.

The concept is part of the Client–server model, where clients initiate communication by requesting a service or resource, and the server waits for requests and provides the requested resource or service.

It's important to understand that the term "server" can refer to both the software program that provides a service and the physical computer that runs that software.

Server Software vs. Server Hardware

  • Server Software: This is the program that performs the "serving" function. For example, a web server program (like Apache or Nginx) listens for requests for web pages and sends them to the client's web browser. A database server program manages databases and responds to queries from database clients.
  • Server Hardware: This is the physical computer machine that runs the server software. Server hardware is often specifically designed for the role, built to be reliable, powerful, and capable of running continuously for long periods.

Typically, server hardware runs an operating system (like Windows Server or a Linux distribution optimized for servers) that allows the server software to operate and manage the computer's hardware.

Types of Servers (by Function)

Servers are often categorized by the type of service they provide:

  • Web Server: Stores and delivers web pages to clients (web browsers) using the HTTP protocol. (e.g., Apache HTTP Server, Nginx).
  • File Server: Stores and manages files, allowing clients to access, store, and manage data centrally (e.g., Samba, NFS).
  • Database Server: Runs a database system and provides other programs or computers with query and data services (e.g., MySQL, PostgreSQL, Microsoft SQL Server).
  • Mail Server: Handles the sending, receiving, and storage of email (e.g., Postfix, Exim, Microsoft Exchange Server).
  • Application Server: Hosts and runs applications or parts of applications, providing the business logic and processes that clients can access (e.g., Apache Tomcat, Oracle WebLogic Server).
  • DNS Server: Translates human-readable domain names (like google.com) into IP addresses that computers use to locate each other on the network.
  • Proxy Server: Acts as an intermediary for requests from clients seeking resources from other servers. Can be used for security, caching, or filtering.

There are many other types of servers for various specific services, such as game servers, print servers, and streaming media servers.

Server Hardware Characteristics

Server hardware is often more robust and powerful than typical desktop computers because it needs to handle many requests simultaneously and run without interruption. Common characteristics include:

  • More powerful and numerous CPUs.
  • Larger amounts of RAM.
  • High-speed and large-capacity storage (often using SSDs and RAID configurations for performance and redundancy).
  • Redundant components like power supplies and network interfaces to prevent downtime if one fails.
  • Designed for continuous operation ("24/7").
  • Features like hot-swappable drives that can be replaced without turning the server off.

Servers are typically housed in data centers or server rooms with controlled environments (cooling, power, security).

Usage

Servers are fundamental to modern computing and networking. They are used in:

  • Powering the Internet (web servers, mail servers, DNS servers).
  • Enterprise networks (file servers, database servers, application servers).
  • Cloud computing (cloud platforms are built on vast numbers of servers).
  • Online services and applications.

Any time you access a website, send an email, use an online application, or store files in a shared network location, you are interacting with one or more servers.

See Also