Changeset 297


Ignore:
Timestamp:
Oct 31, 2010, 2:19:32 PM (14 years ago)
Author:
katerina
Message:

Documentation update for 2.8.0.

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/depend.dep

    r295 r297  
    6868dnmalloc-portable.o: $(srcsrc)/dnmalloc-portable.c Makefile config.h
    6969dnmalloc.o: $(srcsrc)/dnmalloc.c Makefile config.h
    70 sh_port2proc.o: $(srcsrc)/sh_port2proc.c Makefile config_xor.h $(srcinc)/samhain.h $(srcinc)/sh_utils.h $(srcinc)/sh_error_min.h $(srcinc)/sh_pthread.h $(srcinc)/sh_ipvx.h $(srcinc)/samhain.h $(srcinc)/sh_utils.h
     70sh_port2proc.o: $(srcsrc)/sh_port2proc.c Makefile config_xor.h $(srcinc)/samhain.h $(srcinc)/sh_utils.h $(srcinc)/sh_error_min.h $(srcinc)/sh_pthread.h $(srcinc)/sh_ipvx.h $(srcinc)/samhain.h $(srcinc)/sh_utils.h $(srcinc)/sh_ipvx.h
    7171sh_log_parse_syslog.o: $(srcsrc)/sh_log_parse_syslog.c Makefile config_xor.h $(srcinc)/samhain.h $(srcinc)/sh_pthread.h $(srcinc)/sh_log_check.h $(srcinc)/sh_utils.h $(srcinc)/sh_string.h
    7272sh_log_parse_pacct.o: $(srcsrc)/sh_log_parse_pacct.c Makefile config_xor.h $(srcinc)/samhain.h $(srcinc)/sh_pthread.h $(srcinc)/sh_log_check.h $(srcinc)/sh_utils.h $(srcinc)/sh_string.h
  • trunk/depend.sum

    r295 r297  
    1 1732172137
     12854740038
  • trunk/docs/HOWTO-samhain-on-windows.html

    r18 r297  
    273273<li>Configure:<br />
    274274&nbsp; &nbsp;<tt>$ ./configure --enable-xml-log=yes --with-tmp-dir=/usr/local/tmp --with-config-file=/usr/local/etc/samhainrc --with-log-file=/usr/local/log/samhain.log --with-pid-file=/usr/local/var/samhain.pid --with-state-dir=/usr/local/var</tt><br />
     275<div class="block">
     276<p>
     277In my experience, the paths given in the 'configure' command should refer to
     278the Cygwin filesystem view, i.e. <tt>/cygdrive/c/...</tt>, otherwise
     279samhain may not work from a pure DOS shell, and may not run as a Windows
     280service.
     281</p>
     282</div>
    275283</li>
    276284<li>Make the binary:<br />
     
    406414
    407415<p>
     416[Rainer Wichmann] I had some problems at first getting it to run as a
     417Windows service. Some tips:
     418<ul>
     419  <li>
     420    Running samhain from a pure DOS shell (outside the Cygwin environment)
     421    helps to identify problems, in particular if it refuses to start
     422    as a Windows service.
     423  </li>
     424  <li>
     425    I found it neccessary to put the <tt>cygwin1.dll</tt> DLL into the
     426    same directory as the <tt>samhain.exe</tt> executable. Also, you
     427    can use the command <tt>ldd ./samhain.exe</tt> to identify further
     428    Cygwin-specific DLL that may be required (if any).
     429  </li>
     430  <li>
     431    Also, I found it neccessary to use Cygwin-style paths
     432    (<tt>/cygdrive/c/...</tt>) in the './configure ..' command when
     433    compiling samhain.
     434  </li>
     435</ul>
     436</p>
     437   
     438<p>
    408439[Tip from Jorge Morgado] If you, like me, have a Windows server not part of any domain and (for
    409440security reasons) you even turn off DNS resolution, you might probably get
  • trunk/docs/README.UPGRADE

    r170 r297  
     1to 2.8.0 and higher: samhain supports IPv6 now, which means that the
     2  size of the 'ip' column in the database must be increased from
     3  VARCHAR(16) to VARCHAR(46).
    14
     5  BE SURE TO MAKE A BACKUP BEFORE THIS!
     6
     7  -- mysql: alter table samhain.log modify ip VARCHAR(46);
     8
     9  -- postgresql: alter table samhain.log alter column ip type varchar(46);
     10
     11  -- oracle: alter table samhain.log modify ip VARCHAR2(46);
     12
     13 
    214to 2.4.4 and higher: it is possible now to store the full content of
    315  small files in the baseline database. To support this feature with
Note: See TracChangeset for help on using the changeset viewer.