CloudPrivateServer: Define the data object for a cloud private server

Description Usage Arguments Examples

View source: R/method-export.R

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

1
2
3
4
5
6
7
8
9
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

1
CloudPrivateServer(publicIp = "192.168.1.1", publicPort = 1234)

DockerParallel documentation built on June 23, 2021, 5:07 p.m.