Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

...

Kodeblok
title/scripts/CreateConfluenceDatabase.sql
drop database confluence;
create database confluence CHARACTER SET utf8 COLLATE utf8_bin;
grant all privileges on confluence.* to confluence@localhost identified by 'confconf';
flush privileges;
Kodeblok
 

 

Why change the server.xml and setenv.sh

Due to the fact this (problably) is a DR site, some facts can be:

  • The HW specs are lower
  • The URL (and hence Base URL) are different

So we want to change the server.xml and setenv.sh to reflect those changes, otherwise the system may never start problably.

 

Restore Confluence script

...