コード例 #1
0
ファイル: adhoc_deployer.py プロジェクト: alshopov/Zopkio
  def start(self, unique_id, configs=None):
    """
    Start the service.  If `unique_id` has already been installed the deployer will start the service on that host.
    Otherwise this will call install with the configs. Within the context of this function, only four configs are
    considered
    'start_command': the command to run (if provided will replace the default)
    'args': a list of args that can be passed to the command
    'sync': if the command is synchronous or asynchronous defaults to asynchronous
    'delay': a delay in seconds that might be needed regardless of whether the command returns before the service can
    be started

    :param unique_id:
    :param configs:
    :return: if the command is executed synchronously return the underlying paramiko channel which can be used to get the stdout
    otherwise return the triple stdin, stdout, stderr
    """
    # the following is necessay to set the configs for this function as the combination of the
    # default configurations and the parameter with the parameter superceding the defaults but
    # not modifying the defaults
    if configs is None:
      configs = {}
    tmp = self.default_configs.copy()
    tmp.update(configs)
    configs = tmp

    logger.debug("starting " + unique_id)

    # do not start if already started
    if self.get_pid(unique_id, configs) is not constants.PROCESS_NOT_RUNNING_PID:
      return None

    if unique_id not in self.processes:
      self.install(unique_id, configs)

    hostname = self.processes[unique_id].hostname
    install_path = self.processes[unique_id].install_path

    # order of precedence for start_command and args from highest to lowest:
    # 1. configs
    # 2. from Process
    # 3. from Deployer
    start_command = configs.get('start_command') or self.processes[unique_id].start_command or self.default_configs.get('start_command')
    if start_command is None:
      logger.error("start_command was not provided for unique_id: " + unique_id)
      raise DeploymentError("start_command was not provided for unique_id: " + unique_id)
    args = configs.get('args') or self.processes[unique_id].args or self.default_configs.get('args')
    if args is not None:
      full_start_command = "{0} {1}".format(start_command, ' '.join(args))
    else:
      full_start_command = start_command
    command = "cd {0}; {1}".format(install_path, full_start_command)
    env = configs.get("env", {})
    with get_ssh_client(hostname, username=runtime.get_username(), password=runtime.get_password()) as ssh:
      exec_with_env(ssh, command, msg="Failed to start", env=env, sync=configs.get('sync', False))

    self.processes[unique_id].start_command = start_command
    self.processes[unique_id].args = args

    if 'delay' in configs:
      time.sleep(configs['delay'])
コード例 #2
0
ファイル: adhoc_deployer.py プロジェクト: JahanviB/Zopkio
  def get_pid(self, unique_id, configs=None):
    """Gets the pid of the process with `unique_id`.  If the deployer does not know of a process
    with `unique_id` then it should return a value of constants.PROCESS_NOT_RUNNING_PID
    """
    RECV_BLOCK_SIZE = 16
    # the following is necessay to set the configs for this function as the combination of the
    # default configurations and the parameter with the parameter superceding the defaults but
    # not modifying the defaults
    if configs is None:
      configs = {}
    tmp = self.default_configs.copy()
    tmp.update(configs)
    configs = tmp

    if unique_id in self.processes:
      hostname = self.processes[unique_id].hostname
    else:
      return constants.PROCESS_NOT_RUNNING_PID

    if self.processes[unique_id].start_command is None:
      return constants.PROCESS_NOT_RUNNING_PID

    if self.processes[unique_id].pid_file is not None:
      with open_remote_file(hostname, self.processes[unique_id].pid_file,
                            username=runtime.get_username(), password=runtime.get_password()) as pid_file:
        full_output = pid_file.read()
    elif 'pid_file' in configs.keys():
      with open_remote_file(hostname, configs['pid_file'],
                            username=runtime.get_username(), password=runtime.get_password()) as pid_file:
        full_output = pid_file.read()
    else:
      pid_keyword = self.processes[unique_id].start_command
      if self.processes[unique_id].args is not None:
        pid_keyword = "{0} {1}".format(pid_keyword, ' '.join(self.processes[unique_id].args))
      pid_keyword = configs.get('pid_keyword', pid_keyword)
      # TODO(jehrlich): come up with a simpler approach to this
      pid_command = "ps aux | grep '{0}' | grep -v grep | tr -s ' ' | cut -d ' ' -f 2 | grep -Eo '[0-9]+'".format(pid_keyword)
      pid_command = configs.get('pid_command', pid_command)
      non_failing_command = "{0}; if [ $? -le 1 ]; then true;  else false; fi;".format(pid_command)
      env = configs.get("env", {})
      with get_ssh_client(hostname, username=runtime.get_username(), password=runtime.get_password()) as ssh:
        chan = exec_with_env(ssh, non_failing_command, msg="Failed to get PID", env=env)
      output = chan.recv(RECV_BLOCK_SIZE)
      full_output = output
      while len(output) > 0:
        output = chan.recv(RECV_BLOCK_SIZE)
        full_output += output
    if len(full_output) > 0:
      pids = [int(pid_str) for pid_str in full_output.split('\n') if pid_str.isdigit()]
      if len(pids) > 0:
        return pids

    return constants.PROCESS_NOT_RUNNING_PID
