-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathINSTALL
72 lines (51 loc) · 2.85 KB
/
INSTALL
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
71
72
+----------------------------------------------------------------------+
| mod_authnz_ibmdb2 INSTALL |
+----------------------------------------------------------------------+
| Author: Helmut K. C. Tessarek |
+----------------------------------------------------------------------+
| Website: http://tessus.github.io/mod_authnz_ibmdb2 |
+----------------------------------------------------------------------+
1) Building the module from a cloned repository
2) Building the module from a tarball
3) configure options
+----------------------------------------------------------------------+
| 1. Building the module from a cloned repository |
+----------------------------------------------------------------------+
git clone https://github.com/tessus/mod_authnz_ibmdb2.git
cd mod_authnz_ibmdb2
./autogen.sh (autotools required)
./configure (see section 3 for details)
make install (as root or with sudo)
+----------------------------------------------------------------------+
| 2. Building the module from a tarball |
+----------------------------------------------------------------------+
Download the latest tarball from:
https://github.com/tessus/mod_authnz_ibmdb2/releases/latest
tar -xzf mod_authnz_ibmdb2-X.Y.Z.tar.gz
cd mod_authnz_ibmdb2
./configure (see section 3 for details)
make install (as root or with sudo)
+----------------------------------------------------------------------+
| 3. configure options and details on building the module |
+----------------------------------------------------------------------+
If you run ./configure as a user with a DB2 environment and apxs is in
the path, there's nothing else to worry about.
However, you might have 2 versions of Apache installed and want to
choose for which one the module is for, or you don't have the DB2 env
initialized.
There are options to specify the location of the DB2 home and the
apxs utility:
--with-apxs=FILE FILE is the pathname of the Apache tool
--with-IBM_DB2=DIR DIR is the IBM DB2 instance or home
directory where the DB2 application
development headers and libraries are
located
By default man pages are installed automatically, but you can change
this by using the following flag:
--disable-man-pages
During install the module can also be activated in the Apache config
file httpd.conf:
--enable-activation
After successful configuration the module can be installed with:
make install
Be aware that this process needs root privileges.