Lines Matching full:username
14 username: myusername
34 1. You will be asked for your username and password for each host.
38 2. You will be asked once for your username and password.
43 3. Give a username and password on the command-line:
47 You can use an extended host notation to specify username, password, and host
51 username:password@host
66 # TODO add feature to support username:password@host combination
156 # build up the list of connection information (hostname, username, password, port)
163 if len(hcd['username']) > 0:
164 username = hcd['username']
166 username = cli_username
168 username = raw_input('%s username: ' % hostname)
176 hive_connect_info[hostname] = (hostname, username, password, port)
199 cli_username = raw_input('username: ')
399 username:password@hostname:port. All fields are options expcet hostname. A
405 p = re.compile (r'(?P<username>[^@:]*)(:?)(?P<password>.*)(?!\\)@(?P<hostname>[^:]*):?(?P<port>[0-9]*)')
407 p = re.compile (r'(?P<username>)(?P<password>)(?P<hostname>[^:]*):?(?P<port>[0-9]*)')
419 parser.add_option ('--sameuser', action='store_true', default=False, help='Use same username for each login.')