15

In a installation of WebSphere Application Server with Network Deployment, a node is:

  1. a physical machine
  2. an instance of operative system
  3. a logical set of WAS instances that is independent of physical machine or OS instance
Amro
  • 123,847
  • 25
  • 243
  • 454
ggasp
  • 1,490
  • 3
  • 15
  • 24

4 Answers4

5

Basically,

A server is a runtime environment, a process of execution.
A node is a grouping of servers that share common configuration. It is a physical machine.
A cell is a grouping of nodes into a sigle administrative domain. For websphere, it mean that if you group several servers within a cell, then you can administer them with one Websphere admin console

Hope this helps!

Autobyte
  • 1,231
  • 4
  • 19
  • 28
  • 6
    Almost correct: a single physical machine can have multiple WebSphere nodes. The actual distinction is "A node is a logical grouping of managed servers". Each node corresponds to exactly one profile. Each server corresponds to one running websphere instance. A cell has exactly zero (for a standalone server) or one Deployment Manager node. – paulsm4 Apr 13 '13 at 02:15
3

@ggasp Here is what I got off IBM's Information Center

A node is a logical grouping of managed servers.

A node usually corresponds to a logical or physical computer system with a distinct IP host address. Nodes cannot span multiple computers.

http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=/com.ibm.websphere.nd.multiplatform.doc/info/ae/ae/cagt_node.html

Sam Merrell
  • 2,352
  • 2
  • 16
  • 14
2

Keep in mind that usually <> always.

Since WAS 6.0 and up you usually want to setup more than one node in each physical computer, given the usual power of the server you use the node to separate logical business entities.

Like for example have 6 nodes, 3 in each of 2 machines and have 1 pair of nodes you could define 3 different clusters one for each stage (dev, qa, staging) and making each cluster be invisible to the other.

feniix
  • 1,558
  • 2
  • 21
  • 35
0

A Cell is a virtual unit that is built of a Deployment Manager and one or more Nodes. A Node is another virtual unit that is built of a Node Agent and one or more Server instances.

Here you can find more details including a diagram.

honk
  • 9,137
  • 11
  • 75
  • 83
san242
  • 127
  • 1
  • 1
  • 4