CollectionSpace Release Documentation
Web-based, open-source, Collections Management Software for museums and more ...
CollectionSpace is a web-based, /wiki/spaces/collectionspace/pages/666275129 collections management and information system for museums and other collecting institutions. You can use it to manage your museum's cataloging, acquisitions, loans, and many other activities.
Documentation
If you're evaluating or implementing CollectionSpace, you can find readily navigable links to the currently available documentation in the left sidebar, as well as top-level links below.
Tip: The left sidebar makes finding documentation easier
To view the Table of Contents links in the left sidebar, click this icon in the upper-right area of this page:
Ā
Ā
Using CollectionSpace
If you are new to CollectionSpace, you can get a good sense of how it works from the demo available on the CollectionSpace website: http://demo.collectionspace.org.Ā TheĀ User ManualĀ describes how to use CollectionSpace to manage your collections. This manual also provides a useful overview of CollectionSpace's basic feature set.
Installing CollectionSpace
CollectionSpace is installed on aĀ serverĀ and accessed using aĀ web browser. No software needs to be installed on your users' computers.
We recommend installing CollectionSpace on a Linux Ubuntu 16.04 server. Ā You can find installation instructions here:Ā Installing CollectionSpace.
/wiki/spaces/collectionspace/pages/666272695
Excerpt lookup error: excerpt "notes-for-4.5" was not found on page "Release 4.5" (with ID 666272695) in space "collectionspace".
If you're experiencing issues please see our Troubleshooting Guide.
Upgrading from version v4.1 or earlier to v4.5 or later
You'll need to upgrade the existing CollectionSpace Tomcat 6 to the new CollectionSpace Tomcat 7: First, you'll set up the new Tomcat folder (sample instructions given here for Ubuntu 14.04): Login to your Ubuntu server using an account with CollectionSpace runs as a Tomcat 7 server application. A pre-configured version of Tomcat 7 is provided with the CollectionSpace distribution package. Start by downloading the CollectionSpace distribution package "tarball": Unpack the tarball: This will create an Next, make necessary files owned by the You can now remove the tarball: Then you will need to update any existing environment variables to reflect the path to the Tomcat 7 folder. Most likely, this will only be: but, depending on how you set your variables, may also include: You'll need to change the name of one column in the database: Starting with version 4.2, due to an upgrade of one of its components, CollectionSpace expects that, in the (Note: if you've instance-qualified your CollectionSpace server, the name of the Rename this column in the appropriate database table: You'll need to add several new, required environment variables (three when upgrading to v4.2, four when upgrading to v4.3 or higher): CSPACE_INSTANCE_ID A string identifying a specific instance of a CollectionSpace server. It should begin with an underscore. The recommended value is simply Upgrading to Tomcat 7
sudo
privileges. Go to the directory where you want to install CollectionSpace. We recommend:cd /usr/local/share
sudo wget ftp://nightly.collectionspace.org/pub/collectionspace/releases/4.5/cspace-server-4.5.tar.gz
sudo tar -xzvof cspace-server-4.5.tar.gz
apache-tomcat-7.0.64
directory in /usr/local/share.cspace
user and executable:sudo chown -R cspace:cspace apache-tomcat-7.0.64/
sudo chmod u+x apache-tomcat-7.0.64/bin/*.sh
sudo rm cspace-server-4.5.tar.gz
CSPACE_JEESERVER_HOME
CATALINA_HOME
CATALINA_PID
Changing a database table column name
accounts_tenants
table of the cspace
database, the column formerly named TENANTS_ACCOUNTSCOMMON_CSID
will have been changed to a new name, TENANTS_ACCOUNTS_COMMON_CSID
(i.e. with an underscore added between ACCOUNTS
and COMMON
.) As a result, you'll need to rename that column in your database to reflect this changed expectation.cspace
database might include an instance ID suffix and thus its name may look something like cspace_myinstancename
. If so, be sure to substitute that name for each instance of cspace
in the instructions below.)
If you plan to continue to use your existing cspace
database after upgrading to v4.2 - and you will want to do that under nearly all circumstances - you'll need to - just once - rename that column by sending two short commands to PostgreSQL. To do so, connect to your PostgreSQL database server using either a graphical client or the command line psql
client; log in via an account with administrative privileges, such as CollectionSpace's csadmin
account or the default postgres
account (if the latter is present); and then:
Connect to the cspace
database:\c cspace
alter table accounts_tenants rename column TENANTS_ACCOUNTSCOMMON_CSID to TENANTS_ACCOUNTS_COMMON_CSID;
Adding new Environment Variables
New environment variable (CollectionSpace 4.2 and higher) Replaces earlier environment variable Purpose / notes (no previous equivalent) _default
However, if your server will be part of a configuration where two or more CollectionSpace servers will be storing their data in the same PostgreSQL database server, set this instead to a unique name for your server; e.g., _myservername
(This string will be appended to the names of certain databases and database users, to help avoid naming conflicts.)DB_HOST (no previous equivalent) The hostname or IP address for the machine/server running the PostgreSQL database server. E.g., localhost
, 10.10.2.158
, etc.DB_PORT (no previous equivalent) The port number that the PostgreSQL database server is listening on. This is usually 5432
.JEE_PORT (no previous equivalent) The web port number used to access the web UI and services API. A default value of 8180
is appropriate. (This environment variable was first introduced in v4.3)
CollectionSpace System Requirements
In CollectionSpace System Requirements, you can find the system requirements for running a CollectionSpace system, as well as a list of supported web browsers for accessing your system.
Configuring CollectionSpace
If you are an implementer, consultant, or plan to host CollectionSpace, you can adapt CollectionSpace for the specific needs of your museum or client via the documentation in Configuring CollectionSpace.
The documentation inĀ Configuring CollectionSpaceĀ focuses on configuration: changing the behavior and the look and feel of the system by making changes via web-based Administration pages and by editing text files: HTML templates, CSS stylesheets, XML- and JSON-based configuration files, and properties files.
To learn about customization - extending the system's functionality by working with the system's Java and JavaScript source code or adding code of your own - please see Developing for CollectionSpace.
Maintaining CollectionSpace
Once you have your deployment up and running, you'll want to take care of it. In Maintaining CollectionSpace, you'll find both operational suggestions and troubleshooting techniques.
Upgrading CollectionSpace
If you have an older version of CollectionSpace and want to upgrade it to a newer version, Upgrading CollectionSpace provides pertinent tips.
Migrating to CollectionSpace
When you want to migrate your existing data into a CollectionSpace system, Migrating to CollectionSpace can help you do this.
Developing for CollectionSpace
If you are building or integrating applications or scripts that talk to CollectionSpace systems, or are a CollectionSpace software developer, integrator, or implementer who wishes to extend the system's capabilities by working with its source code, you can find documentation on these topics in Developing for CollectionSpace. This topic area includes details about CollectionSpace's Application Programming Interfaces (APIs).
Hosting CollectionSpace
If you're hosting multiple CollectionSpace systems, whether in-house or as a service provider, Hosting CollectionSpace can help you find resources relevant to this task.
Reference Information
Reference Information provides supporting information and requirements for CollectionSpace, and includes general documents that are referenced from across two or more of the topic areas above.
Documentation Feedback
Many documentation additions and updates are planned. Please feel free to comment on the CollectionSpace project's /wiki/spaces/collectionspace/pages/666276158 if you have suggestions for improving current documentation, or if there is documentation you would like to see in the future.