コード例 #3
0
 def __execute_command(self, command):
     """
     Executes the :param command on host: self.host_name.
     """
     with get_ssh_client(self.host_name, username=self.username, password=self.password) as ssh:
         chan = exec_with_env(ssh, command, msg="Failed to get PID", env={})
     execution_result = ''
     while True:
         result_buffer = chan.recv(16)
         if len(result_buffer) == 0:
             break
         execution_result += result_buffer
     return execution_result
コード例 #4
0
ファイル: adhoc_deployer.py プロジェクト: vickkyy/Zopkio
    def stop(self, unique_id, configs=None):
        """Stop the service.  If the deployer has not started a service with`unique_id` the deployer will raise an Exception
    There are two configs that will be considered:
    'terminate_only': if this config is passed in then this method is the same as terminate(unique_id) (this is also the
    behavior if stop_command is None and not overridden)
    'stop_command': overrides the default stop_command

    :param unique_id:
    :param configs:
    :return:
    """
        # the following is necessay to set the configs for this function as the combination of the
        # default configurations and the parameter with the parameter superceding the defaults but
        # not modifying the defaults
        if configs is None:
            configs = {}
        tmp = self.default_configs.copy()
        tmp.update(configs)
        configs = tmp

        logger.debug("stopping " + unique_id)

        if unique_id in self.processes:
            hostname = self.processes[unique_id].hostname
        else:
            logger.error("Can't stop {0}: process not known".format(unique_id))
            raise DeploymentError(
                "Can't stop {0}: process not known".format(unique_id))

        if configs.get('terminate_only', False):
            self.terminate(unique_id, configs)
        else:
            stop_command = configs.get(
                'stop_command') or self.default_configs.get('stop_command')
            env = configs.get("env", {})
            if stop_command is not None:
                install_path = self.processes[unique_id].install_path
                with get_ssh_client(hostname,
                                    username=runtime.get_username(),
                                    password=runtime.get_password()) as ssh:
                    log_output(
                        exec_with_env(
                            ssh,
                            "cd {0}; {1}".format(install_path, stop_command),
                            msg="Failed to stop {0}".format(unique_id),
                            env=env))
            else:
                self.terminate(unique_id, configs)

        if 'delay' in configs:
            time.sleep(configs['delay'])
コード例 #5
0
ファイル: adhoc_deployer.py プロジェクト: JahanviB/Zopkio
  def stop(self, unique_id, configs=None):
    """Stop the service.  If the deployer has not started a service with`unique_id` the deployer will raise an Exception
    There are two configs that will be considered:
    'terminate_only': if this config is passed in then this method is the same as terminate(unique_id) (this is also the
    behavior if stop_command is None and not overridden)
    'stop_command': overrides the default stop_command

    :param unique_id:
    :param configs:
    :return:
    """
    # the following is necessay to set the configs for this function as the combination of the
    # default configurations and the parameter with the parameter superceding the defaults but
    # not modifying the defaults
    if configs is None:
      configs = {}
    tmp = self.default_configs.copy()
    tmp.update(configs)
    configs = tmp

    logger.debug("stopping " + unique_id)

    if unique_id in self.processes:
      hostname = self.processes[unique_id].hostname
    else:
      logger.error("Can't stop {0}: process not known".format(unique_id))
      raise DeploymentError("Can't stop {0}: process not known".format(unique_id))

    if configs.get('terminate_only', False):
      self.terminate(unique_id, configs)
    else:
      stop_command = configs.get('stop_command') or self.default_configs.get('stop_command')
      env = configs.get("env", {})
      if stop_command is not None:
        install_path = self.processes[unique_id].install_path
        with get_ssh_client(hostname, username=runtime.get_username(), password=runtime.get_password()) as ssh:
          log_output(exec_with_env(ssh, "cd {0}; {1}".format(install_path, stop_command),
                                         msg="Failed to stop {0}".format(unique_id), env=env))
      else:
        self.terminate(unique_id, configs)

    if 'delay' in configs:
      time.sleep(configs['delay'])
