Skip to content

[bug]: Plane Community Edition installation using setup script fails on RHEL-based x86_64 systems #9199

@patbarron

Description

@patbarron

Is there an existing issue for this?

  • I have searched the existing issues

Current behavior

When attempting to install Plane Community Edition on a Fedora 44 x86_64 system (though I imagine this would be an issue on any RHEL-based system), installation fails with an error that there are no images available for "X86_64".

The issue is caused by the fact that RHEL-based systems call this platform "x86_64" (as returned by uname -m), but the available container images are built for architecture "amd64" (which is what this architecture is called on Debian-based systems).

I have worked around the issue by editing the setup.sh script, and at line 14, changed:

CPU_ARCH=$(uname -m)

to:

CPU_ARCH=$(uname -m)
if [ $CPU_ARCH = "x86_64" ]; then
   CPU_ARCH="amd64"
fi

This allows the installation to complete normally.

I am not sure how the setup script is versioned, but the script I edited was retrieved on 2 June 2026 using curl as per the Community Edition installation instructions.

Steps to reproduce

  1. Download Plane Community Edition setup script using curl on an RHEL-based x86_64 system.
  2. Run the script
  3. Select the "Install" option
  4. Observe that it fails immediately.

Environment

Production

Browser

Google Chrome

Variant

Self-hosted

Version

v1.3.1

Metadata

Metadata

Assignees

Labels

planesync issues to Plane🐛bugSomething isn't working

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions