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