-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
57 lines (32 loc) · 1.13 KB
/
README
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
OSSEC WEB UI v0.3
Copyright (c) 2006-2008 Daniel B. Cid <[email protected]>
1- How to install.
1.0 - Prerequisites
- Apache with PHP (>= 4.1 or >= 5.0) installed.
- OSSEC (version >= 0.9-3) already installed.
1.1- Download the web ui package:
# wget http://www.ossec.net/files/ui/ossec-wui-0.3.tar.gz
1.2- Uncompress/untar and move the files to somewhere acessible by
your web server:
# tar -zxvf ossec-wui-0.3.tar.gz
# mv ossec-wui* /var/www/htdocs/ossec-wui
1.3- Run the setup script
# cd /var/www/htdocs/ossec-wui
# ./setup.sh
1.4- Add your web server user to the ossec group:
# vi /etc/group
..
From:
ossec:x:1002:
To (if your web server user is www):
ossec:x:1002:www
1.5- If you have a large ossec install, you may want to
re-configure PHP to support longer lasting scripts
and higher memory utilization. The following entries
on php.ini can be increased:
max_execution_time = 180
max_input_time = 180
memory_limit = 30M
1.6- Try to access the UI.
1.7- Report any problems or suggestions to our mailing list.
#EOF