ericallam commented on issue #15647:
URL: https://github.com/apache/pulsar/issues/15647#issuecomment-1344316664

   I've gotten passed the error above with the following docker compose file:
   
   ```yaml
   version: "3.7"
   
   services:
     pulsar:
       image: apachepulsar/pulsar:latest
       command: bin/pulsar standalone
       ports:
         - 6650:6650
         - 8080:8080
       volumes:
         - pulsardata:/pulsar/data:rw
         - pulsarconf:/pulsar/conf:rw
   
   volumes:
     pulsardata:
       driver: local
       driver_opts:
         type: none
         device: ./pulsar/data
         o: bind
     pulsarconf:
       driver: local
       driver_opts:
         type: none
         device: ./pulsar/conf
         o: bind
   ```
   
   As you can see I'm now binding the `/pulsar/data` and `/pulsar/conf` 
directories in the container to my local `./pulsar/data|conf` directories.
   
   Unfortunately there is now another error (after ALOT of logs):
   
   ```
   pulsar_1  | 2022-12-09T13:28:37,443+0000 [SessionTracker] INFO  
org.apache.zookeeper.server.ZooKeeperServer - Expiring session 
0x10000092a760006, timeout of 30000ms exceeded
   ```
   
   That repeats about 4 times (with different session IDs) and port 6650 or 
8080 are never accessible.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to