Talk:Server (computing)
From Wikipedia, the free encyclopedia
Contents |
[edit] Changes
I've taken the liberty of overhauling this article to some extent, with several objectives in mind:
- More generic orientation (not everyone viewing the article will be a computer specialist)
- Less time-sensitive information (today's leading application might not be tomorrow's)
- Less mention of brand names
- Reorganized information and divided into sections
- Removed X server stuff, which belongs in its own article; mentioning it here may be confusing to non-specialist readers
- Removed mention of things like .NET architecture and other highly specific and proprietary stuff
- Treated "server" as a reference to complete systems throughout, to avoid confusing non-specialists (usage notes in previous version were a bit bewildering to anyone not already familiar with the topic)
- Removed some discussion of specific protocols, again to avoid being too technical
- Removed section reference to mainframes; mainframes are alive and well, and servers did not replace them
- Removed slight bias towards certain technologies; a lot of people know only PCs or only Intel, etc., and a bit more balance seemed appropriate
Agateller 18:36, 11 February 2006 (UTC)
[edit] Server line of descent
For a discussion of server computing (HW & OS)'s descent from mini vs microcomputers, see Talk:Minicomputer. --Wernher 02:25, 5 Jul 2004 (UTC)
[edit] Readability
The article may be more readable if it is clearly broken up into sections for hardware, OS, application, and X. Right now, people who aren't experienced techies would probably have trouble understanding it. I could probably handle most of this myself, but I am not familiar enough with X Windows to move or change any of it. May make changes later anyway if no one else does though. Endless
[edit] Sample code
I removed the following sample code because it seemed a bit extraneous for the article. cprompt
Example of Very Simple Java Server
This Java program basically waits for a connection on port 21; when it gets a connection from an FTP or from a telnet client the server does its thing.
import java.io.*; import java.net.*;
public class YorickServer { private static PrintWriter out;
public static void main(String[] args) { try { ServerSocket serverSocket = new ServerSocket(21);
Socket incomingClient = serverSocket.accept(); BufferedReader in = new BufferedReader(new InputStreamReader(incomingClient.getInputStream())); out = new PrintWriter(incomingClient.getOutputStream(), true);
out.println("Welcome to the Hello Translation!"); out.println("QUIT to exit the translator");
while (processCommand(in.readLine())); incomingClient.close();
} catch (Exception e) { e.printStackTrace(); } }
private static boolean processCommand(String command) { if (command.equals("QUIT")) { out.println("Bye!"); return false; } else if (command.equals("ENG")) { out.println("Hello"); } else if (command.equals("FRE")) { out.println("Bonjour"); } else if (command.equals("SPA")) { out.println("Hola"); } else { out.println("Error. Language not supported."); }
return true; } }
Server log is both an orphan and deadend page. Christopherlin 02:48, 17 May 2004 (UTC)
[edit] X-Internet
Does anyone know what the X-Internet link refers to? No other page has a similar link [1] and a google search only pulls up wikipedia or sites that mirror wikipedia content. AlistairMcMillan 21:07, 30 Sep 2004 (UTC)
[edit] Readibility x 2
The Wikipedia:lead section needs improving quite a bit. Any suggestions? - Ta bu shi da yu 03:51, 30 Nov 2004 (UTC)
[edit] Multi-threding
Is multi-threading in the OS really needed for servers?
[edit] Definition of Server
There are many software and other things that "... carries out some task ...". The thing that makes it to a server is that a server waits until one or more client sends a query to him. The server is the active and the client is the passive part of this form of communication. There are other forms of communications between software, ex peer-to-peer. The short Example of Very Simple Java Server above is a good example of a server.
- Okay, say what you just said in understandable, grammatical, correct English language, and I won't revert it again. --Schapel 05:09, 6 Jun 2005 (UTC)
[edit] Server hardware
The "Server hardware" section currently says that "The X-Internet, Web Services, and Microsoft's .NET initiative all work to make even the smallest system a server." This sentence doesn't really make sense to me, though. It's not as if any of these initiatives do anything to make it easier for small systems to be servers. In fact, it could be argued that they make it harder, since they already require an IP stack, which is enough for a device to act as a server, and then add to that complexity.
Could someone please explain to me what this sentence really means and why it makes sense? Otherwise, I will delete it. --Dolda2000 20:44, 7 October 2005 (UTC)
[edit] Only UNIX?
It should be noted that, while most servers that provide services like web servers, ftp servers, etc. run UNIX based systems, almost all efficient user and access administration servers for windows environments run Windows server OS themselves. Some of the sections seem to imply that unix systems are the "best" server operating systems.
- I don't know that "almost all" is true. I administer a couple of Debian Linux servers that do nothing but provide services (file, printing, database, mail, proxy, fax, etc.) to local Windows networks; they seem to me to be simpler, more efficient, much more flexible, and far more economical, than the Windows servers they replaced. Rwxrwxrwx 11:08, 20 September 2006 (UTC)
- I don't know how much "couple of Debian servers" is, but there are major installations of purely Windows Server enviroments. I personally know of 100+ servers installation administered by as much as 2-4 people. According to last Microsoft financial report they sell a lot of server OSes, so there should really be a lot of Windows Server installations in the world. Current version of article seems biased in "real admins run *nix, MS go home" way to me. Alexander Abramov 02:23, 15 October 2006 (UTC)