ejabberd - Comments for "no start file in ejabberd-16.08/bin" https://www.ejabberd.im/forum/25568/no-start-file-ejabberd-1608bin en I installed the 16.08 binary https://www.ejabberd.im/forum/25568/no-start-file-ejabberd-1608bin#comment-67032 <p>I installed the 16.08 binary installer, and got this:</p> <pre> $ ls ejabberd-16.08/bin/ beam child_setup ejabberd.init elixir erl erlexec inet_gethost postinstall.sh start start_clean.boot stop beam.smp ejabberdctl ejabberd.service epmd erlc iex mix preuninstall.sh start.boot status ~ </pre><p> You are lacking those scripts:</p> <pre> postinstall.sh start stop preuninstall.sh status </pre><p>Maybe they are created during the install, not just copied, but it found some problem in your system. Check the install log file, maybe it gives some clue. Mine shows all those files:</p> <pre> Unpacking /home/badlop/ejabberd-16.08/bin/status Unpacking /home/badlop/ejabberd-16.08/bin/start Unpacking /home/badlop/ejabberd-16.08/bin/stop </pre><p> By the way, the 'start' script contains those lines:</p> <pre> #!/bin/sh ROOTDIR=/home/badlop/ejabberd-16.08 $ROOTDIR/bin/ejabberdctl start $ROOTDIR/bin/ejabberdctl started [ $? -eq 0 ] &amp;|| { page=error.html } # List of possible X11 HTTP browser LIST_XBROWSERS="firefox konqueror galeon mozilla opera www-browser" # List of possible Console HTTP browser LIST_CBROWSERS="lynx links w3m" OS=`uname -s | tr A-Z a-z` case "$OS" in darwin) /usr/bin/open $ROOTDIR/doc/$page ;; linux|*bsd) if [ "$DISPLAY" != "" ] then for browser in $LIST_XBROWSERS do RUN=`which $browser` if [ $? -eq 0 ] then $RUN $ROOTDIR/doc/$page &gt;/dev/null 2&gt;&amp;1 &amp; break fi done else for browser in $LIST_CBROWSERS do RUN=`which $browser 2&gt; /dev/null` if [ $? -eq 0 ] then $RUN $ROOTDIR/doc/$page break fi done fi ;; esac </pre> Mon, 05 Sep 2016 17:00:37 +0000 badlop comment 67032 at https://www.ejabberd.im