~therve/landscape-client/sysinfo-network-disks

« back to all changes in this revision

Viewing changes to README

  • Committer: Christopher Armstrong
  • Date: 2009-03-06 18:15:15 UTC
  • mfrom: (72.1.23 non-root)
  • Revision ID: radix@twistedmatrix.com-20090306181515-ckjxmu2d4nsomk0o
Merge non-root [r=bigkevmcd,niemeyer] [qa=andreas] [f=82159]

It's now possible to run the Landscape client in a non-root mode. This
mode disables the Manager and only runs the Broker, Watchdog, and Monitor.
The README file explains how to set up this mode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
La la la
 
1
== Non-root mode ==
 
2
 
 
3
The Landscape Client generally runs as a combination of the 'root' and
 
4
'landscape' users.  It is possible to disable the administrative features of
 
5
Landscape and run only the monitoring parts of it without using the 'root'
 
6
user at all.
 
7
 
 
8
If you wish to use the Landscape Client in this way, it's recommended that you
 
9
perform these steps immediately after installing the landscape-client package.
 
10
 
 
11
Edit /etc/default/landscape-client and add the following lines:
 
12
 
 
13
  RUN=1
 
14
  DAEMON_USER=landscape
 
15
 
 
16
Edit /etc/landscape/client.conf and add the following line:
 
17
 
 
18
  monitor_only = true
 
19
 
 
20
Now you can run 'sudo landscape-config' as usual to complete the configuration
 
21
of your client and register with the Landscape service.
 
22
 
 
23
 
 
24
== Developing ==
 
25
 
2
26
To run the full test suite, you must have a dbus session bus
3
27
running. If you don't have one (for example, if you're running the
4
28
tests in an ssh session), run the following command:
19
43
system bus.
20
44
 
21
45
$ sudo ./scripts/landscape-client -c root-client.conf
 
46