Start/Stop fess Server
Start fess Server
Using TAR.GZ package
Before starting fess, OpenSearch must be started.
Execute the following command:
$ cd $OPENSEARCH_HOME
$ ./bin/opensearch
Next, start fess. Execute the following command:
$ cd $fess_HOME
$ ./bin/fess
Using ZIP package
Before starting fess, you need to launch OpenSearch.
To start OpenSearch on a Windows environment, double-click on opensearch.bat in the bin folder.
To start fess, double-click on fess.bat in the bin folder.
Using RPM/DEB package (chkconfig)
Before starting fess, OpenSearch must be started.
$ sudo service opensearch start
Next, start fess.
$ sudo service fess start
Using RPM/DEB package (systemd)
Before starting fess, OpenSearch must be started.
$ sudo systemctl start opensearch.service
Next, start fess.
$ sudo systemctl start fess.service
Using Docker package
Execute the following command to start OpenSearch and fess.
$ docker compose -f compose.yaml -f compose-opensearch2.yaml up -d
Access To Browser UI
fess can be accessed at http://localhost:8080/.
The management UI is located at http://localhost:8080/admin. The default admin account username/password is admin/admin. You can change the password on the user page in the management UI.
Stop fess Server
Using TAR.GZ/ZIP package
To stop the fess server, kill the fess process.
Using RPM/DEB package (chkconfig)
fess To stop the server, enter the following command:
$ sudo service fess stop
Using RPM/DEB package (systemd)
fess To stop the server, enter the following command:
$ sudo systemctl stop fess.service
Using Docker package (OpenSearch)
Stop OpenSearch and fess by running the following commands:
$ docker compose -f compose.yaml -f compose-opensearch2.yaml down