Reputation: 1
I have hosted mlflow server on redhat server (http://) with mlflow_trk.service file which contains this:
[Unit]
Description=MLflow tracking server
After=network.target
[Service]
Restart=on-failure
RestartSec=30
ExecStart=/bin/bash -c PATH=/venv/bin/:$PATH exec mlflow server --backend-store-uri postgresql://<username>:<password>@<DB_host>:<DB_Port>/mlflow -h 0.0.0.0 -p 8000
[Install]
WantedBy=multi-user.target
I then set the tracking uri to "http://<ip_of_server>/mlflow_trk" and then I run the code I get these errors:
Can u please help me achieve this connection.
Tried adding nginx but it does not seem to be working.
Upvotes: 0
Views: 171