Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.21 KB

install-package.md

File metadata and controls

37 lines (26 loc) · 1.21 KB

Installation from Package

First download the latest release from GitHub then adjust appsettings.json. Then update your connection string in the client application. At the end make sure that all prerequisites are met and start the emulator.

Client Connection String

Note that the SharedAccess values must be exactly as specified as this is currently hardcoded in the emulator.

"Endpoint=sb://localhost/;SharedAccessKeyName=all;SharedAccessKey=CLwo3FQ3S39Z4pFOQDefaiUd1dSsli4XOAj3Y9Uh1E=;EnableAmqpLinkRedirect=false"

Update /etc/host

Redirect your hostname to the host you have specified in the connection string

Server Certificate

Generate a server certificate to match your desired connection string hostname. Afterwards import to your users local certificate store or save on disk as pfx.

Install Rabbit MQ

Install or locate already existing server

Update appsettings.json

Add following section to appsettings.json and make sure it is correct :)

"Emulator": {
    "ServerCertificatePath": "/app/cert.pfx",
    "ServerCertificatePassword": "password",
    "Port": 5671,
    "RabbitMq": {
      "Username": "user",
      "Password": "password",
      "Host": "localhost",
      "Port": 5672
    }
  }