La liste d'utilisateurs n'est pas rendue car vous ne possédez pas les droits d'accès nécessaires pour afficher les profils utilisateur.
Historique de la page
Dump your 2.x database:
Procédure pour postgresql:
...
Bloc de code |
---|
pg_dump -f |
...
helpdesk2.sql |
...
helpdesk2
|
Fix the output file by commenting the fillowing lines (at the very beginning of the file):
...
Bloc de code |
---|
-- PostgreSQL database dump
-- SET client_encoding = 'latin9';
-- SET standard_conforming_strings = off;
-- SET check_function_bodies = false;
-- SET client_min_messages = warning;
-- SET escape_string_warning = off;
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
-- COMMENT ON SCHEMA public IS 'Standard public schema';
-- SET search_path = public, pg_catalog;
-- SET default_tablespace = '';
-- SET default_with_oids = true;
|
...
Create a new database:
Bloc de code |
---|
createdb --encoding=UTF-8 |
...
helpdesk3 |
...
Pas de format |
---|
hibernate.connection.driver_class=org.postgresql.Driver
hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
hibernate.connection.url=jdbc:postgresql://localhost:5432/helpdesk
hibernate.connection.username=username
hibernate.connection.password=passwd
|
...
Insert the 2.x data into the new database:
Bloc de code |
---|
> psql helpdesk3
helpdesk3=> \i helpdesk2.sql
|
Install version 3.x.
Recover your previous configuration (ant recover-config).
Edit /properties/config.properties to change your data path (and maybe the resource in <tomcat>/conf/server.xml).
Launch ant upgrade.
Vue d'ensemble
Gestion des contenus