Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Timestamp Server 2.3.1: Updated from 2.3.0 to 2.3.1

This article describes how to upgrade Nexus Timestamp Server both on Windows and on Linux.

Upgrade from Nexus Timestamp Server 2.2.1 to 2.3.

...

1

Update libraries and files

...

  1. Run the file nexus-timestamp-installer-2.3.01.jar and follow the instructions.

  2. During the upgrade:

    1. On Windows
      The installer will automatically detect an existing Nexus Timestamp Server installation from the Windows registry and upgrades your Nexus Timestamp Server files and libraries located in the <install> directory (default C:\Program Files\Nexus\Timestamp Server).

    2. On Linux
      The installer will only detect an existing Nexus Timestamp Server installation if the selected install path already contains an existing Nexus Timestamp Server installation. If detected, the installer will upgrade the files and libraries located in the <install> directory (default /usr/local/timestamp-server).

      1. Remove the timestamp-server service from /etc/init.d/:
        chkconfig --del timestamp-server
        rm /etc/init.d/timestamp-server
        systemctl daemon-reload

      2. Install timestamp-server in systemd as follows:
        sh <timestamp-server-install-dir>/bin/setup_services.sh install timestamp-server <youruser> <yourgroup>

      3. Run the following command to start the service:
        systemctl start timestamp-server

...