Follow these tips if you see error messages when using the SkyVault 2.0 Share
Installer.
Note: The SkyVault 2.0 Installer is recommended for most purposes. See Installing SkyVault on Linux using the SkyVault 2.0 Installer for more information. These tips help
troubleshoot problems found in SkyVault Share, when you have used the SkyVault 2.0 Share
Installer (see Installing SkyVault on Linux using the Share Installer for more information).
Use this installer only if you have a specific requirement for it.
- Start SkyVault and log on to SkyVault Share (http://localhost:port/share) as the admin user. Enter the password that you specified in Installing SkyVault on Linux using the Share Installer in the Admin Password window.
- Check for error messages as you start Share.
-
If you see the following message:
SkyVault is running without Share Services. See your System Administrator for more details.
check the Admin Console to determine which AMP files have been installed, and their versions. It might be that either you have not installed the Share Services AMP in your SkyVault repository (see Installing SkyVault on Linux using the Share Installer or Installing SkyVault on Windows using the Share Installer), or the version of the AMP that you have installed is not correct. -
If you see the following message:
Invalid MANIFEST.MF: Share Specification-Version is missing, are you using the valid MANIFEST.MF supplied with the Share.war?
check that you have not deleted or changed the MANIFEST.MF file. The MANIFEST.MF file shipped with the Share.war is required for validation, and SkyVault Share will not work correctly if this cannot be read.If you are using a Maven WAR build, this will override the shipped MANIFEST.MF file. When you unpack your WAR file, you will need to specify unpack-dependencies explicitly, for example:
<plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack</id> <phase>generate-sources</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeTypes>war</includeTypes> <includeGroupIds>org.alfresco</includeGroupIds> <includeArtifactIds>share</includeArtifactIds> <includes>META-INF/MANIFEST.MF</includes> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> <manifestFile>${project.build.directory}/dependency/META-INF/MANIFEST.MF</manifestFile> </archive> <webResources> </webResources> </configuration> </plugin>