コード例 #6
0
ファイル: adhoc_deployer.py プロジェクト: JahanviB/Zopkio
  def install(self, unique_id, configs=None):
    """
    Copies the executable to the remote machine under install path. Inspects the configs for the possible keys
    'hostname': the host to install on
    'install_path': the location on the remote host
    'executable': the executable to copy
    'no_copy': if this config is passed in and true then this method will not copy the executable assuming that it is
    already installed
    'post_install_cmds': an optional list of commands that should be executed on the remote machine after the
     executable has been installed. If no_copy is set to true, then the post install commands will not be run.

    If the unique_id is already installed on a different host, this will perform the cleanup action first.
    If either 'install_path' or 'executable' are provided the new value will become the default.

    :param unique_id:
    :param configs:
    :return:
    """

    # the following is necessay to set the configs for this function as the combination of the
    # default configurations and the parameter with the parameter superceding the defaults but
    # not modifying the defaults
    if configs is None:
      configs = {}
    tmp = self.default_configs.copy()
    tmp.update(configs)
    configs = tmp

    hostname = None
    is_tarfile = False
    is_zipfile = False
    if unique_id in self.processes and  'hostname' in configs:
        self.uninstall(unique_id, configs)
        hostname = configs['hostname']
    elif 'hostname' in configs:
      hostname = configs['hostname']
    elif unique_id not in self.processes:
      # we have not installed this unique_id before and no hostname is provided in the configs so raise an error
      raise DeploymentError("hostname was not provided for unique_id: " + unique_id)

    env = configs.get("env", {})
    install_path = configs.get('install_path') or self.default_configs.get('install_path')
    pid_file = configs.get('pid_file') or self.default_configs.get('pid_file')
    if install_path is None:
      logger.error("install_path was not provided for unique_id: " + unique_id)
      raise DeploymentError("install_path was not provided for unique_id: " + unique_id)
    if not configs.get('no_copy', False):
      with get_ssh_client(hostname, username=runtime.get_username(), password=runtime.get_password()) as ssh:
        log_output(better_exec_command(ssh, "mkdir -p {0}".format(install_path),
                                       "Failed to create path {0}".format(install_path)))
        log_output(better_exec_command(ssh, "chmod 755 {0}".format(install_path),
                                       "Failed to make path {0} writeable".format(install_path)))
        executable = configs.get('executable') or self.default_configs.get('executable')
        if executable is None:
          logger.error("executable was not provided for unique_id: " + unique_id)
          raise DeploymentError("executable was not provided for unique_id: " + unique_id)

        #if the executable is in remote location copy to local machine
        copy_from_remote_location = False;

        if (":" in executable):
          copy_from_remote_location = True

          if ("http" not in executable):
            remote_location_server = executable.split(":")[0]
            remote_file_path = executable.split(":")[1] 
            remote_file_name = os.path.basename(remote_file_path)

            local_temp_file_name = os.path.join(configs.get("tmp_dir","/tmp"),remote_file_name)
          
            if not os.path.exists(local_temp_file_name):
              with get_sftp_client(remote_location_server,username=runtime.get_username(), password=runtime.get_password()) as ftp:
                try:
                  ftp.get(remote_file_path, local_temp_file_name)
                  executable = local_temp_file_name
                except:
                  raise DeploymentError("Unable to load file from remote server " + executable)
          #use urllib for http copy
          else:    
              remote_file_name = executable.split("/")[-1]
              local_temp_file_name = os.path.join(configs.get("tmp_dir","/tmp"),remote_file_name)
              if not os.path.exists(local_temp_file_name):
                try:
                  urllib.urlretrieve (executable, local_temp_file_name)
                except:
                  raise DeploymentError("Unable to load file from remote server " + executable)
              executable = local_temp_file_name    

        try:                     
          exec_name = os.path.basename(executable)
          install_location = os.path.join(install_path, exec_name)
          with get_sftp_client(hostname, username=runtime.get_username(), password=runtime.get_password()) as ftp:
            ftp.put(executable, install_location)
        except:
            raise DeploymentError("Unable to copy executable to install_location:" + install_location)
        finally:
          #Track if its a tarfile or zipfile before deleting it in case the copy to remote location fails
          is_tarfile = tarfile.is_tarfile(executable)
          is_zipfile = zipfile.is_zipfile(executable)
          if (copy_from_remote_location and not configs.get('cache',False)):
            os.remove(executable)       

        # only supports tar and zip (because those modules are provided by Python's standard library)
        if configs.get('extract', False) or self.default_configs.get('extract', False):
          if is_tarfile:
            log_output(better_exec_command(ssh, "tar -xf {0} -C {1}".format(install_location, install_path),
                                           "Failed to extract tarfile {0}".format(exec_name)))
          elif is_zipfile:
            log_output(better_exec_command(ssh, "unzip -o {0} -d {1}".format(install_location, install_path),
                                           "Failed to extract zipfile {0}".format(exec_name)))
          else:
            logger.error(executable + " is not a supported filetype for extracting")
            raise DeploymentError(executable + " is not a supported filetype for extracting")
        post_install_cmds = configs.get('post_install_cmds', False) or self.default_configs.get('post_install_cmds', [])
        for cmd in post_install_cmds:
          relative_cmd = "cd {0}; {1}".format(install_path, cmd)
          log_output(exec_with_env(ssh, relative_cmd,
                                         msg="Failed to execute post install command: {0}".format(relative_cmd), env=env))
    self.processes[unique_id] = Process(unique_id, self.service_name, hostname, install_path)
    self.processes[unique_id].pid_file = pid_file
