Main Content

setPassword

R2026b

Set password for target computer

Since R2022b

    Description

    setPassword(tg, Password) sets the specified password for the target.

    example

    Examples

    collapse all

    Create a target object and add a target with name LinuxTarget1 containing user name user1 and password myPassword.

    tgs = linux.Targets();
    tg = tgs.addTarget("LinuxTarget1", "178.10.10.1", "user1", "myPassword");

    Set the password.

    tg.setPassword("myPassword");

    Input Arguments

    collapse all

    Target computer for the deployed application, specified as a linuxTarget object. The object provides access to methods that manipulate the target computer properties.

    Example: tg

    Specify the password for the target.

    Example: "newPassword"

    Version History

    Introduced in R2022b