Skip to content

Verifying Your Installation

After installing EasyTask agents, verify that everything is running correctly.


Check Agent Status

systemctl --user status easytask-agent-<NODE_NAME>

Replace <NODE_NAME> with the name you gave the agent during installation.


View Agent Logs

tail -f ~/easytask/worker_agent/worker_<NODE_NAME>.log

Check Integration Server

If you installed the Integration Server:

podman ps | grep easytask-intserver

You should see the easytask-intserver container in Up status.


Verify in the Web UI

Log in to the EasyTask portal and check that your agents appear as online in the dashboard.


Troubleshooting

If an agent is not showing up:


Frequently Asked Questions

How do I check if my agent is running? Run systemctl --user status easytask-agent-<NODE_NAME> (replace <NODE_NAME> with your agent name) — it should show an active status.

Where are the agent logs located? Agent logs are stored at ~/easytask/worker_agent/worker_<NODE_NAME>.log. Use tail -f to follow them in real time.

Why doesn't my agent show up in the Web UI? Check the agent log for errors, ensure the host has internet access, and verify the agent service is running. See the Troubleshooting Guide for detailed steps.


Next Steps