Information noteTip: By default, the user name must start with a
lower-case letter from
a to
z, followed by a combination of
lower-case letters (
a to
z) and numbers (from
0 to
9). To allow using characters other than those
letters and numbers, you need to modify the regular expression
^[a-z][-a-z0-9]*\$ in the value of the
org.talend.remote.jobserver.server.TalendJobServer.RUN_AS_USER_VALIDATION_REGEXP
parameter in the file
{Job_Server_Installation_Folder}\agent\conf\TalendJobServer.properties.
For example:
- To define a user name pattern that should include a dot, like
firstname.lastname, modify the regular expression to
^[a-z][-a-z0-9]*.[a-z][-a-z0-9]*\$.
- To allow using one or more underscores (_) in the user name, modify the
regular expression to ^[a-z][-a-z_0-9]*\$.