Writer instructions | |
---|---|
Page title | For most spaces, this page must be titled Space announcements. For spaces with localized content, this page must be titled Space announcements l10n. |
Purpose | Provide an announcement banner on every page of your space. |
Location | Move this page outside of your home branch. |
Guidelines |
Upgrade process overview
This section describes how to upgrade from version 8.0.00, 8.1.00 or 8.2.00.
To upgrade MVMA
- Stop the MVMA service.
- The upgrade preserves the following files and folders, but they should be reviewed after the installation has completed to confirm their preservation:
- etc/jetty.xml
- etc/jetty-deployer.xml
- etc/jetty-selector.xml
- etc/data.conf
- etc/known_hosts
- configuration/wrapper.conf
- configuration/services/*
- security/*
- Backup the installation directory. Zipping it and storing it somewhere safe is sufficient to backup the installation directory.
To accelerate the upgrade process, the contents of the work/ directory can be deleted prior to the upgrade installation being run.
- Start the installation process (see Performing-the-installation). The installer displays a screen that allows the user to specify where the current product is installed.
- Start the MVMA service and verify correct functionality of the product.
Preventing framing attacks ("clickjacking")
If after upgrading you re-instated etc/jetty.xml from the previous installation, make sure protection against framing attacks (so-called 'clickjacking') is still enabled by opening etc/jetty.xml and verifying the following section exists under the top-level <Configure> folder:
<!-- Rewrite handlers -->
<!-- =========================================================== -->
<New id="RewriteHandler" class="org.eclipse.jetty.rewrite.handler.RewriteHandler">
<Set name="rules">
<Array type="org.eclipse.jetty.rewrite.handler.Rule">
<Item>
<New id="header" class="org.eclipse.jetty.rewrite.handler.HeaderPatternRule">
<Set name="pattern">*.jsp</Set>
<Set name="name">X-Frame-Options</Set>
<Set name="value">DENY</Set>
</New>
</Item>
</Array>
</Set>
</New>