Skip to content

user activate

Synopsis

The user activate command activates an existing Olares account. It requires the user's Olares ID, password, and 12-word mnemonic phrase to complete the activation. This command typically requires administrator privileges (sudo).

bash
olares-cli user activate <Olares ID> [options]

Arguments

ArgumentDescriptionRequired
<Olares ID>Specifies the unique identifier for the Olares user account to be activated.
Similar to an email address(e.g., [email protected]).
Yes

Options

OptionShorthandUsageRequiredDefault
--bflSpecifies the Backend For Launcher (BFL) service URL (e.g., https://example.com).Nohttp://127.0.0.1:30180
--enable-tunnelEnables or disables tunnel mode for activation.Nofalse
--help-hDisplays help information.NoN/A
--hostSpecifies the Fast Reverse Proxy (FRP) host.
Only used when the --enable-tunnel option is set to true.
NoN/A
--jwsSpecifies the FRP JWS token.
Only used when the --enable-tunnel option is set to true.
NoN/A
--languageSets the system language.Noen-US
--locationSets the timezone location.NoAsia/Shanghai
--mnemonicSpecifies the 12-word mnemonic phrase required for activation.YesN/A
--password-pSpecifies the Olares login password for authentication.YesN/A
--vaultSpecifies the Vault service URL (e.g., https://example.com).Nohttp://127.0.0.1:30181

Example

bash
# Activate an Olares user account
sudo olares-cli user activate [email protected] -p "HerPassWord"  --mnemonic "apple banana cherry door eagle forest grape house island jacket kite lemon"

# Activate an Olares user account with tunnel mode enabled
sudo olares-cli user activate [email protected] -p "HisPassWord"  --enable-tunnel --host "frp-gateway.olares.com"  --jws "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.demo.signature"  --bfl http://127.0.0.1:30180 --vault http://127.0.0.1:30180/server  --mnemonic "apple banana cherry door eagle forest grape house island jacket kite lemon"

# Activate an Olares user account with specific language and timezone settings
sudo olares-cli user activate [email protected] -p "AnotherPassWord"  --mnemonic "alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu"  --language "en-US" --location "America/New_York"