{"id":18298366,"url":"https://github.com/fusionauth/homebrew-fusionauth","last_synced_at":"2025-10-15T03:58:19.220Z","repository":{"id":39033181,"uuid":"151867968","full_name":"FusionAuth/homebrew-fusionauth","owner":"FusionAuth","description":"macOS Homebrew tap for FusionAuth","archived":false,"fork":false,"pushed_at":"2024-09-12T22:52:45.000Z","size":161,"stargazers_count":2,"open_issues_count":2,"forks_count":3,"subscribers_count":11,"default_branch":"main","last_synced_at":"2024-09-13T11:20:07.809Z","etag":null,"topics":["fusionauth","homebrew","homebrew-tap","macos"],"latest_commit_sha":null,"homepage":"https://fusionauth.io","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FusionAuth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-06T18:07:42.000Z","updated_at":"2024-09-12T22:52:49.000Z","dependencies_parsed_at":"2023-10-11T03:19:07.609Z","dependency_job_id":"a00d6541-1001-4d99-9af9-8c2d7990364a","html_url":"https://github.com/FusionAuth/homebrew-fusionauth","commit_stats":null,"previous_names":[],"tags_count":141,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Fhomebrew-fusionauth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Fhomebrew-fusionauth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Fhomebrew-fusionauth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Fhomebrew-fusionauth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FusionAuth","download_url":"https://codeload.github.com/FusionAuth/homebrew-fusionauth/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223192694,"owners_count":17103564,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fusionauth","homebrew","homebrew-tap","macos"],"created_at":"2024-11-05T15:05:53.119Z","updated_at":"2025-10-15T03:58:19.186Z","avatar_url":"https://github.com/FusionAuth.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# homebrew-fusionauth\nmacOS [Homebrew](https://brew.sh/) tap for FusionAuth\n\nEasy installation of FusionAuth via Homebrew.\n\nSimply install and start the services. Then navigate to http://localhost:9011 and follow the setup prompts.\n\n# Installation\n\nThe following examples assume you will be installing `fusionauth-app`. And `postgresql` as well as `opensearch` as prerequisites.\n\n## Prerequisites\n\n\u003c!--\ntag::forDocSitePrerequisites[]\n--\u003e\nFusionAuth requires a database and a search engine. The recommended database is PostgreSQL, and the recommended search engine is OpenSearch.\n\n\u003e [!IMPORTANT]\n\u003e fusinauth-search was announced end of life in [FusionAuth Version 1.48.0](https://fusionauth.io/docs/release-notes/#version-1-48-0) and is no longer available for homebrew. It is recommended to use OpenSearch instead.\n\n### Postgres\n\nIf you don't have PostgreSQL installed, you can install it using Homebrew:\n\n```bash\n# Install PostgreSQL 16\nbrew install postgresql@16\n# Check the service status\nbrew services info postgresql@16\n# Start PostgreSQL 16 service\nbrew services start postgresql@16\n```\n\nTo run the FusionAuth installation in silent mode, you need to create a PostgreSQL user and database for FusionAuth. You can do this with the following commands:\n\n```bash\n# Ensure the PostgreSQL binaries are in your PATH\nexport PATH=\"$PATH:$(brew --prefix postgresql@16)/bin\"\n# Create the fusionauth user fusionauth with password fusionauth\npsql --command=\"CREATE USER fusionauth PASSWORD 'fusionauth'\" --command=\"\\du\" postgres\n# Create the fusionauth database owned by the fusionauth user\ncreatedb --owner=fusionauth fusionauth\n```\n\n### OpenSearch\n\nIf you don't have OpenSearch installed, you can install it using Homebrew:\n\n```bash\nbrew install opensearch\nbrew services info opensearch\nbrew services start opensearch\n```\n\u003c!--\ntag::forDocSitePrerequisites[]\n--\u003e\n\n## Install FusionAuth\n\n\u003c!--\ntag::forDocSiteInstall[]\n--\u003e\nTo install FusionAuth using Homebrew, you can use the following commands:\n\n```bash\nbrew tap fusionauth/fusionauth\nbrew install fusionauth-app\n```\n\u003c!--\nend::forDocSiteInstall[]\n--\u003e\n\n### Silent Configuration\n\n\u003c!--\ntag::forDocSiteConfiguration[]\n--\u003e\nAfter installing FusionAuth, you can configure it before starting the service to run a silent configuration. The configuration file is located at `$(brew --prefix)/etc/fusionauth/fusionauth.properties`.\n\n```bash\n# Add linebreak to the end of the fusionauth.properties file\necho \"\" \u003e\u003e $(brew --prefix)/etc/fusionauth/fusionauth.properties\n# Add your kickstart file path\necho \"fusionauth-app.kickstart.file=/path/to/your/kickstart/kickstart.json\" \u003e\u003e $(brew --prefix)/etc/fusionauth/fusionauth.properties\n# Add the silent mode property\necho \"fusionauth-app.silent-mode=true\" \u003e\u003e $(brew --prefix)/etc/fusionauth/fusionauth.properties\n# Change the search.type=database to search.type=elasticsearch\nsed -i '' 's/search.type=database/search.type=elasticsearch/g' $(brew --prefix)/etc/fusionauth/fusionauth.properties\n# Add the open search URL\necho \"search.servers=http://localhost:9200\" \u003e\u003e $(brew --prefix)/etc/fusionauth/fusionauth.properties\n# Check the full configuration\ncat $(brew --prefix)/etc/fusionauth/fusionauth.properties\n```\n\u003c!--\nend::forDocSiteConfiguration[]\n--\u003e\n\n## Manage FusionAuth\n\n\u003c!--\ntag::forDocSiteManage[]\n--\u003e\nAfter installing and configuring FusionAuth, you can manage the service using Homebrew.\n\n### Start\n\nAfter configuring FusionAuth, you can start the service using Homebrew:\n\n```bash\nbrew services start fusionauth-app\n```\n\n### Status\n\nYou can check the status of the FusionAuth service using:\n\n```bash\nbrew services info fusionauth-app\n```\n\nAnd check the logs using:\n\n```bash\ncat $(brew --prefix)/var/log/fusionauth/fusionauth-app.log\n```\n\n### Upgrade\n\nTo upgrade FusionAuth, you can use the following command:\n\n```bash\nbrew upgrade fusionauth-app\n```\n\n### Stop\n\nTo stop the FusionAuth service, you can use:\n\n```bash\nbrew services stop fusionauth-app\n```\n\u003c!--\nend::forDocSiteManage[]\n--\u003e\n\n\n## Uninstall FusionAuth\n\n\u003c!--\ntag::forDocSiteUninstall[]\n--\u003e\nTo uninstall FusionAuth, you can use the following command:\n\n```bash\n# Stop the FusionAuth service if it is running\nbrew services stop fusionauth-app\n# Uninstall FusionAuth\nbrew uninstall fusionauth-app\n```\n\n### Remove Configuration\n\nIf you want to remove the configuration and log files as well, you can search for the files and folders in `$(brew --prefix)` and remove them manually.\n\n### Untap FusionAuth\n\n```bash\nbrew untap fusionauth/fusionauth\n```\n\u003c!--\nend::forDocSiteUninstall[]\n--\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffusionauth%2Fhomebrew-fusionauth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffusionauth%2Fhomebrew-fusionauth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffusionauth%2Fhomebrew-fusionauth/lists"}