Difference between server and client

后端 未结 3 1730
自闭症患者
自闭症患者 2021-01-22 15:30

What is the difference between server and client? What difference does it make for some software installations?

For example, I\'ve checked on how to download and install

相关标签:
3条回答
  • 2021-01-22 15:52

    In simplest form, a server is a connection point for several clients, that will handle their requests.

    A client is software that (usually) connects to the server to perform actions. The client provide a user interface that allows users to carry out actions. It forwards these requests to the server, which carries out the action and returns a response.

    In CVS, the server is where the central data repository is held, and client is what you use to access the said repository.

    0 讨论(0)
  • 2021-01-22 16:05

    Server is machine that fullfill the request sent by clients.

    Client is a machine that sends request to server

    0 讨论(0)
  • 2021-01-22 16:15

    A server is a program, or machine, that waits for incoming requests.

    A client is a program, or machine, that sends requests to servers.

    Wikipedia: Server (computing), Client (computing)

    For cvs; Are you setting up your own project, in which case you will need to set up the cvs server as well as a client to connect to said server. Or are you connecting to an existing project, in which case you need the client.

    0 讨论(0)
提交回复
热议问题