Everything you need to know to get started with FreeSCIM Enterprise V3, from installation to advanced configuration.
FreeSCIM Enterprise V3 can be installed on various platforms. Choose the installation method that best fits your environment.
# Pull the latest image
docker pull freescim/enterprise:v3
# Run the container
docker run -d \
--name freescim-enterprise \
-p 8080:8080 \
-p 8443:8443 \
-e DATABASE_URL=sqlite:///data/freescim.db \
-v freescim-data:/data \
freescim/enterprise:v3
# Download the installer
wget https://releases.freescim.com/enterprise/v3/freescim-enterprise-v3.tar.gz
# Extract and install
tar -xzf freescim-enterprise-v3.tar.gz
cd freescim-enterprise-v3
./install.sh
# Start the service
systemctl start freescim-enterprise
systemctl enable freescim-enterprise
Get up and running with FreeSCIM Enterprise V3 in minutes with our quick start guide.
Open your browser and navigate to https://your-server:8443
Follow the setup wizard to configure your admin account and basic settings.
Set up your first integration with LDAP, FreeIPA, or Okta.
Verify that users are syncing correctly between your systems.
FreeSCIM Enterprise V3 provides a comprehensive REST API for programmatic access to all functionality.
https://your-server:8443/api/v1
All API requests require authentication using either API keys or OAuth 2.0 tokens.
# Using API Key
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://your-server:8443/api/v1/users
# Using OAuth 2.0
curl -H "Authorization: Bearer YOUR_OAUTH_TOKEN" \
https://your-server:8443/api/v1/users
Common issues and their solutions to help you resolve problems quickly.
Problem: Cannot connect to LDAP server
Solution: Check network connectivity, verify credentials, and ensure the LDAP server is accessible.
# Test LDAP connectivity
ldapsearch -H ldap://your-ldap-server:389 -D "cn=admin,dc=example,dc=com" -W
Problem: User synchronization is failing
Solution: Check the sync logs, verify user permissions, and ensure schema mapping is correct.
Problem: Slow response times
Solution: Check system resources, optimize database queries, and consider scaling horizontally.