Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nairgh/springboot-apache-kafka
- Owner: nairgh
- Created: 2024-07-15T14:39:08.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T01:03:23.000Z (5 months ago)
- Last Synced: 2024-12-07T20:07:49.417Z (2 months ago)
- Topics: apache-kafka, docker-compose, docker-image, dockerfile, spring-boot
- Language: Java
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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]"}'
```