Path to the directory with binary system libraries.
</DD><DT CLASS="dt-description"><B><TT>EJABBERD_DOC_PATH</TT></B></DT><DD CLASS="dd-description">
Path to the directory with ejabberd documentation.
+</DD><DT CLASS="dt-description"><B><TT>EJABBERD_PID_PATH</TT></B></DT><DD CLASS="dd-description">
+ Path to the PID file that ejabberd can create when started.
</DD><DT CLASS="dt-description"><B><TT>HOME</TT></B></DT><DD CLASS="dd-description">
Path to the directory that is considered <TT>ejabberd</TT>’s home.
This path is used to read the file <TT>.erlang.cookie</TT>.
Path to the directory with binary system libraries.
\titem{EJABBERD\_DOC\_PATH}
Path to the directory with ejabberd documentation.
+ \titem{EJABBERD\_PID\_PATH}
+ Path to the PID file that ejabberd can create when started.
\titem{HOME}
Path to the directory that is considered \ejabberd{}'s home.
This path is used to read the file \term{.erlang.cookie}.
-author('alexey@process-one.net').
-export([start/0, stop/0,
+ get_pid_file/0,
get_so_path/0, get_bin_path/0]).
start() ->
Path ->
Path
end.
+
+%% @spec () -> false | string()
+get_pid_file() ->
+ case os:getenv("EJABBERD_PID_PATH") of
+ false ->
+ false;
+ "" ->
+ false;
+ Path ->
+ Path
+ end.
start(normal, _Args) ->
ejabberd_loglevel:set(4),
+ write_pid_file(),
application:start(sasl),
randoms:start(),
db_init(),
%% All the processes were killed when this function is called
stop(_State) ->
?INFO_MSG("ejabberd ~s is stopped in the node ~p", [?VERSION, node()]),
+ delete_pid_file(),
ejabberd_debug:stop(),
ok.
IPTs = win32_dns:get_nameservers(),
?INFO_MSG("Adding machine's DNS IPs to Erlang system:~n~p", [IPTs]),
lists:foreach(fun(IPT) -> inet_db:add_ns(IPT) end, IPTs).
+
+
+%%%
+%%% PID file
+%%%
+
+write_pid_file() ->
+ case ejabberd:get_pid_file() of
+ false ->
+ ok;
+ PidFilename ->
+ write_pid_file(os:getpid(), PidFilename)
+ end.
+
+write_pid_file(Pid, PidFilename) ->
+ case file:open(PidFilename, [write]) of
+ {ok, Fd} ->
+ io:format(Fd, "~s~n", [Pid]),
+ file:close(Fd);
+ {error, Reason} ->
+ ?ERROR_MSG("Cannot write PID file ~s~nReason: ~p", [PidFilename, Reason]),
+ throw({cannot_write_pid_file, PidFilename, Reason})
+ end.
+
+delete_pid_file() ->
+ case ejabberd:get_pid_file() of
+ false ->
+ ok;
+ PidFilename ->
+ file:delete(PidFilename)
+ end.
#
#ERLANG_NODE=ejabberd
+#.
+#' EJABBERD_PID_PATH: ejabberd PID file
+#
+# Indicate the full path to the ejabberd Process identifier (PID) file.
+# If this variable is defined, ejabberd writes the PID file when starts,
+# and deletes it when stops.
+# Remember to create the directory and grant write permission to ejabberd.
+#
+# Default: don't write PID file
+#
+#EJABBERD_PID_PATH=/var/run/ejabberd/ejabberd.pid
+
#.
#'
# vim: foldmarker=#',#. foldmethod=marker:
export EJABBERD_SO_PATH
export EJABBERD_BIN_PATH
export EJABBERD_DOC_PATH
+export EJABBERD_PID_PATH
export ERL_CRASH_DUMP
export ERL_INETRC
export ERL_MAX_PORTS