CloudPrivateServer {DockerParallel} | R Documentation |
Define the data object for a cloud private server
Description
Define the data object for a cloud private server. The data object
can be passed to makeDockerCluster
and let the cluster
use the private server instead of the server from the cloud provider.
Usage
CloudPrivateServer(
publicIp = character(0),
publicPort = integer(0),
privateIp = character(0),
privatePort = integer(0),
password = "",
serverWorkerSameLAN = FALSE,
serverClientSameLAN = FALSE
)
Arguments
publicIp |
Character(0) or Character(1), the public Ip of the server |
publicPort |
Integer(0) or Integer(1), the public port of the server |
privateIp |
Character(0) or Character(1), the private Ip of the server |
privatePort |
Integer(0) or Integer(1), the private port of the server |
password |
Character(1), the password for the server |
serverWorkerSameLAN |
Logical(1), whether the server and works are in the same LAN |
serverClientSameLAN |
Logical(1), whether the server and client are in the same LAN |
Examples
CloudPrivateServer(publicIp = "192.168.1.1", publicPort = 1234)
[Package DockerParallel version 1.0.4 Index]