This page describes the installation procedure for Fess on Windows environments. It covers the installation method using ZIP packages.
Warning
Running with the embedded OpenSearch is not recommended for production environments. Always set up an external OpenSearch server.
Prerequisites
System requirements described in System Requirements are met
Java 21 is installed
OpenSearch 3.7.0 is available (or new installation)
Windows environment variable
JAVA_HOMEis configured appropriately
Verify Java Installation
Open Command Prompt or PowerShell and verify the Java version with the following command.
For Command Prompt:
For PowerShell:
Verify that Java 21 or later is displayed.
Environment Variable Configuration
Set
JAVA_HOMEEnvironment VariableSet the directory where Java is installed as
JAVA_HOME.Example:
Add to
PATHEnvironment VariableAdd
%JAVA_HOME%\binto thePATHenvironment variable.
Tip
How to configure environment variables:
Open “Settings” from the Start menu
Click “System” → “About” → “Advanced system settings”
Click the “Environment Variables” button
Configure in “System variables” or “User variables”
Step 1: Install OpenSearch
Download OpenSearch
Download the ZIP package for Windows from Download OpenSearch.
Extract the downloaded ZIP file to any directory.
Example:
Note
It is recommended to select a directory that does not contain Japanese characters or spaces in the path.
Install OpenSearch Plugins
Open Command Prompt with administrator privileges and execute the following commands.
Important
Plugin versions must match the OpenSearch version. In the example above, all are specified as 3.7.0.
Configure OpenSearch
Open config\opensearch.yml with a text editor and add the following settings.
Warning
Important Security Notice
Use plugins.security.disabled: true only in development or test environments. In production environments, enable the OpenSearch security plugin and configure appropriate authentication and authorization. For details, refer to Security Configuration.
Note
On Windows, use / instead of \ for path separators. Write C:/opensearch-3.7.0/data/config/ instead of C:\opensearch-3.7.0\data\config\.
Tip
Other recommended settings:
Tip
The OpenSearch heap size is configured via -Xms / -Xmx in config\jvm.options. It is recommended to set both -Xms and -Xmx to the same value, targeting no more than half of available physical memory and less than 32 GB.
Step 2: Install Fess
Download Fess
Download the ZIP package for Windows from the download site.
Extract the downloaded ZIP file to any directory.
Example:
Note
It is recommended to select a directory that does not contain Japanese characters or spaces in the path.
Configure Fess
Open bin\fess.in.bat with a text editor. Near the end of this file, the settings for connecting to an external OpenSearch cluster are already present as commented-out lines.
Before (default state):
Remove the leading REM `` from the bottom two lines to uncomment them, and change the value of ``fess.dictionary.path to the configuration synchronization path for OpenSearch.
After:
Note
Set
fess.dictionary.pathto the same path specified forconfigsync.config_pathin OpenSearch’sopensearch.yml.If OpenSearch is running on a different host, change the hostname or IP address in
fess.search_engine.http_addressto the appropriate value.Use
/for path separators.Do not add new
set FESS_JAVA_OPTS=...lines; instead, uncomment and edit the existing commented lines. Specifying the same option more than once may cause unexpected behavior.
Tip
To change the Fess heap size, edit FESS_MIN_MEM (default: 256m) and FESS_MAX_MEM (default: 1g) in bin\fess.in.bat, or set the FESS_HEAP_SIZE environment variable.
Verify Installation
Verify that the configuration files have been edited correctly.
In Command Prompt:
Step 3: Startup
For startup procedures, refer to Startup, Shutdown, and Initial Setup.
Register as Windows Service (Optional)
By registering Fess as a Windows service, you can configure it to start automatically on system startup.
Fess ships with bin\service.bat for registering it as a Windows service. This script uses Apache Commons Daemon (procrun), so no third-party tools such as NSSM are required.
Note
Before running service.bat, verify that the JAVA_HOME environment variable is configured correctly.
Register Fess Service
Open Command Prompt with administrator privileges and execute the following commands.
Register the service:
By default, the service is registered with the ID
fess-service-x64on 64-bit systems andfess-service-x86on 32-bit systems. To specify a service ID explicitly, pass it as an argument:bin\service.bat install <ServiceID>.Start and stop the service:
View and change service settings (GUI):
Remove the service:
Note
service.batinternally loadsbin\fess.in.bat, so the external OpenSearch connection settings configured in the “Configure Fess” section are also applied to the service.The default startup type is “Manual”. To start automatically at system boot, either set the environment variable
FESS_START_TYPEtoautobefore registering the service, or change the startup type to “Automatic” in the Services management tool (services.msc) after registration.service.batregisters only the Fess service. To register OpenSearch as a service, refer to the procedure provided by OpenSearch.
Firewall Configuration
Open the necessary ports in Windows Defender Firewall.
Open “Control Panel” → “Windows Defender Firewall” → “Advanced settings”
Create a new rule in “Inbound Rules”
Rule type: Port
Protocol and port: TCP, 8080
Action: Allow the connection
Name: Fess Web Interface
Or execute in PowerShell:
Troubleshooting
Port Conflict
If port 8080 or 9200 is already in use, you can check with the following command:
Change the conflicting port number or stop the conflicting process.
Path Length Limitation
Windows has a path length limitation. It is recommended to install in a path as short as possible.
Example:
Java Not Recognized
If the java -version command displays an error:
Verify that the
JAVA_HOMEenvironment variable is configured correctlyVerify that
%JAVA_HOME%\binis included in thePATHenvironment variableRestart Command Prompt to reflect the settings
Next Steps
After installation is complete, refer to the following documentation:
Startup, Shutdown, and Initial Setup - Starting Fess and initial setup
Security Configuration - Security configuration for production environments
Troubleshooting - Troubleshooting
Frequently Asked Questions
Q: Is operation on Windows Server recommended?
A: Yes, operation on Windows Server is possible. When operating on Windows Server, register as a Windows service and configure appropriate monitoring.
Q: What is the difference between 64-bit and 32-bit versions?
A: Fess and OpenSearch support only the 64-bit version. They will not run on 32-bit Windows.
Q: How to handle paths containing non-ASCII characters?
A: Install in a path that does not contain non-ASCII characters or spaces whenever possible. If you must use a non-ASCII path, you need to properly escape the path in configuration files.