コード例 #7
0
ファイル: adhoc_deployer.py プロジェクト: vickkyy/Zopkio
    def install(self, unique_id, configs=None):
        """
    Copies the executable to the remote machine under install path. Inspects the configs for the possible keys
    'hostname': the host to install on
    'install_path': the location on the remote host
    'executable': the executable to copy
    'no_copy': if this config is passed in and true then this method will not copy the executable assuming that it is
    already installed
    'post_install_cmds': an optional list of commands that should be executed on the remote machine after the
     executable has been installed. If no_copy is set to true, then the post install commands will not be run.

    If the unique_id is already installed on a different host, this will perform the cleanup action first.
    If either 'install_path' or 'executable' are provided the new value will become the default.

    :param unique_id:
    :param configs:
    :return:
    """

        # the following is necessay to set the configs for this function as the combination of the
        # default configurations and the parameter with the parameter superceding the defaults but
        # not modifying the defaults
        if configs is None:
            configs = {}
        tmp = self.default_configs.copy()
        tmp.update(configs)
        configs = tmp

        hostname = None
        is_tarfile = False
        is_zipfile = False
        if unique_id in self.processes and 'hostname' in configs:
            self.uninstall(unique_id, configs)
            hostname = configs['hostname']
        elif 'hostname' in configs:
            hostname = configs['hostname']
        elif unique_id not in self.processes:
            # we have not installed this unique_id before and no hostname is provided in the configs so raise an error
            raise DeploymentError("hostname was not provided for unique_id: " +
                                  unique_id)

        env = configs.get("env", {})
        install_path = configs.get('install_path') or self.default_configs.get(
            'install_path')
        pid_file = configs.get('pid_file') or self.default_configs.get(
            'pid_file')
        if install_path is None:
            logger.error("install_path was not provided for unique_id: " +
                         unique_id)
            raise DeploymentError(
                "install_path was not provided for unique_id: " + unique_id)
        if not configs.get('no_copy', False):
            with get_ssh_client(hostname,
                                username=runtime.get_username(),
                                password=runtime.get_password()) as ssh:
                log_output(
                    better_exec_command(
                        ssh, "mkdir -p {0}".format(install_path),
                        "Failed to create path {0}".format(install_path)))
                log_output(
                    better_exec_command(
                        ssh, "chmod 755 {0}".format(install_path),
                        "Failed to make path {0} writeable".format(
                            install_path)))
                executable = configs.get(
                    'executable') or self.default_configs.get('executable')
                if executable is None:
                    logger.error(
                        "executable was not provided for unique_id: " +
                        unique_id)
                    raise DeploymentError(
                        "executable was not provided for unique_id: " +
                        unique_id)

                #if the executable is in remote location copy to local machine
                copy_from_remote_location = False

                if (":" in executable):
                    copy_from_remote_location = True

                    if ("http" not in executable):
                        remote_location_server = executable.split(":")[0]
                        remote_file_path = executable.split(":")[1]
                        remote_file_name = os.path.basename(remote_file_path)

                        local_temp_file_name = os.path.join(
                            configs.get("tmp_dir", "/tmp"), remote_file_name)

                        if not os.path.exists(local_temp_file_name):
                            with get_sftp_client(
                                    remote_location_server,
                                    username=runtime.get_username(),
                                    password=runtime.get_password()) as ftp:
                                try:
                                    ftp.get(remote_file_path,
                                            local_temp_file_name)
                                    executable = local_temp_file_name
                                except:
                                    raise DeploymentError(
                                        "Unable to load file from remote server "
                                        + executable)
                    #use urllib for http copy
                    else:
                        remote_file_name = executable.split("/")[-1]
                        local_temp_file_name = os.path.join(
                            configs.get("tmp_dir", "/tmp"), remote_file_name)
                        if not os.path.exists(local_temp_file_name):
                            try:
                                urllib.urlretrieve(executable,
                                                   local_temp_file_name)
                            except:
                                raise DeploymentError(
                                    "Unable to load file from remote server " +
                                    executable)
                        executable = local_temp_file_name

                try:
                    exec_name = os.path.basename(executable)
                    install_location = os.path.join(install_path, exec_name)
                    with get_sftp_client(
                            hostname,
                            username=runtime.get_username(),
                            password=runtime.get_password()) as ftp:
                        ftp.put(executable, install_location)
                except:
                    raise DeploymentError(
                        "Unable to copy executable to install_location:" +
                        install_location)
                finally:
                    #Track if its a tarfile or zipfile before deleting it in case the copy to remote location fails
                    is_tarfile = tarfile.is_tarfile(executable)
                    is_zipfile = zipfile.is_zipfile(executable)
                    if (copy_from_remote_location
                            and not configs.get('cache', False)):
                        os.remove(executable)

                # only supports tar and zip (because those modules are provided by Python's standard library)
                if configs.get('extract', False) or self.default_configs.get(
                        'extract', False):
                    if is_tarfile:
                        log_output(
                            better_exec_command(
                                ssh, "tar -xf {0} -C {1}".format(
                                    install_location, install_path),
                                "Failed to extract tarfile {0}".format(
                                    exec_name)))
                    elif is_zipfile:
                        log_output(
                            better_exec_command(
                                ssh, "unzip -o {0} -d {1}".format(
                                    install_location, install_path),
                                "Failed to extract zipfile {0}".format(
                                    exec_name)))
                    else:
                        logger.error(
                            executable +
                            " is not a supported filetype for extracting")
                        raise DeploymentError(
                            executable +
                            " is not a supported filetype for extracting")
                post_install_cmds = configs.get(
                    'post_install_cmds', False) or self.default_configs.get(
                        'post_install_cmds', [])
                for cmd in post_install_cmds:
                    relative_cmd = "cd {0}; {1}".format(install_path, cmd)
                    log_output(
                        exec_with_env(
                            ssh,
                            relative_cmd,
                            msg="Failed to execute post install command: {0}".
                            format(relative_cmd),
                            env=env))
        self.processes[unique_id] = Process(unique_id, self.service_name,
                                            hostname, install_path)
        self.processes[unique_id].pid_file = pid_file
