- 
                Notifications
    
You must be signed in to change notification settings  - Fork 251
 
Release Candidate Validation
        Guangning edited this page Sep 9, 2020 
        ·
        14 revisions
      
    Unzip the server distribution apache-pulsar-manager-<release>-bin.tar.gz. The unzipped binary is in a directory called apache-pulsar-manager-<release>. All the operations below happen within that directory.
shasum -a 512 apache-pulsar-manager-<release>-src.tar.gz
shasum -a 512 apache-pulsar-manager-<release>-bin.tar.gz
gpg --verify apache-pulsar-manager-0.X.0-bin.tar.gz.asc apache-pulsar-manager-0.X.0-bin.tar.gz
gpg --verify apache-pulsar-manager-0.X.0-src.tar.gz.asc apache-pulsar-manager-0.X.0-src.tar.gz
Compare the contents of file .sha512, .asc to ensure consistency.
./bin/pulsar standalone -nss -a 127.0.0.1
tar -zxvf apache-pulsar-manager-0.X.0-release-bin.tar.gz
cd pulsar-manager
tar -zxvf pulsar-manager.tar
cd pulsar-manager
cp -r ../dist ui
./bin/pulsar-manager
- Init username and password
 
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]"}'
- Open the website 
http://localhost:7750/ui/index.htmland log in to. 
Username: admin Password: apachepulsar
- Validation bookkeeper management(optional)
 
- Update the configuration bkvm.conf, set 
bkvm.enabledtotrue - Restart pulsar-manager
 
- Open the website 
http://localhost:7750/bkvm