mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
976e185a4a
SVN Revision: 201
131 lines
3.6 KiB
Erlang
131 lines
3.6 KiB
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : ejabberd_ctl.erl
|
|
%%% Author : Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Purpose : Ejabberd admin tool
|
|
%%% Created : 11 Jan 2004 by Alexey Shchepin <alex@alex.sevcom.net>
|
|
%%% Id : $Id$
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-module(ejabberd_ctl).
|
|
-author('alexey@sevcom.net').
|
|
|
|
-export([start/0]).
|
|
|
|
start() ->
|
|
case init:get_plain_arguments() of
|
|
[SNode | Args] ->
|
|
Node = list_to_atom(SNode),
|
|
process(Node, Args);
|
|
_ ->
|
|
print_usage()
|
|
end,
|
|
halt().
|
|
|
|
|
|
process(Node, ["stop"]) ->
|
|
case rpc:call(Node, init, stop, []) of
|
|
{badrpc, Reason} ->
|
|
io:format("Can't stop node ~p: ~p~n",
|
|
[Node, Reason]);
|
|
_ ->
|
|
ok
|
|
end;
|
|
|
|
process(Node, ["restart"]) ->
|
|
case rpc:call(Node, init, restart, []) of
|
|
{badrpc, Reason} ->
|
|
io:format("Can't restart node ~p: ~p~n",
|
|
[Node, Reason]);
|
|
_ ->
|
|
ok
|
|
end;
|
|
|
|
process(Node, ["reopen-log"]) ->
|
|
{error_logger, Node} ! {emulator, noproc, reopen};
|
|
|
|
process(Node, ["register", User, Password]) ->
|
|
case rpc:call(Node, ejabberd_auth, try_register, [User, Password]) of
|
|
{atomic, ok} ->
|
|
ok;
|
|
{atomic, exists} ->
|
|
io:format("User ~p already registered on node ~p~n",
|
|
[User, Node]);
|
|
{error, Reason} ->
|
|
io:format("Can't register user ~p on node ~p: ~p~n",
|
|
[User, Node, Reason]);
|
|
{badrpc, Reason} ->
|
|
io:format("Can't register user ~p on node ~p: ~p~n",
|
|
[User, Node, Reason])
|
|
end;
|
|
|
|
process(Node, ["unregister", User]) ->
|
|
case rpc:call(Node, ejabberd_auth, remove_user, [User]) of
|
|
{atomic, ok} ->
|
|
ok;
|
|
{error, Reason} ->
|
|
io:format("Can't unregister user ~p on node ~p: ~p~n",
|
|
[User, Node, Reason]);
|
|
{badrpc, Reason} ->
|
|
io:format("Can't unregister user ~p on node ~p: ~p~n",
|
|
[User, Node, Reason])
|
|
end;
|
|
|
|
process(Node, ["backup", Path]) ->
|
|
case rpc:call(Node, mnesia, backup, [Path]) of
|
|
{atomic, ok} ->
|
|
ok;
|
|
{error, Reason} ->
|
|
io:format("Can't store backup in ~p on node ~p: ~p~n",
|
|
[Path, Node, Reason]);
|
|
{badrpc, Reason} ->
|
|
io:format("Can't store backup in ~p on node ~p: ~p~n",
|
|
[Path, Node, Reason])
|
|
end;
|
|
|
|
process(Node, ["restore", Path]) ->
|
|
case rpc:call(Node,
|
|
mnesia, restore, [Path, [{default_op, keep_tables}]]) of
|
|
{atomic, ok} ->
|
|
ok;
|
|
{error, Reason} ->
|
|
io:format("Can't restore backup from ~p on node ~p: ~p~n",
|
|
[Path, Node, Reason]);
|
|
{badrpc, Reason} ->
|
|
io:format("Can't restore backup from ~p on node ~p: ~p~n",
|
|
[Path, Node, Reason])
|
|
end;
|
|
|
|
process(Node, ["install-fallback", Path]) ->
|
|
case rpc:call(Node, mnesia, install_fallback, [Path]) of
|
|
{atomic, ok} ->
|
|
ok;
|
|
{error, Reason} ->
|
|
io:format("Can't install fallback from ~p on node ~p: ~p~n",
|
|
[Path, Node, Reason]);
|
|
{badrpc, Reason} ->
|
|
io:format("Can't install fallback from ~p on node ~p: ~p~n",
|
|
[Path, Node, Reason])
|
|
end;
|
|
|
|
process(_Node, _Args) ->
|
|
print_usage().
|
|
|
|
|
|
|
|
print_usage() ->
|
|
io:format("Usage: ejabberdctl node command~n"
|
|
"~n"
|
|
"Available commands:~n"
|
|
" stop\t\t\t\tstop ejabberd~n"
|
|
" restart\t\t\trestart ejabberd~n"
|
|
" reopen-log\t\t\treopen log file~n"
|
|
" register user password\tregister a user~n"
|
|
" unregister user\t\tunregister a user~n"
|
|
" backup file\t\t\tstore a backup in file~n"
|
|
" restore file\t\t\trestore a backup from file~n"
|
|
" install-fallback file\t\tinstall a fallback from file~n"
|
|
"~n"
|
|
"Example:~n"
|
|
" ejabberdctl ejabberd@host restart~n"
|
|
).
|