pgandhap opened a new issue #432:
URL: https://github.com/apache/pulsar-manager/issues/432
Below steps i followed
For installing pulsar-manager :
1. docker pull apachepulsar/pulsar-manager:v0.2.0
2. docker run -it \
-p 9527:9527 -p 7750:7750 \
-e
SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties
\
-e URL='jdbc:postgresql://127.0.0.1:5432/pulsar_manager' \
-e USERNAME=pulsar \
-e PASSWORD=postgres \
--link pulsar-standalone \
apachepulsar/pulsar-manager:v0.2.0
Pulsar manager installed successfully . Then i need to set administrator
account and password , for that i followed below command
CSRF_TOKEN=$(curl http://localhost:7750/pulsar-manager/csrf-token)
curl \
-H "X-XSRF-TOKEN: $CSRF_TOKEN" \
-H "Cookie: XSRF-TOKEN=$CSRF_TOKEN;" \
-H "Content-Type: application/json"\
-X PUT http://localhost:7750/pulsar-manager/users/superuser \
-d "{"name": "admin", "password": "apachepulsar", "description": "test",
"email": "[email protected]"}"
After this step , i hit this url http://127.0.0.1:9527 in browser and
logging with credentials ( admin/apachepulsar ) . But it says incorrect
username or password .
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]