Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nairgh/springboot-apache-kafka

spring boot apache kafka
https://github.com/nairgh/springboot-apache-kafka

apache-kafka docker-compose docker-image dockerfile spring-boot

Last synced: 8 days ago
JSON representation

spring boot apache kafka

Awesome Lists containing this project

README

        

# springboot-apache-pulsar

### Create Admin user :

```
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]"}'
```