summaryrefslogtreecommitdiff
path: root/www/bricolage/pkg-message
blob: c32c4cc8d319df33c3cb1c2e801e4114eee94237 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
************************************************************
NEW INSTALL:

The Bricolage software has now been installed, but there are
number of steps remaining to make it usable.

You must: 1) Import the database
          2) Edit your apache.conf file
          3) Change the Bricolage admin user password

1) If the database for Bricolage does not already exist, you
   must create it now using %%PREFIX%%/bin/bric_pgimport.

Common Supported Options:
  -u Database user login.
  -p Database user password.
  -d Database name.
  -c Create the database first.
  -m Make a new user. Pass in the user name
     and password separated by a colon.

Example:

	%%PREFIX%%/bin/bric_pgimport -u pgsql -d bric -c -m bric:password

For additional options, see:

	%%PREFIX%%/bin/bric_pgimport --help

Edit %%PREFIX%%/bricolage/conf/bricolage.conf
to reflect the database, username and password chosen
for the bricolage database.


2) Add the below lines to %%PREFIX%%/etc/apache/httpd.conf.

	PerlPassEnv BRICOLAGE_ROOT
	PerlModule Bric::App::ApacheConfig

NOTE: Bricolage will take over the entire namespace of the
      host it is associated to within Apache. If you are 
      serving content other than Bricolage from this 
      webserver, add those lines to a Bricolage specific 
      Virtual Host.

3) The default login and password for the Bricolage web
   interface is (without quotes):

	Login:	 	"admin"
	Password:	"change me now!"

************************************************************
UPGRADE: 

If you are upgrading from one version of the www/bricolage port to
another, skip the above installation related items and instead
run the following upgrade command after making backups of
the %%PREFIX%%/bricolage path and the bric database:

  bric_upgrade [options] <Previous Bricolage Version>

Common Supported Options:
  -u Database user login.
  -p Database user password.

Example:

	%%PREFIX%%/bin/bric_upgrade -u pgsql 1.8.0 

************************************************************