コード例 #8
0
ファイル: adhoc_deployer.py プロジェクト: vickkyy/Zopkio
    def get_pid(self, unique_id, configs=None):
        """Gets the pid of the process with `unique_id`.  If the deployer does not know of a process
    with `unique_id` then it should return a value of constants.PROCESS_NOT_RUNNING_PID
    """
        RECV_BLOCK_SIZE = 16
        # the following is necessay to set the configs for this function as the combination of the
        # default configurations and the parameter with the parameter superceding the defaults but
        # not modifying the defaults
        if configs is None:
            configs = {}
        tmp = self.default_configs.copy()
        tmp.update(configs)
        configs = tmp

        if unique_id in self.processes:
            hostname = self.processes[unique_id].hostname
        else:
            return constants.PROCESS_NOT_RUNNING_PID

        if self.processes[unique_id].start_command is None:
            return constants.PROCESS_NOT_RUNNING_PID

        if self.processes[unique_id].pid_file is not None:
            with open_remote_file(hostname,
                                  self.processes[unique_id].pid_file,
                                  username=runtime.get_username(),
                                  password=runtime.get_password()) as pid_file:
                full_output = pid_file.read()
        elif 'pid_file' in configs.keys():
            with open_remote_file(hostname,
                                  configs['pid_file'],
                                  username=runtime.get_username(),
                                  password=runtime.get_password()) as pid_file:
                full_output = pid_file.read()
        else:
            pid_keyword = self.processes[unique_id].start_command
            if self.processes[unique_id].args is not None:
                pid_keyword = "{0} {1}".format(
                    pid_keyword, ' '.join(self.processes[unique_id].args))
            pid_keyword = configs.get('pid_keyword', pid_keyword)
            # TODO(jehrlich): come up with a simpler approach to this
            pid_command = "ps aux | grep '{0}' | grep -v grep | tr -s ' ' | cut -d ' ' -f 2 | grep -Eo '[0-9]+'".format(
                pid_keyword)
            pid_command = configs.get('pid_command', pid_command)
            non_failing_command = "{0}; if [ $? -le 1 ]; then true;  else false; fi;".format(
                pid_command)
            env = configs.get("env", {})
            with get_ssh_client(hostname,
                                username=runtime.get_username(),
                                password=runtime.get_password()) as ssh:
                chan = exec_with_env(ssh,
                                     non_failing_command,
                                     msg="Failed to get PID",
                                     env=env)
            output = chan.recv(RECV_BLOCK_SIZE)
            full_output = output
            while len(output) > 0:
                output = chan.recv(RECV_BLOCK_SIZE)
                full_output += output
        if len(full_output) > 0:
            pids = [
                int(pid_str) for pid_str in full_output.split('\n')
                if pid_str.isdigit()
            ]
            if len(pids) > 0:
                return pids

        return constants.PROCESS_NOT_RUNNING_PID
