Follow these steps to update your Innoslate Enterprise environment to v4.11.
To update your Innoslate Enterprise installation, the user performing the update must have Administrator privileges on the machine where Innoslate is installed. Follow the steps below to ensure a successful update process.
Important Notes:
- If you’re updating from the v4.8.1.1 installer, please see the Apache update notes below.
- If your instance is configured for AI, please refer to the updated configuration notes provided below. It is essential to implement these updates after the installation process to guarantee optimal integration with AI functionalities.
- If you are skipping versions (e.g., updating from version 4.5 or earlier to 4.11.x.x), please contact Support before proceeding, as additional steps are required.
Update Instructions
- Download the latest version of the updater here: Innoslate 4.11 | Updater.
- Once downloaded, right-click the .exe file and select "Run as Administrator" to open it.
- If Microsoft Windows Defender SmartScreen blocks the file, click "More Info".
- The window will update. Click "Run Anyway" to proceed.
- If Windows User Account Control (UAC) prompts you to allow changes to your device, click "Yes".
- The Innoslate updater will launch with a welcome page. Click "Next" to continue.
- Review and accept the license agreement, then click "Next".
- Specify the Destination Folder where the updater will be installed, then click "Install" to begin the installation.
- The updater will install the necessary files.
- Once complete, the updater will display a confirmation message and offer to launch Innoslate in your browser. Click "Finish".
- After launching, verify the update by checking the version number on the login page. It’s displayed in the bottom-right corner.
Configuration Notes
Updating from v4.8.1.1
- Locate the service.bat file at: C:\Innoslate4\apache-tomcat\bin\service.bat
- Near the bottom of the file, find these lines:
if "%JvmMs%" == "" set JvmMs=128 if "%JvmMx%" == "" set JvmMx=256
if "%JvmMs%" == "" set JvmMs=4098 if "%JvmMx%" == "" set JvmMx=4098
- Save the file.
- Create a new file named update_innoslate_service.cmd in the Utilities folder (C:\Innoslate4\utilities) with the following content:
taskkill /f /fi "SERVICES eq Innoslate4"
sc delete Innoslate4
..\apache-tomcat\bin\service.bat install Innoslate4
sc config Innoslate4 start=auto
5. Save the .cmd file.
6. Open Command Prompt as an Administrator (right-click and select "Run as Administrator").
7. Run the update_innoslate_service.cmd file and restart the Innoslate service.
For larger Innoslate Enterprise systems, we recommend configuring memory between 8000–16000 (or higher), with 4098 as the minimum allocation.
Updating AI Settings
As part of the AI enhancements introduced in version 4.11, it is necessary to update the AI configuration in your settings.properties file. If you are upgrading from versions 4.9 or 4.10 and already have an existing AI configuration, please make sure to incorporate the following additions for the default AI settings.
#Pre 4.11 AI Integration Settings
OPEN_AI_API_KEY = sk-password
#If using an organization with your OPEN AI account, your organization name will be entered here.
OPEN_AI_ORGANIZATION = <ORG KEY>
#Update for 4.11 to configure default settings
DEFAULT_CHAT_AI_API_KEY=sk-code
DEFAULT_CHAT_AI_SECONDARY=org-code
DEFAULT_CHAT_AI_MODEL= gpt-4o-mini
DEFAULT_CHAT_AI_PROVIDER= OPENAI
DEFAULT_CHAT_AI_URL= https://api.openai.com/v1/
#DEFAULT_CHAT_AI_URL_EMBEDDING = //Only need for Azure
DEFAULT_IMAGE_AI_API_KEY=sk-code
DEFAULT_IMAGE_AI_SECONDARY=org-code
DEFAULT_IMAGE_AI_MODEL= dall-e-3
DEFAULT_IMAGE_AI_PROVIDER= OPENAI
DEFAULT_IMAGE_AI_URL= https://api.openai.com/v1/
DEFAULT_CHAT_AI_URL_EMBEDDING = https://something.openai.azure.com/openai/deployments/text-embedding-3-small/embeddings?api-version=2023-05-15
Default Chat AI Settings
DEFAULT_CHAT_AI_API_KEY=sk-code
Default AI Chat Service Provider AI Key
DEFAULT_CHAT_AI_SECONDARY=org-code
For OpenAI accounts requiring organization references for their API key.
DEFAULT_CHAT_AI_MODEL= gpt-4o-mini
Default Chat AI Model from AI Provider.
DEFAULT_CHAT_AI_PROVIDER= OPENAI
Default Chat AI Service Provider
DEFAULT_CHAT_AI_URL= https://api.openai.com/v1/
Default AI Chat Service Provider URL
DEFAULT_CHAT_AI_URL_EMBEDDING = https://something.openai.azure.com/openai/deployments/text-embedding-3-small/embeddings?api-version=2023-05-15
Default AI Chat URL Embedding (for Azure AI only)
Default Image AI Settings
DEFAULT_IMAGE_AI_API_KEY=sk-code
Default AI Image Provider AI Key
DEFAULT_IMAGE_AI_SECONDARY=org-code
For OpenAI accounts requiring organization references for their API key.
DEFAULT_IMAGE_AI_MODEL= dall-e-3
Default Image AI Model from AI Provider.
DEFAULT_IMAGE_AI_PROVIDER= OPENAI
Default Image AI Service Provider
DEFAULT_IMAGE_AI_URL= https://api.openai.com/v1/
Default AI Image Service Provider URL