Module cartridge.remote-control
Tarantool remote control server.
Allows to control an instance over TCP by net.box
call
and eval
.
The server is designed as a partial replacement for the iproto protocol.
It's most useful when box.cfg
wasn't configured yet.
Other net.box
features aren't supported and will never be.
Local Functions
start (host, port, credentials) | Start remote control server. |
stop () | Stop the server. |
Local Functions
- start (host, port, credentials)
-
Start remote control server.
To connect the server use regular
net.box
connection.Access is restricted to the user with specified credentials, which can be passed as
net_box.connect('username:password@host:port')
.Parameters:
Returns:
-
boolean
true
- stop ()
-
Stop the server.
It doesn't interrupt any existing connections.