Hi all,
I am trying to create users using aaa-cli-jar, the users are getting created but I am getting 401 when I try to use that user.
Did anything changed recently?
Any idea what I am doing wrong:
# ~/odl_repo/integration-distribution/karaf/target/assembly/data (master)
$ java -jar ~/Downloads/aaa-cli-jar-0.5.0-20170522.110416-143.jar -dbd . -l
[main] INFO org.opendaylight.aaa.api.StoreBuilder - Checking if default entries must be created in IDM store
[main] INFO org.opendaylight.aaa.api.StoreBuilder - Found default domain in IDM store, skipping insertion of default data
User names:
admin
# ~/odl_repo/integration-distribution/karaf/target/assembly/data (master)
$ java -jar ~/Downloads/aaa-cli-jar-0.5.0-20170522.110416-143.jar -dbd . --nu naveen -a -p naveen
[main] INFO org.opendaylight.aaa.api.StoreBuilder - Checking if default entries must be created in IDM store
[main] INFO org.opendaylight.aaa.api.StoreBuilder - Found default domain in IDM store, skipping insertion of default data
New user created, as admin: naveen
# ~/odl_repo/integration-distribution/karaf/target/assembly/data (master)
$ java -jar ~/Downloads/aaa-cli-jar-0.5.0-20170522.110416-143.jar -dbd . -l
[main] INFO org.opendaylight.aaa.api.StoreBuilder - Checking if default entries must be created in IDM store
[main] INFO org.opendaylight.aaa.api.StoreBuilder - Found default domain in IDM store, skipping insertion of default data
User names:
admin
naveen
# ~/odl_repo/integration-distribution/karaf/target/assembly/data (master)
# ~
Note: Unnecessary use of -X or --request, GET is already inferred.
* timeout on name lookup is not supported
* Trying ::1...
* TCP_NODELAY set
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Connected to localhost (::1) port 8181 (#0)
* Server auth using Basic with user 'naveen'
> GET /auth/v1/users HTTP/1.1
> Host: localhost:8181
> Authorization: Basic bmF2ZWVuOm5hdmVlbg==
> User-Agent: curl/7.51.0
> Accept: */*
> Content-type: application/json
>
< HTTP/1.1 401 Unauthorized
< Set-Cookie: rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 16-Jul-2018 16:29:04 GMT
* Authentication problem. Ignoring this.
< WWW-Authenticate: BASIC realm="application"
< Content-Length: 0
<
* Curl_http_done: called premature == 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
* Connection #0 to host localhost left intact
Expecting value: line 1 column 1 (char 0)
# ~
Thanks,
Naveen