MusicBrainz Server: Difference between revisions

From MusicBrainz Wiki
Jump to navigationJump to search
(Remove old overver)
(Update; remove Mason and RDF reference)
Line 13: Line 13:
The MusicBrainz server is built on top of the following components:
The MusicBrainz server is built on top of the following components:
* The data is stored in a [http://www.postgresql.org/ PostgreSQL] relational database.
* The data is stored in a [http://www.postgresql.org/ PostgreSQL] relational database.
* Virtually all of the server code is written in [http://www.perl.com/ Perl 5.8].
* Virtually all of the server code is written for [http://www.perl.com/ Perl 5.8+].
* The web server is built using [http://httpd.apache.org/ Apache] and [http://perl.apache.org/ mod_perl].
* The web server is built using [http://httpd.apache.org/ Apache] and [http://perl.apache.org/ mod_perl].
* A selection of Perl modules from [http://cpan.org/ CPAN] are used; in particular the web pages are constructed using [http://www.masonhq.com/ Mason].
* A selection of Perl modules from [http://cpan.org/ CPAN] are used; in particular the web pages are constructed using [http://www.catalystframework.org/ Catalyst] and [http://template-toolkit.org/ Template Toolkit].
* The [http://sourceforge.net/projects/expat Expat XML parser library] is used to handle the RDF web services.


==Learn More==
==Learn More==

Revision as of 14:24, 20 November 2011

Products > MusicBrainz Server

The MusicBrainz Server is an open source GPL licensed software application that is written in Perl. The MusicBrainz Server provides the primary interface to the MusicBrainz Database by providing a website for users to browse and edit the data on, and a web service to power client applications like MusicBrainz Picard. The server can be accessed at http://musicbrainz.org/ or alternatively you may setup and run your own server.

If you are looking for help in understanding how MusicBrainz works the beginners guide and FAQs will provide a more thorough overview.

Download

download.gif Download and setup the server.

Required Software

The MusicBrainz server is built on top of the following components:

Learn More