Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Copy Canopy license file to /etc/canopy/license
  2. apt install -f ./libtidy5_5.2.0-2_amd64.deb ./canopy_3.1.0_amd64.deb
  3. Setup a Database and Reverse proxy via steps in Configuration section configuration section.

Canopy Document Server

As root:

...

  1. Install libtidy5 yum install ./libtidy5-5.2.0-2.3.x86_64.rpm
  2. Install rabbitmq-server package:
    1. On Centos you can install the epel-release package and the Canopy installation will source the correct depedencies.
    2. On RHEL/OEL you can either install epel-release or install rabbitmq-server from some other source.
  3. Copy Canopy license file to /etc/canopy/license
  4. Install Canopy yum install ./canopy-3.0.0-1.el7.centos.x86_64.rpm
  5. Setup a Database and Reverse proxy via steps in Configuration Section configuration section.

Canopy Document Server

  1. Install Oracle Java 8.
  2. Install Canopy docserver yum install ./canopy-docserver-0.0.12-1.el7.centos.x86_64.rpm
  3. systemctl restart canopy-docserver

...

Anchor
configuration
configuration
Configuration

As root:

  1. canopy-setup postgresql (Oracle users should see the Oracle DB Configuration section)

  2. canopy-setup nginx (Optional if you intend to configure your own reverse proxy. Apache users see Apache Configuration section)
    1. (RHEL) (Optional) Configure firewall access, the following commands would open up port 80/443:

      firewall-cmd --zone=public --add-service=https --permanent

      firewall-cmd --zone=public --add-service=https
      firewall-cmd --zone=public --add-service=http --permanent
      firewall-cmd --zone=public --add-service=http
    2. (RHEL) (Optional) Enable the SELinux httpd_can_network_connect option so that the reverse proxy can connect to Canopy
      setsebool -P httpd_can_network_connect 1
  3. canopy-manage setupdb --prod
  4. canopy-manage createsuperuser (Skip this step if you are going to import Canopy 2 data)
  5. Configure systemd persistent logging (See Logging configuration section)

...