Skip to content

Latest commit

 

History

History
82 lines (48 loc) · 1.38 KB

run.rst

File metadata and controls

82 lines (48 loc) · 1.38 KB
Start/Stop Server
Start Server

Using ZIP package

For Windows environment, double-click the fess.bat file in the bin folder to start Fess. For Unix environments, run fess to start Fess.

$ ./bin/fess

Using RPM/DEB package(chkconfig) ----------------------------

Start elasticsearch before ,

$ sudo service elasticsearch start

and then start service.

$ sudo service fess start

Using RPM/DEB package(systemd) --------------------------

Start elasticsearch before ,

$ sudo systemctl start elasticsearch.service

and then start service.

$ sudo systemctl start fess.service

Access To Browser UI ======

is available at http://localhost:8080/.

Administration UI is http://localhost:8080/admin/. The default administrator account is admin/admin as username/password. In User page of administration UI, you can change the password.

Stop Server ============

Using ZIP package

To stop server, kill the process of .

Using RPM/DEB package(chkconfig) ----------------------------

To stop service, run the following command.

$ sudo service fess stop

Using RPM/DEB package(systemd) --------------------------

To stop service, run the following command.

$ sudo systemctl stop fess.service