Statistics
| Branch: | Tag: | Revision:

root / man / ganeti-noded.sgml @ d04aaa2f

History | View | Annotate | Download (2.9 kB)

1 a8083063 Iustin Pop
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
2 a8083063 Iustin Pop
3 a8083063 Iustin Pop
  <!-- Please adjust the date whenever revising the manpage. -->
4 320d986d Iustin Pop
  <!ENTITY dhdate      "<date>February 11, 2009</date>">
5 a8083063 Iustin Pop
  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
6 a8083063 Iustin Pop
       allowed: see man(7), man(1). -->
7 a8083063 Iustin Pop
  <!ENTITY dhsection   "<manvolnum>8</manvolnum>">
8 a8083063 Iustin Pop
  <!ENTITY dhucpackage "<refentrytitle>ganeti-noded</refentrytitle>">
9 a8083063 Iustin Pop
  <!ENTITY dhpackage   "ganeti-noded">
10 a8083063 Iustin Pop
11 a8083063 Iustin Pop
  <!ENTITY debian      "<productname>Debian</productname>">
12 a8083063 Iustin Pop
  <!ENTITY gnu         "<acronym>GNU</acronym>">
13 a8083063 Iustin Pop
  <!ENTITY gpl         "&gnu; <acronym>GPL</acronym>">
14 a8083063 Iustin Pop
  <!ENTITY footer SYSTEM "footer.sgml">
15 a8083063 Iustin Pop
]>
16 a8083063 Iustin Pop
17 a8083063 Iustin Pop
<refentry>
18 a8083063 Iustin Pop
  <refentryinfo>
19 a8083063 Iustin Pop
    <copyright>
20 a8083063 Iustin Pop
      <year>2006</year>
21 a8083063 Iustin Pop
      <year>2007</year>
22 320d986d Iustin Pop
      <year>2008</year>
23 320d986d Iustin Pop
      <year>2009</year>
24 a8083063 Iustin Pop
      <holder>Google Inc.</holder>
25 a8083063 Iustin Pop
    </copyright>
26 a8083063 Iustin Pop
    &dhdate;
27 a8083063 Iustin Pop
  </refentryinfo>
28 a8083063 Iustin Pop
  <refmeta>
29 a8083063 Iustin Pop
    &dhucpackage;
30 a8083063 Iustin Pop
31 a8083063 Iustin Pop
    &dhsection;
32 320d986d Iustin Pop
    <refmiscinfo>ganeti 2.0</refmiscinfo>
33 a8083063 Iustin Pop
  </refmeta>
34 a8083063 Iustin Pop
  <refnamediv>
35 a8083063 Iustin Pop
    <refname>&dhpackage;</refname>
36 a8083063 Iustin Pop
37 320d986d Iustin Pop
    <refpurpose>ganeti node daemon</refpurpose>
38 a8083063 Iustin Pop
  </refnamediv>
39 a8083063 Iustin Pop
  <refsynopsisdiv>
40 a8083063 Iustin Pop
    <cmdsynopsis>
41 a8083063 Iustin Pop
      <command>&dhpackage; </command>
42 a8083063 Iustin Pop
      <arg>-f</arg>
43 320d986d Iustin Pop
      <arg>-d</arg>
44 a8083063 Iustin Pop
45 a8083063 Iustin Pop
    </cmdsynopsis>
46 a8083063 Iustin Pop
  </refsynopsisdiv>
47 a8083063 Iustin Pop
  <refsect1>
48 a8083063 Iustin Pop
    <title>DESCRIPTION</title>
49 a8083063 Iustin Pop
50 a8083063 Iustin Pop
    <para>
51 a8083063 Iustin Pop
      The <command>&dhpackage;</command> is the daemon which is
52 320d986d Iustin Pop
      responsible for the node functions in the ganeti system.
53 a8083063 Iustin Pop
    </para>
54 a8083063 Iustin Pop
55 a8083063 Iustin Pop
    <para>
56 a8083063 Iustin Pop
      For testing purposes, you can give the <option>-f</option>
57 a8083063 Iustin Pop
      option and the program won't detach from the running terminal.
58 a8083063 Iustin Pop
    </para>
59 320d986d Iustin Pop
60 320d986d Iustin Pop
    <para>
61 320d986d Iustin Pop
      Debug-level message can be activated by giving the
62 320d986d Iustin Pop
      <option>-d</option> option.
63 320d986d Iustin Pop
    </para>
64 a8083063 Iustin Pop
    <refsect2>
65 a8083063 Iustin Pop
      <title>ROLE</title>
66 a8083063 Iustin Pop
      <para>
67 a8083063 Iustin Pop
        The role of the node daemon is to do almost all the actions
68 a8083063 Iustin Pop
        that change the state of the node. Things like creating disks
69 a8083063 Iustin Pop
        for instances, activating disks, starting/stopping instance
70 a8083063 Iustin Pop
        and so on are done via the node daemon.
71 a8083063 Iustin Pop
      </para>
72 a8083063 Iustin Pop
73 a8083063 Iustin Pop
      <para>
74 320d986d Iustin Pop
        Also, in some cases the startup/shutdown of the master daemon
75 320d986d Iustin Pop
        are done via the node daemon, and the cluster IP address is
76 320d986d Iustin Pop
        also added/removed to the master node via it.
77 320d986d Iustin Pop
      </para>
78 320d986d Iustin Pop
79 320d986d Iustin Pop
      <para>
80 a8083063 Iustin Pop
        If the node daemon is stopped, the instances are not affected,
81 a8083063 Iustin Pop
        but the master won't be able to talk to that node.
82 a8083063 Iustin Pop
      </para>
83 a8083063 Iustin Pop
    </refsect2>
84 a8083063 Iustin Pop
85 a8083063 Iustin Pop
    <refsect2>
86 a8083063 Iustin Pop
      <title>COMMUNICATION PROTOCOL</title>
87 a8083063 Iustin Pop
      <para>
88 320d986d Iustin Pop
        Currently the master-node RPC is done using a simple json-RPC
89 320d986d Iustin Pop
        over HTTP(S).
90 a8083063 Iustin Pop
      </para>
91 a8083063 Iustin Pop
    </refsect2>
92 a8083063 Iustin Pop
93 a8083063 Iustin Pop
  </refsect1>
94 a8083063 Iustin Pop
95 a8083063 Iustin Pop
  &footer;
96 a8083063 Iustin Pop
97 a8083063 Iustin Pop
</refentry>
98 a8083063 Iustin Pop
99 a8083063 Iustin Pop
<!-- Keep this comment at the end of the file
100 a8083063 Iustin Pop
Local variables:
101 a8083063 Iustin Pop
mode: sgml
102 a8083063 Iustin Pop
sgml-omittag:t
103 a8083063 Iustin Pop
sgml-shorttag:t
104 a8083063 Iustin Pop
sgml-minimize-attributes:nil
105 a8083063 Iustin Pop
sgml-always-quote-attributes:t
106 a8083063 Iustin Pop
sgml-indent-step:2
107 a8083063 Iustin Pop
sgml-indent-data:t
108 a8083063 Iustin Pop
sgml-parent-document:nil
109 a8083063 Iustin Pop
sgml-default-dtd-file:nil
110 a8083063 Iustin Pop
sgml-exposed-tags:nil
111 a8083063 Iustin Pop
sgml-local-catalogs:nil
112 a8083063 Iustin Pop
sgml-local-ecat-files:nil
113 a8083063 Iustin Pop
End:
114 a8083063 Iustin Pop
-->