Hey there, I just got it to work with ChatGPT’s help. Hope it works for you:

Steps to Resolve

- Edit the Service File

- Open the service file for editing:

> sudo nano /etc/systemd/system/plexamp.service

Update the relevant lines to reflect your actual username:

[Service]
User=XXXXpi
WorkingDirectory=/home/XXXXpi/plexamp
ExecStart=/usr/bin/node /home/XXXXpi/plexamp/js/index.js

  • Control-O to write out.

    # Reload systemd and Restart the Service

    • After saving the changes, reload systemd to apply the new configuration:
    1. sudo systemctl daemon-reload
    2. sudo systemctl restart plexamp

      Enable the Service to Start on Boot

# To ensure Plexamp starts automatically on boot:

> sudo systemctl enable plexamp

# Verify the Service Status

# Check if the service is running correctly:

> sudo systemctl status plexamp

You should see an “active (running)” status if everything is set up correctly.

GitHub-flavored Markdown & a sane subset of HTML is supported.