Author: sletellier Date: 2011-11-22 12:32:34 +0100 (Tue, 22 Nov 2011) New Revision: 106 Url: http://forge.codelutin.com/repositories/revision/echobase/106 Log: - Update server install documentation Added: trunk/src/site/resources/ trunk/src/site/resources/echobase.properties trunk/src/site/rst/install.rst trunk/src/site/rst/todo.rst Removed: trunk/src/site/rst/Todo.rst Modified: trunk/src/site/rst/index.rst trunk/src/site/site_fr.xml Added: trunk/src/site/resources/echobase.properties =================================================================== --- trunk/src/site/resources/echobase.properties (rev 0) +++ trunk/src/site/resources/echobase.properties 2011-11-22 11:32:34 UTC (rev 106) @@ -0,0 +1,28 @@ +### +# #%L +# EchoBase +# +# $Id$ +# $HeadURL$ +# %% +# Copyright (C) 2011 Ifremer, Codelutin +# %% +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# #L% +### +hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.connection.driver_class=org.postgresql.Driver +hibernate.connection.url=jdbc:postgresql://localhost/echobase +hibernate.connection.username=echobase +hibernate.connection.password=echobase Deleted: trunk/src/site/rst/Todo.rst =================================================================== --- trunk/src/site/rst/Todo.rst 2011-11-22 09:46:56 UTC (rev 105) +++ trunk/src/site/rst/Todo.rst 2011-11-22 11:32:34 UTC (rev 106) @@ -1,23 +0,0 @@ -.. - -.. * #%L -.. * EchoBase -.. * -.. * $Id$ -.. * $HeadURL$ -.. * %% -.. * Copyright (C) 2011 Ifremer, Codelutin -.. * %% -.. * This program is free software: you can redistribute it and/or modify -.. * it under the terms of the GNU Affero General Public License as published by -.. * the Free Software Foundation, either version 3 of the License, or -.. * (at your option) any later version. -.. * -.. * This program is distributed in the hope that it will be useful, -.. * but WITHOUT ANY WARRANTY; without even the implied warranty of -.. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -.. * GNU General Public License for more details. -.. * -.. * You should have received a copy of the GNU Affero General Public License -.. * along with this program. If not, see <http://www.gnu.org/licenses/>. -.. * #L% -.. - Modified: trunk/src/site/rst/index.rst =================================================================== --- trunk/src/site/rst/index.rst 2011-11-22 09:46:56 UTC (rev 105) +++ trunk/src/site/rst/index.rst 2011-11-22 11:32:34 UTC (rev 106) @@ -21,11 +21,11 @@ .. * along with this program. If not, see <http://www.gnu.org/licenses/>. .. * #L% .. - -== -Baracouda -== +======== +Echobase +======== -:Author: Tony Chemit <chemit@codelutin.com> +:Authors: Tony Chemit <chemit@codelutin.com>, Letellier Sylvain <letellier@codelutin.com> .. contents:: Table des matières :depth: 2 @@ -34,7 +34,6 @@ :start: 1 :depth: 2 - Présentation ------------ @@ -43,4 +42,4 @@ Les documents ------------- -TODO \ No newline at end of file +TODO Added: trunk/src/site/rst/install.rst =================================================================== --- trunk/src/site/rst/install.rst (rev 0) +++ trunk/src/site/rst/install.rst 2011-11-22 11:32:34 UTC (rev 106) @@ -0,0 +1,74 @@ +.. - +.. * #%L +.. * EchoBase +.. * +.. * $Id$ +.. * $HeadURL$ +.. * %% +.. * Copyright (C) 2011 Ifremer, Codelutin +.. * %% +.. * This program is free software: you can redistribute it and/or modify +.. * it under the terms of the GNU Affero General Public License as published by +.. * the Free Software Foundation, either version 3 of the License, or +.. * (at your option) any later version. +.. * +.. * This program is distributed in the hope that it will be useful, +.. * but WITHOUT ANY WARRANTY; without even the implied warranty of +.. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.. * GNU General Public License for more details. +.. * +.. * You should have received a copy of the GNU Affero General Public License +.. * along with this program. If not, see <http://www.gnu.org/licenses/>. +.. * #L% +.. - +======== +Echobase +======== + +:Authors: Tony Chemit <chemit@codelutin.com>, Letellier Sylvain <letellier@codelutin.com> + +.. contents:: Table des matières + :depth: 2 + +.. sectnum:: + :start: 1 + :depth: 2 + +Première utilisation +-------------------- + +Un utilisateur par défaut est crée si la base est vide (première utilisation):: + + login : admin + mot de passe : admin + +Pour des raison de sécurité, il est conseillé de créer un nouvelle admin via l'interface de gestion des utilisateurs. + +Configuration d'Echobase +------------------------ + +Il faut éditer le fichier + +Voici les configurations par défaut:: + + data.directory=/var/local/echobase # Repertoire de l'application + war.directory=${data.directory}/war # Répertoire où est stoqué le war + war.location=${war.directory}/echobase-ui-${project.version}.war # Chemin complêt d'accès au war + +Vous pouvez surcharger toute les propriétés ci-dessus, dans la plupart des cas, seul la modification de data.directory est nécessaire. +Pour ce faire, il suffit de créer le fichier /etc/echobase.properties et d'y ajouter la ligne ci-dessus modifiée. + +Installation Postgres +--------------------- + +Création de l'utilisateur Postgres:: + + createuser -P echobase + +Création de la base de donnée "echobase":: + + createdb -E utf8 echobase -O echobase + +Il faut positionner le fichier de configuration echobase.properties_ dans /etc et remplacer le mot de passe (hibernate.connection.password) par celui rentré lors de la création de l'utilisateur Postgres. + +.. _echobase.properties: echobase.properties \ No newline at end of file Copied: trunk/src/site/rst/todo.rst (from rev 104, trunk/src/site/rst/Todo.rst) =================================================================== --- trunk/src/site/rst/todo.rst (rev 0) +++ trunk/src/site/rst/todo.rst 2011-11-22 11:32:34 UTC (rev 106) @@ -0,0 +1,40 @@ +.. - +.. * #%L +.. * EchoBase +.. * +.. * $Id$ +.. * $HeadURL$ +.. * %% +.. * Copyright (C) 2011 Ifremer, Codelutin +.. * %% +.. * This program is free software: you can redistribute it and/or modify +.. * it under the terms of the GNU Affero General Public License as published by +.. * the Free Software Foundation, either version 3 of the License, or +.. * (at your option) any later version. +.. * +.. * This program is distributed in the hope that it will be useful, +.. * but WITHOUT ANY WARRANTY; without even the implied warranty of +.. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.. * GNU General Public License for more details. +.. * +.. * You should have received a copy of the GNU Affero General Public License +.. * along with this program. If not, see <http://www.gnu.org/licenses/>. +.. * #L% +.. - +======== +Echobase +======== + +:Authors: Tony Chemit <chemit@codelutin.com>, Letellier Sylvain <letellier@codelutin.com> + +.. contents:: Table des matières + :depth: 2 + +.. sectnum:: + :start: 1 + :depth: 2 + +TODO +==== + +- Completer la documentation \ No newline at end of file Property changes on: trunk/src/site/rst/todo.rst ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Modified: trunk/src/site/site_fr.xml =================================================================== --- trunk/src/site/site_fr.xml 2011-11-22 09:46:56 UTC (rev 105) +++ trunk/src/site/site_fr.xml 2011-11-22 11:32:34 UTC (rev 106) @@ -23,8 +23,6 @@ #L% --> - - <project name="${project.name}"> <poweredBy> @@ -56,17 +54,19 @@ <breadcrumbs> <item name="${project.name}" - href="http://maven-site.forge.codelutin.com/baracouda/index.html"/> + href="http://maven-site.forge.codelutin.com/echobase/index.html"/> </breadcrumbs> <menu name="Utilisateur"> <item name="Accueil" href="index.html"/> <item name="Installation" href="install.html"/> <item name="Téléchargement" - href="http://forge.codelutin.com/projects/baracouda/files"/> + href="http://forge.codelutin.com/projects/echobase/files"/> <item name="Roadmap" - href="http://forge.codelutin.com/projects/baracouda/roadmap"/> - <item name="Historique des versions" href="changes-report.html"/> + href="http://forge.codelutin.com/projects/echobase/roadmap"/> + + <!-- TODO --> + <!--<item name="Historique des versions" href="changes-report.html"/>--> </menu> <!--menu name="Modélisation">
participants (1)
-
sletellier@users.forge.codelutin.com