-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pulsar default password not working #407
Comments
If you have the same problem like me, than you will have a 404 Error in the WebConsole during Login. During my debug, I found out that this is ok. Because the Backend didn't start. After connecting to the shell of Installing So I've created my own postgres instance somewhere, create the schema with this link and startet the helm install like helm install \
--values pulsar-ird/values.yaml \
--set initialize=true \
--set proxy.ports.http=8080 \
--set proxy.securityContext.runAsUser=0 \
--set proxy.securityContext.runAsGroup=0 \
--set proxy.service.loadBalancerIP=192.168.77.101 \
--set pulsar_manager.admin.user=postgres \
--set pulsar_manager.admin.password=POSTGRES_PASSWORD \
--set pulsar_manager.configData.URL=jdbc:postgresql://192.168.77.10:5432/pulsar_manager \
--set pulsar_manager.service.loadBalancerIP=192.168.77.100 \
--namespace pulsar \
ird-pulsar apache/pulsar I've to switch the proxy to 8080 because bind to 80 wasn't possible. Also the possible "solutions" setting the After the helm command is finished, I connect to the shell again and After the spring service started up and was listening on 7750 I was possible to create an admin user! Yes! You need this. It's not directly documented by the how tos!! #crazy CSRF_TOKEN=$(kubectl get secret --namespace pulsar ird-pulsar-token-admin -o jsonpath="{.data.TOKEN}" | base64 -d)
curl \
-H "X-XSRF-TOKEN: $CSRF_TOKEN" \
-H "Cookie: XSRF-TOKEN=$CSRF_TOKEN;" \
-H 'Content-Type: application/json' \
-X PUT http://THE_MANAGER_IP:9527/pulsar-manager/users/superuser \
-d '{"name": "admin", "password": "BirnenBurner123_", "description": "test", "email": "[email protected]"}' Then you should be able to login with In the end I am still struggling to set my desired internal IPs. They got ignored and always got new ip's on re-deploys. And fun-fact : So my question is here : What is the definition of "production ready" ? And why uses the pulsar_manager by default in internal postgres instance (which is not starting up) in a non-stateful-set? |
You can try @streamvisor as an enterprise-grade alternative to pulsar-manager. It's free :) |
@alpreu please don't spam Apache issue tracker with advertisements. |
Fixed by #457 |
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
Using values.yaml
values.txt
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: