pulsar-manager
pulsar-manager copied to clipboard
Manager doesn't show the Standalone cluster option for adding to tenant
When trying to create a tenant on a standalone cluster (using the provided docker-compose deploy) there is no "standalone" cluster option for adding to a newly created tenant.
@lsadehaan do you have any screenshot about the issue you are encountering?
Sure, here you go:
@lsadehaan If you click "Clusters" tab, do you see any cluster there?
No I don't
I also encountered the same situation, through pulsar-admin
can find standalone
.
After entering the container, I checked the log and found the following error message:
I think the wrong pulsar api service address is used,my pulsar service address is http://192.168.56.101:8080
@jiawulin001 You can try to get cluster information:
./bin/pulsar-admin clusters get standalone
Update cluster data:
./bin/pulsar-admin clusters update standalone --url http://192.168.56.101:8080
@jiawulin001 You can try to get cluster information:
./bin/pulsar-admin clusters get standalone
Update cluster data:
./bin/pulsar-admin clusters update standalone --url http://192.168.56.101:8080
thx
After updating the serviceUrl
, the problem is solved.
It is recommended to optimize the UI, if the service address is set incorrectly, the page always shows loading.
thx