FileMaker Server on Linux: deployment, monitoring, and systemd
ExpertDeploy and manage FileMaker Server on Ubuntu Linux using systemd, the command-line tools, and standard Linux monitoring practices.
What you'll learn
- How FileMaker Server integrates with systemd on Linux
- Essential fmsadmin CLI commands for managing the server
- How to monitor logs and troubleshoot on Linux
FileMaker Server 19+ runs on Ubuntu 20.04 and 22.04 LTS. The Linux deployment uses systemd to manage the server services, and the fmsadmin CLI replaces many Admin Console operations. Linux deployments are common in cloud environments (AWS, GCP, Azure) where macOS servers aren't available.
1/3
1
FileMaker Server systemd services
FileMaker Server installs as systemd services. The primary service is called fmshelper. Restarting or checking status of FileMaker Server from the OS level uses systemctl.
TEXT
# Check FileMaker Server service status systemctl status fmshelper # Stop FileMaker Server systemctl stop fmshelper # Start FileMaker Server systemctl start fmshelper # Restart FileMaker Server systemctl restart fmshelper # View recent service logs from systemd journal journalctl -u fmshelper -n 100 --no-pager
External authentication: Active Directory and OAuth with FileMaker ServerAdvanced Admin API: automating FileMaker Server deployments
Sign in to track your progress and pick up where you left off.
Sign in to FM Dojo