Hello! everyone
Very Thanks to OpenEMM team its really excellent work its powerful and useful EMM tool. Thanks again.
I am new to OpenEMM I installed it on VPS and its working fine I have 2 real IP one of them for my web server ( apache ). and the second IP for OpenEMM on one server its working fine but i wanna know how can I configure OpenEMM to start automatically instead of loging to openemm user by
# su - openemm
and
$ cd bin
$ OpenEMM.sh start
how can i do that 2 b wokring when my server rebooted
best regads
How can i configure OpenEMM to start automatically
Moderator: moderator
-
- Posts: 5
- Joined: Mon Feb 23, 2009 7:02 am
- Location: Dubai, UAE
-
- Posts: 3
- Joined: Mon Mar 09, 2009 3:55 pm
-
- Site Admin
- Posts: 2628
- Joined: Thu Aug 03, 2006 10:20 am
- Location: Munich, Germany
- Contact:
Short hack solution (for RedHat):
Create file /etc/rc.local with content:
Create file /etc/rc.local with content:
Code: Select all
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
su - openemm -c "OpenEMM.sh start
OpenEMM Maintainer