~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/server.txt

  • Committer: John Arbash Meinel
  • Date: 2009-10-12 21:44:27 UTC
  • mto: This revision was merged to the branch mainline in revision 4737.
  • Revision ID: john@arbash-meinel.com-20091012214427-zddi1kmc2jlf7v31
Py_ssize_t and its associated function typedefs are not available w/ python 2.4

So we define them in python-compat.h
Even further, gcc issued a warning for:
static int
_workaround_pyrex_096()
So we changed it to:
_workaround_pyrex_096(void)

Also, some python api funcs were incorrectly defined as 'char *' when they meant
'const char *'. Work around that with a (char *) cast, to avoid compiler warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Running a smart server
 
2
======================
 
3
 
 
4
Bazaar does not require a specialised server because it operates over HTTP, FTP
 
5
or SFTP.  There is an optional smart server that can be invoked over SSH, from
 
6
inetd, or in a dedicated mode.
 
7
 
 
8
Dumb servers
 
9
------------
 
10
 
 
11
We describe HTTP, FTP, SFTP and HTTP-WebDAV as "dumb" servers because they do
 
12
not offer any assistance to Bazaar.  If you make a Bazaar repository available
 
13
over any of these protocols, Bazaar will allow you to read it remotely.  Just
 
14
enter the URL to the branch in the Bazaar command you are running.::
 
15
 
 
16
    bzr log http://bazaar-vcs.org/bzr/bzr.dev
 
17
 
 
18
Bazaar supports writing over FTP, SFTP and (via a plugin) over HTTP-WebDAV.
 
19
 
 
20
High-performance smart server
 
21
-----------------------------
 
22
 
 
23
The high-performance smart server (hpss) performs certain operations much faster
 
24
than dumb servers are capable of.  In future releases, the range of operations
 
25
that are improved by using the smart server will increase as we continue to
 
26
tune performance.
 
27
 
 
28
To maintain the highest security possible, the current
 
29
smart server provides read-only access by default.  To
 
30
enable read-write access, run it with ``--allow-writes``. When using
 
31
the SSH access method, bzr automatically runs with the
 
32
``--allow-writes`` option.
 
33
 
 
34
The alternative ways of configuring a smart server are explained below.
 
35
 
 
36
SSH
 
37
~~~
 
38
 
 
39
Using Bazaar over SSH requires no special configuration on the server; so long
 
40
as Bazaar is installed on the server you can use ``bzr+ssh`` URLs, e.g.::
 
41
 
 
42
    bzr log bzr+ssh://host/path/to/branch
 
43
 
 
44
If `bzr` is not installed system-wide on the server you may need to explicitly
 
45
tell the local `bzr` where to find the remote `bzr`::
 
46
 
 
47
    BZR_REMOTE_PATH=~/bin/bzr bzr log bzr+ssh://host/path/to/branch
 
48
 
 
49
The ``BZR_REMOTE_PATH`` environment variable adjusts how `bzr` will be
 
50
invoked on the remote system.  By default, just `bzr` will be invoked,
 
51
which requires the `bzr` executable to be on the default search path.  You can
 
52
also set this permanently per-location in ``locations.conf``.
 
53
 
 
54
Like SFTP, paths starting with ``~`` are relative to your home directory, e.g.
 
55
``bzr+ssh://example.com/~/code/proj``.  Additionally, paths starting with
 
56
``~user`` will be relative to that user's home directory.
 
57
 
 
58
inetd
 
59
~~~~~
 
60
 
 
61
This example shows how to run `bzr` with a dedicated user `bzruser`
 
62
for a shared repository in ``/srv/bzr/repo`` which has a branch at
 
63
``/srv/bzr/repo/branchname``.
 
64
 
 
65
Running a Bazaar server from inetd requires an inetd.conf entry::
 
66
 
 
67
    4155  stream  tcp  nowait  bzruser  /usr/bin/bzr /usr/bin/bzr serve --inet --directory=/srv/bzr/repo
 
68
 
 
69
When running client commands, the URL you supply is a `bzr://` URL relative to
 
70
the ``--directory`` option given in inetd.conf::
 
71
 
 
72
    bzr log bzr://host/branchname
 
73
 
 
74
If possible, paths starting with ``~`` and ``~user`` will be expanded as for
 
75
``bzr+ssh``.  Home directories outside the ``--directory`` specified to ``bzr
 
76
serve`` will not be accessible.
 
77
 
 
78
Dedicated
 
79
~~~~~~~~~
 
80
 
 
81
This mode has the same path and URL behaviour as the inetd mode.  To
 
82
run as a specific user, you should use ``su`` or login as that user.
 
83
 
 
84
This example runs bzr on its official port number of `4155` and listens on all
 
85
interfaces. This allows connections from anywhere in the world that can reach
 
86
your machine on port `4155`.
 
87
 
 
88
server::
 
89
 
 
90
    bzr serve --directory=/srv/bzr/repo
 
91
 
 
92
client::
 
93
 
 
94
    bzr log bzr://host/branchname
 
95
 
 
96
This example runs ``bzr serve`` on `localhost` port `1234`.
 
97
 
 
98
server::
 
99
 
 
100
    bzr serve --port=localhost:1234 --directory=/srv/bzr/repo
 
101
    
 
102
client::
 
103
 
 
104
    bzr log bzr://localhost:1234/branchname
 
105