Changes between Version 22 and Version 23 of WikiStart


Ignore:
Timestamp:
03/04/09 17:38:16 (15 years ago)
Author:
lars.uffmann@…
Comment:

added info to get omsa web interface working on Lenny

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v22 v23  
    3030 }}}
    3131
    32 install the package:
     32Install the package:
    3333 {{{
     34apt-get update
    3435apt-get install dellomsa
    3536 }}}
     37
     38Modify the startup script for the web interface to get it running:
     39You'll have to edit /etc/init.d/dsm_om_connsvc and replace (line 178)
     40 {{{
     41START_DAEMON ${PROGRAM_DAEMON} -run
     42 }}}
     43with
     44 {{{
     45START_DAEMON ${PROGRAM_DAEMON} -clrun >/dev/null 2>&1 &
     46 }}}
     47
     48Now the web interface should work (tested on Lenny release). Start it with
     49 {{{
     50/etc/init.d/dsm_om_connsvc start
     51 }}}
     52or have it started automatically on system startup with
     53 {{{
     54update-rc.d dsm_om_connsvc defaults
     55 }}}
     56
     57To access the web interface, surf to
     58 {{{
     59https://localhost:1311
     60 }}}
     61. You might have to add an exception for the security certificate, depending on your browser settings.
    3662
    3763== FAQ ==