Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. # Debugging `bblfshd` on macOS
  2.  
  3. Where the example says
  4.  
  5. ```shell
  6. docker exec -it bblfshd bblfshctl driver list
  7. ```
  8.  
  9. you will need to specify the address explicitly:
  10.  
  11. ```shell
  12. docker exec -it srcd-cli-bblfshd bblfshctl driver list --ctl-network=tcp --ctl-address=localhost:9433
  13. ```
  14.  
  15. The default uses a Unix socket that isn't bound. Note also that I am using the "production" container `srcd-cli-bblfshd` instead of the example, since this is what people are going to be trying to debug from.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement