Setting up the Unity Licensing Server (quick start)
Follow this quick start guide for simple setups that require minimal configuration.
Read time 3 minutesLast updated 6 months ago
You can also read this guide as an overview.
If you have a complex setup, or if you require comprehensive instructions, refer to Server setup (advanced).
Before you start
1: Download the server setup
After the organization owner receives a welcome email and claims the license, go to id.unity.com.
Sign into your existing account (or create a Unity ID), then select Organizations from the left panel. Select your organization (or create a new one).
Select Subscriptions & Services in the left panel and select the new subscription that uses floating licensing.
Select Configure License Server > Manage seats to add seats to the subscription.
Return to the License servers page, select Download new server, select the operating system for your dedicated server, and download the file.
Unity.Licensing.Server.*.zip2: Extract the server files
Extract the contents of the archive to a directory on your dedicated server. This directory will be the program files directory for your licensing server.
Unity.Licensing.Server.*.zipPlatform | Suggested server path |
|---|---|
| Windows | |
| Linux | |
3: Configure the server
To configure the licensing server, navigate to the directory where you extracted the server files in the previous step.
Run the command that matches your operating system and follow the prompts to complete the configuration:
- Windows: Open the Windows PowerShell with elevated privileges (Run as administrator) and run
.\Unity.Licensing.Server.exe setup - Linux: Open the Linux Terminal and run
sudo -H ./Unity.Licensing.Server setup
The setup process includes steps to configure:
- The server name
- HTTPS/SSL (optional)
- Network interface and port
- Administrator access
The server configuration generates two files in the current working directory: and .
services-config.jsonserver-registration-request.xml4: Register the server
The file contains machine binding information. Register this server in the Unity ID portal under Organizations > (Organization Name) > Subscriptions & Services > (Floating Subscription) > Configure License Server. Follow the instructions in the portal to assign seats and download the license archive.
server-registration-request.xml5: Import the license archive
Download the license archive as a file from the Unity ID portal page.
.zipClose any Linux Terminal or Windows PowerShell windows, then open a new window. This ensures that changes to your user or group permission that the command made are applied in the new terminal session.
setupGo to the directory where you extracted the server files.
Without unzipping the license archive, run the following command from the console or terminal to import the files:
Platform | Import command |
|---|---|
| Windows | |
| Linux | |
This step completes the configuration of the licensing server. Continue to the next steps to run and test the server.
6: Test the licensing server
To launch the server, go to the directory where you extracted the server files and run the following command:
Platform | Server launch command |
|---|---|
| Windows | |
| Linux | |
Example output:
Server Version: 1.6.0.19b28b6Successfully started the licensing server: http://10.211.55.4:8080/v1/admin/statusPress Ctrl+C to shut down...
To test if the server is running, access the administrator API by copying the URL from the previous output to the address bar in the web browser of your choice.
After accessing an endpoint, indicates a successful configuration. Your licensing server is ready to use.
"serverStatus": "Healthy"7: Create a service to run the licensing server
To make the licensing server run as a service and automatically launch at startup, go to the directory where you extracted the server files. Run the command that matches your operating system and follow the on-screen instructions:
- Windows: Open the Windows PowerShell with elevated privileges (Run as administrator) and run
.\Unity.Licensing.Server.exe create-service - Linux: Open the Linux Terminal and run
sudo -H ./Unity.Licensing.Server create-service
This command creates and starts the service.
8: Configure the client computers
The file configures the Unity Editor to communicate with the floating licensing server. (This file was automatically generated in Step 3.)
services-config.jsonCopy to the following path on all client computers:
services-config.jsonPlatform | Services Configuration Path |
|---|---|
| Windows | |
| macOS | |
| Linux | |
To view a sample file, refer to Copying the configuration file.
services-config.jsonWith this file, the Unity Editor acquires a new license when launched and returns the license when closed.