I want to run a streamlit app on a linux server on which I do not have root permissions.
I installed all dependencies using pip with --user flag.
For testing, a port was assigned to me.
So I started streamlit with --server.port and --browser.serverAddress set according to our Network.
As I started streamlit for testing, I was prompted for root PW. This is odd, I thought to myself…
Anyways, I ignored it. I checked the browser and streamlit seems to run. (Got some errors presumably unrelated to this problem).
A few minutes later, the admin called and said that I am spamming him with security alerts since something streamlit related tries to execute some stuff as root every few seconds.
More precisely:
USER=root ; COMMAND=dbus-uuidgen --ensure
Any ideas what this is ?
I thought streamlit can be run without root permissions.
Are you also working in a Linux environment? Can you let us know what version of Streamlit you have installed?
I have let our Product Manager, @abhi, know about your issue. Now that we know it is not an isolated incident, we can get a better understanding of what is happening and get a workaround/fix in the making!
Sorry for not being able to fix this for you immediately!
This is a known issue on our end. This piece of code is invoked to generate a machine-id as part of our metrics collection pipeline. We collect some aggregated metrics to improve our open source product offering(See our privacy policy for details: Privacy notice • Streamlit, no data from apps is collected).
We have observed this issue in containerized environments and we are working on a long term solution over the next couple of months. In the short term, here are 2 workarounds to unblock you:
Option #1
Comment out some of the code in [streamlit_path]/lib/streamlit/metrics_util.py
if (
platform.system() == “Linux”
and os.path.isfile(“/etc/machine-id”) == False
and os.path.isfile(“/var/lib/dbus/machine-id”) == False
):
subprocess.run([“sudo”, “dbus-uuidgen”, “–ensure”])
Option #2
If the first option isn’t feasible, then you can try to get the admin with root privileges generate the following files:
cat “12345” | sudo tee -a /etc/machine-id
cat “12345” | sudo tee -a /var/lib/dbus/machine-id
This will generate a machine-id which will work with metrics_util.py and should not throw an error anymore.
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.