aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2010-02-25 00:04:48 +0100
committerBadlop <badlop@process-one.net>2010-02-25 00:04:48 +0100
commit41c455fabb0284b316b288ae7b7dca199cdd914d (patch)
treed9d71d2f330315493eceeabc5ece24103f3e408b /doc
parentFix German translation (thanks to Florian Zumbiehl)(EJAB-1195) (diff)
Add quotes in documentation of some erl arguments (thanks to Vincent Courcelle)(EJAB-1191)
Diffstat (limited to 'doc')
-rw-r--r--doc/guide.html6
-rw-r--r--doc/guide.tex6
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/guide.html b/doc/guide.html
index dfe7e2545..36857784f 100644
--- a/doc/guide.html
+++ b/doc/guide.html
@@ -3476,7 +3476,7 @@ all the environment variables and command line parameters.</P><P>The environment
</DD><DT CLASS="dt-description"><B><TT>-name ejabberd</TT></B></DT><DD CLASS="dd-description">
The Erlang node will be fully identified.
This is only useful if you plan to setup an <TT>ejabberd</TT> cluster with nodes in different networks.
-</DD><DT CLASS="dt-description"><B><TT>-kernel inetrc "/etc/ejabberd/inetrc"</TT></B></DT><DD CLASS="dd-description">
+</DD><DT CLASS="dt-description"><B><TT>-kernel inetrc &#X2019;"/etc/ejabberd/inetrc"&#X2019;</TT></B></DT><DD CLASS="dd-description">
Indicates which IP name resolution to use.
If using <TT>-sname</TT>, specify either this option or <TT>ERL_INETRC</TT>.
</DD><DT CLASS="dt-description"><B><TT>-kernel inet_dist_listen_min 4200 inet_dist_listen_min 4210</TT></B></DT><DD CLASS="dd-description">
@@ -3491,7 +3491,7 @@ Starts the Erlang system detached from the system console.
Specify the directory where Erlang binary files (*.beam) are located.
</DD><DT CLASS="dt-description"><B><TT>-s ejabberd</TT></B></DT><DD CLASS="dd-description">
Tell Erlang runtime system to start the <TT>ejabberd</TT> application.
-</DD><DT CLASS="dt-description"><B><TT>-mnesia dir "/var/lib/ejabberd/"</TT></B></DT><DD CLASS="dd-description">
+</DD><DT CLASS="dt-description"><B><TT>-mnesia dir &#X2019;"/var/lib/ejabberd/"&#X2019;</TT></B></DT><DD CLASS="dd-description">
Specify the Mnesia database directory.
</DD><DT CLASS="dt-description"><B><TT>-sasl sasl_error_logger {file, "/var/log/ejabberd/erlang.log"}</TT></B></DT><DD CLASS="dd-description">
Path to the Erlang/OTP system log file.
@@ -3867,7 +3867,7 @@ Copy <CODE>~ejabberd/.erlang.cookie</CODE> file from <TT>first</TT> to
<TT>second</TT>.<P>(alt) You can also add &#X2018;<CODE>-setcookie content_of_.erlang.cookie</CODE>&#X2019;
option to all &#X2018;<TT>erl</TT>&#X2019; commands below.</P></LI><LI CLASS="li-enumerate">On <TT>second</TT> run the following command as the <TT>ejabberd</TT> daemon user,
in the working directory of <TT>ejabberd</TT>:<PRE CLASS="verbatim">erl -sname ejabberd \
- -mnesia dir "/var/lib/ejabberd/" \
+ -mnesia dir '"/var/lib/ejabberd/"' \
-mnesia extra_db_nodes "['ejabberd@first']" \
-s mnesia
</PRE><P>This will start Mnesia serving the same database as <TT>ejabberd@first</TT>.
diff --git a/doc/guide.tex b/doc/guide.tex
index c3657c9ae..a6c289ed0 100644
--- a/doc/guide.tex
+++ b/doc/guide.tex
@@ -4421,7 +4421,7 @@ The command line parameters:
\titem{-name ejabberd}
The Erlang node will be fully identified.
This is only useful if you plan to setup an \ejabberd{} cluster with nodes in different networks.
- \titem{-kernel inetrc "/etc/ejabberd/inetrc"}
+ \titem{-kernel inetrc '"/etc/ejabberd/inetrc"'}
Indicates which IP name resolution to use.
If using \term{-sname}, specify either this option or \term{ERL\_INETRC}.
\titem{-kernel inet\_dist\_listen\_min 4200 inet\_dist\_listen\_min 4210}
@@ -4436,7 +4436,7 @@ The command line parameters:
Specify the directory where Erlang binary files (*.beam) are located.
\titem{-s ejabberd}
Tell Erlang runtime system to start the \ejabberd{} application.
- \titem{-mnesia dir "/var/lib/ejabberd/"}
+ \titem{-mnesia dir '"/var/lib/ejabberd/"'}
Specify the Mnesia database directory.
\titem{-sasl sasl\_error\_logger \{file, "/var/log/ejabberd/erlang.log"\}}
Path to the Erlang/OTP system log file.
@@ -4971,7 +4971,7 @@ following steps:
\begin{verbatim}
erl -sname ejabberd \
- -mnesia dir "/var/lib/ejabberd/" \
+ -mnesia dir '"/var/lib/ejabberd/"' \
-mnesia extra_db_nodes "['ejabberd@first']" \
-s mnesia
\end{verbatim}