コード例 #9
0
ファイル: adhoc_deployer.py プロジェクト: vickkyy/Zopkio
    def start(self, unique_id, configs=None):
        """
    Start the service.  If `unique_id` has already been installed the deployer will start the service on that host.
    Otherwise this will call install with the configs. Within the context of this function, only four configs are
    considered
    'start_command': the command to run (if provided will replace the default)
    'args': a list of args that can be passed to the command
    'sync': if the command is synchronous or asynchronous defaults to asynchronous
    'delay': a delay in seconds that might be needed regardless of whether the command returns before the service can
    be started

    :param unique_id:
    :param configs:
    :return: if the command is executed synchronously return the underlying paramiko channel which can be used to get the stdout
    otherwise return the triple stdin, stdout, stderr
    """
        # the following is necessay to set the configs for this function as the combination of the
        # default configurations and the parameter with the parameter superceding the defaults but
        # not modifying the defaults
        if configs is None:
            configs = {}
        tmp = self.default_configs.copy()
        tmp.update(configs)
        configs = tmp

        logger.debug("starting " + unique_id)

        # do not start if already started
        if self.get_pid(unique_id,
                        configs) is not constants.PROCESS_NOT_RUNNING_PID:
            return None

        if unique_id not in self.processes:
            self.install(unique_id, configs)

        hostname = self.processes[unique_id].hostname
        install_path = self.processes[unique_id].install_path

        # order of precedence for start_command and args from highest to lowest:
        # 1. configs
        # 2. from Process
        # 3. from Deployer
        start_command = configs.get('start_command') or self.processes[
            unique_id].start_command or self.default_configs.get(
                'start_command')
        pid_file = configs.get('pid_file') or self.default_configs.get(
            'pid_file')
        if start_command is None:
            logger.error("start_command was not provided for unique_id: " +
                         unique_id)
            raise DeploymentError(
                "start_command was not provided for unique_id: " + unique_id)
        args = configs.get('args') or self.processes[
            unique_id].args or self.default_configs.get('args')
        if args is not None:
            full_start_command = "{0} {1}".format(start_command,
                                                  ' '.join(args))
        else:
            full_start_command = start_command
        command = "cd {0}; {1}".format(install_path, full_start_command)
        env = configs.get("env", {})
        with get_ssh_client(hostname,
                            username=runtime.get_username(),
                            password=runtime.get_password()) as ssh:
            exec_with_env(ssh,
                          command,
                          msg="Failed to start",
                          env=env,
                          sync=configs.get('sync', False))

        self.processes[unique_id].start_command = start_command
        self.processes[unique_id].args = args
        # For cases where user pases it with start command
        if self.processes[unique_id].pid_file is None:
            self.processes[unique_id].pid_file = pid_file

        if 'delay' in configs:
            time.sleep(configs['delay'])