DEV Community

Cover image for How to use uWSGI Avahi plugin in Ubuntu
Paolo Melchiorre
Paolo Melchiorre

Posted on • Edited on • Originally published at paulox.net

3 1

How to use uWSGI Avahi plugin in Ubuntu

Step-by-step how-to to use uWSGI Avahi plugin for GNU/Linux (tested on Ubuntu 17.04).

The Avahi uWSGI plugin (github.com/20tab/uwsgi-avahi) allows your instances to register services in your mDNS system.

$ sudo apt-get install uwsgi uwsgi-src libavahi-client-dev
$ cd ~
$ PYTHON=python3.6 uwsgi --build-plugin https://github.com/20tab/uwsgi-avahi
$ sudo mv avahi_plugin.so /usr/lib/uwsgi/plugins/avahi_plugin.so
$ sudo chmod 644 /usr/lib/uwsgi/plugins/avahi_plugin.so
Enter fullscreen mode Exit fullscreen mode

Configuring your .ini file like:

[uwsgi]
...
project_name = paulox
socket = 127.0.0.1:0
subscribe-to = 127.0.0.1:5005:%(project_name).local
plugins = avahi
avahi-register = %(project_name).local
Enter fullscreen mode Exit fullscreen mode

After starting your emperor you can view some similar messages on your log:

...
Avahi Server Version: avahi 0.6.32
[uwsgi-avahi] registered record paulox.local CNAME ubuntu.local
...
Enter fullscreen mode Exit fullscreen mode

Originally published on: www.paulox.net

Image of Datadog

The Future of AI, LLMs, and Observability on Google Cloud

Datadog sat down with Google’s Director of AI to discuss the current and future states of AI, ML, and LLMs on Google Cloud. Discover 7 key insights for technical leaders, covering everything from upskilling teams to observability best practices

Learn More

Top comments (0)

Retry later
Retry later