<div dir="ltr"><div>No luck.</div><div><font size="1"><b>root@debA: ~ $ systemctl start freeswitch<br>root@debA: ~ $ ps -aux | grep freeswi<br>freeswi+ 12569  5.4 10.2 879236 103824 ?       S<Lsl 13:32   0:01 /usr/bin/freeswitch -u freeswitch -g freeswitch -ncwait -nonat<br>root     12614  0.0  0.0   6076   892 pts/0    S+   13:32   0:00 grep freeswi<br>root@debA: ~ $ fs_cli -r<br>[ERROR] fs_cli.c:1691 main() Error Connecting []<br>[INFO] fs_cli.c:1697 main() Retrying<br>[ERROR] fs_cli.c:1691 main() Error Connecting []<br>^CInterrupted.<br>root@debA: ~ $</b></font><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jul 24, 2020 at 12:24 AM John Covici <<a href="mailto:covici@ccs.covici.com">covici@ccs.covici.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">hmmm?  Just take the line from the system unit file, and run it by<br>
hand from the console, eliminating the -nc parameter.<br>
<br>
On Thu, 23 Jul 2020 14:27:12 -0400,<br>
John Tuxies wrote:<br>
> <br>
> [1  <multipart/alternative (7bit)>]<br>
> [1.1  <text/plain; UTF-8 (quoted-printable)>]<br>
> Could you elaborate on how to do that please?<br>
> <br>
> On Thursday, July 23, 2020, John Covici <<a href="mailto:covici@ccs.covici.com" target="_blank">covici@ccs.covici.com</a>> wrote:<br>
> <br>
> > What I do in those cases is execute the freeswitch command by hand,<br>
> > eliminating the -nc parameter, if any, but leaving the -u and -g and<br>
> > possibly other parameters.  Also, see if there is anything in the log<br>
> > file, but the first method may be enlightening.<br>
> ><br>
> > On Thu, 23 Jul 2020 08:41:46 -0400,<br>
> > John Tuxies wrote:<br>
> > ><br>
> > > [1  <multipart/alternative (7bit)>]<br>
> > > [1.1  <text/plain; UTF-8 (quoted-printable)>]<br>
> > > hi Franceso and thanks for the reply. i did install from debian repo and<br>
> > it<br>
> > > should get the systemd, but non the less, i created the file. Still<br>
> > > Freeswitch refuses to start!<br>
> > ><br>
> > > On Thu, Jul 23, 2020 at 10:29 AM Francesco Facco de Lagarda <<br>
> > > <a href="mailto:francesco@delagarda.com" target="_blank">francesco@delagarda.com</a>> wrote:<br>
> > ><br>
> > > > Did you create Freeswitch service?<br>
> > > ><br>
> > > ><br>
> > > >  cd /etc/systemd/system<br>
> > > ><br>
> > > ><br>
> > > > nano freeswitch.service<br>
> > > ><br>
> > > > ; This file in installations built from Master can be found in<br>
> > > > ; /usr/src/freeswitch.git/debian<br>
> > > > ; or<br>
> > > > ; /usr/src/freeswitch/debian<br>
> > > > [Unit]<br>
> > > > Description=freeswitch<br>
> > > > After=syslog.target network.target local-fs.target<br>
> > > > [Service]<br>
> > > > ; service<br>
> > > > Type=forking<br>
> > > > PIDFile=/usr/local/freeswitch/run/freeswitch.pid<br>
> > > > PermissionsStartOnly=true<br>
> > > > ; blank ExecStart= line flushes the list<br>
> > > > ExecStart=<br>
> > > > ExecStart=/usr/local/freeswitch/bin/freeswitch -u freeswitch -g<br>
> > freeswitch<br>
> > > > -ncwait -nonat -rp<br>
> > > > TimeoutSec=45s<br>
> > > > Restart=on-failure<br>
> > > > ; exec<br>
> > > > WorkingDirectory=/usr/local/freeswitch/bin<br>
> > > > User=root<br>
> > > > Group=daemon<br>
> > > > LimitCORE=infinity<br>
> > > > LimitNOFILE=100000<br>
> > > > LimitNPROC=60000<br>
> > > > ;LimitSTACK=240<br>
> > > > LimitRTPRIO=infinity<br>
> > > > LimitRTTIME=7000000<br>
> > > > IOSchedulingClass=realtime<br>
> > > > IOSchedulingPriority=2<br>
> > > > CPUSchedulingPolicy=rr<br>
> > > > CPUSchedulingPriority=89<br>
> > > > UMask=0007<br>
> > > > [Install]<br>
> > > > WantedBy=multi-user.target<br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > > Next, notify systemd to look for changes in its configuration:<br>
> > > > systemctl daemon-reload<br>
> > > > Now you are ready to start FreeSWITCH for the first time. Because FS is<br>
> > > > owned by user freeswitch it should create its databases and log files<br>
> > under<br>
> > > > that user (instead of root) so that those files will still be<br>
> > accessible to<br>
> > > > it under future runs.<br>
> > > > systemctl start freeswitch<br>
> > > > To stop FreeSWITCH:<br>
> > > > systemctl stop freeswitch<br>
> > > ><br>
> > > ><br>
> > > > To configure FreeSWITCH to start automatically at boot time:<br>
> > > > systemctl enable freeswitch<br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > > To be able to launch fs_cli without having to go to bin directory, add<br>
> > > > directory to path:<br>
> > > ><br>
> > > ><br>
> > > > export PATH=$PATH:/usr/local/freeswitch/bin/<br>
> > > ><br>
> > > > Francesco Facco de Lagarda<br>
> > > ><br>
> > > ><br>
> > > > On 23 Jul 2020, at 03:43, John Tuxies <<a href="mailto:atuxnull@gmail.com" target="_blank">atuxnull@gmail.com</a>> wrote:<br>
> > > ><br>
> > > > <br>
> > > > Trying to install Freeswitch in Debian 9 and 10. Both systems failed to<br>
> > > > start:<br>
> > > > Running hooks in<br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > > * /etc/ca-certificates/update.d...done.done.root@debian: ~ $ fs_cli<br>
> > > > -rRS[ERROR] fs_cli.c:1691 main() Error Connecting [][INFO]<br>
> > fs_cli.c:1697<br>
> > > > main() Retrying[ERROR] fs_cli.c:1691 main() Error Connecting<br>
> > > > []^CInterrupted.root@debian: ~ $*<br>
> > > ><br>
> > > > I have tried to install from<br>
> > > > <a href="https://freeswitch.org/confluence/display/FREESWITCH/Debian+10+Buster" rel="noreferrer" target="_blank">https://freeswitch.org/confluence/display/FREESWITCH/Debian+10+Buster</a><br>
> > to<br>
> > > > install using debian packages.<br>
> > > ><br>
> > > > Any suggestions, please?<br>
> > > ><br>
> > > ><br>
> > > ><br>
> > > > ____________________________________________________________<br>
> > _____________<br>
> > > ><br>
> > > > The FreeSWITCH project is sponsored by SignalWire<br>
> > <a href="https://signalwire.com" rel="noreferrer" target="_blank">https://signalwire.com</a><br>
> > > > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN<br>
> > > > services.<br>
> > > > Build your next product on our scalable cloud platform.<br>
> > > ><br>
> > > > Join our online community to chat in real time<br>
> > > > <a href="https://signalwire.community" rel="noreferrer" target="_blank">https://signalwire.community</a><br>
> > > ><br>
> > > > Professional FreeSWITCH Services<br>
> > > > <a href="mailto:sales@freeswitch.com" target="_blank">sales@freeswitch.com</a><br>
> > > > <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> > > ><br>
> > > > Official FreeSWITCH Sites<br>
> > > > <a href="https://freeswitch.com/oss" rel="noreferrer" target="_blank">https://freeswitch.com/oss</a><br>
> > > > <a href="https://freeswitch.org/confluence" rel="noreferrer" target="_blank">https://freeswitch.org/confluence</a><br>
> > > > <a href="https://cluecon.com" rel="noreferrer" target="_blank">https://cluecon.com</a><br>
> > > ><br>
> > > > FreeSWITCH-users mailing list<br>
> > > > <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
> > > > <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
> > > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/</a><br>
> > options/freeswitch-users<br>
> > > > <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> > > ><br>
> > > > ____________________________________________________________<br>
> > _____________<br>
> > > ><br>
> > > > The FreeSWITCH project is sponsored by SignalWire<br>
> > <a href="https://signalwire.com" rel="noreferrer" target="_blank">https://signalwire.com</a><br>
> > > > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN<br>
> > > > services.<br>
> > > > Build your next product on our scalable cloud platform.<br>
> > > ><br>
> > > > Join our online community to chat in real time<br>
> > > > <a href="https://signalwire.community" rel="noreferrer" target="_blank">https://signalwire.community</a><br>
> > > ><br>
> > > > Professional FreeSWITCH Services<br>
> > > > <a href="mailto:sales@freeswitch.com" target="_blank">sales@freeswitch.com</a><br>
> > > > <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> > > ><br>
> > > > Official FreeSWITCH Sites<br>
> > > > <a href="https://freeswitch.com/oss" rel="noreferrer" target="_blank">https://freeswitch.com/oss</a><br>
> > > > <a href="https://freeswitch.org/confluence" rel="noreferrer" target="_blank">https://freeswitch.org/confluence</a><br>
> > > > <a href="https://cluecon.com" rel="noreferrer" target="_blank">https://cluecon.com</a><br>
> > > ><br>
> > > > FreeSWITCH-users mailing list<br>
> > > > <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
> > > > <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
> > > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/</a><br>
> > options/freeswitch-users<br>
> > > > <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> > > [1.2  <text/html; UTF-8 (quoted-printable)>]<br>
> > > [2  <text/plain; utf-8 (base64)>]<br>
> > > ____________________________________________________________<br>
> > _____________<br>
> > ><br>
> > > The FreeSWITCH project is sponsored by SignalWire <a href="https://signalwire.com" rel="noreferrer" target="_blank">https://signalwire.com</a><br>
> > > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN<br>
> > services.<br>
> > > Build your next product on our scalable cloud platform.<br>
> > ><br>
> > > Join our online community to chat in real time<br>
> > <a href="https://signalwire.community" rel="noreferrer" target="_blank">https://signalwire.community</a><br>
> > ><br>
> > > Professional FreeSWITCH Services<br>
> > > <a href="mailto:sales@freeswitch.com" target="_blank">sales@freeswitch.com</a><br>
> > > <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> > ><br>
> > > Official FreeSWITCH Sites<br>
> > > <a href="https://freeswitch.com/oss" rel="noreferrer" target="_blank">https://freeswitch.com/oss</a><br>
> > > <a href="https://freeswitch.org/confluence" rel="noreferrer" target="_blank">https://freeswitch.org/confluence</a><br>
> > > <a href="https://cluecon.com" rel="noreferrer" target="_blank">https://cluecon.com</a><br>
> > ><br>
> > > FreeSWITCH-users mailing list<br>
> > > <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
> > > <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
> > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
> > > <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> ><br>
> > --<br>
> > Your life is like a penny.  You're going to lose it.  The question is:<br>
> > How do<br>
> > you spend it?<br>
> ><br>
> >          John Covici wb2una<br>
> >          <a href="mailto:covici@ccs.covici.com" target="_blank">covici@ccs.covici.com</a><br>
> ><br>
> > _________________________________________________________________________<br>
> ><br>
> > The FreeSWITCH project is sponsored by SignalWire <a href="https://signalwire.com" rel="noreferrer" target="_blank">https://signalwire.com</a><br>
> > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN<br>
> > services.<br>
> > Build your next product on our scalable cloud platform.<br>
> ><br>
> > Join our online community to chat in real time<br>
> > <a href="https://signalwire.community" rel="noreferrer" target="_blank">https://signalwire.community</a><br>
> ><br>
> > Professional FreeSWITCH Services<br>
> > <a href="mailto:sales@freeswitch.com" target="_blank">sales@freeswitch.com</a><br>
> > <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> ><br>
> > Official FreeSWITCH Sites<br>
> > <a href="https://freeswitch.com/oss" rel="noreferrer" target="_blank">https://freeswitch.com/oss</a><br>
> > <a href="https://freeswitch.org/confluence" rel="noreferrer" target="_blank">https://freeswitch.org/confluence</a><br>
> > <a href="https://cluecon.com" rel="noreferrer" target="_blank">https://cluecon.com</a><br>
> ><br>
> > FreeSWITCH-users mailing list<br>
> > <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
> > <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
> > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
> > <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> [1.2  <text/html; UTF-8 (quoted-printable)>]<br>
> [2  <text/plain; utf-8 (base64)>]<br>
> _________________________________________________________________________<br>
> <br>
> The FreeSWITCH project is sponsored by SignalWire <a href="https://signalwire.com" rel="noreferrer" target="_blank">https://signalwire.com</a><br>
> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.<br>
> Build your next product on our scalable cloud platform.<br>
> <br>
> Join our online community to chat in real time <a href="https://signalwire.community" rel="noreferrer" target="_blank">https://signalwire.community</a><br>
> <br>
> Professional FreeSWITCH Services<br>
> <a href="mailto:sales@freeswitch.com" target="_blank">sales@freeswitch.com</a><br>
> <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
> <br>
> Official FreeSWITCH Sites<br>
> <a href="https://freeswitch.com/oss" rel="noreferrer" target="_blank">https://freeswitch.com/oss</a><br>
> <a href="https://freeswitch.org/confluence" rel="noreferrer" target="_blank">https://freeswitch.org/confluence</a><br>
> <a href="https://cluecon.com" rel="noreferrer" target="_blank">https://cluecon.com</a><br>
> <br>
> FreeSWITCH-users mailing list<br>
> <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
> <a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
<br>
-- <br>
Your life is like a penny.  You're going to lose it.  The question is:<br>
How do<br>
you spend it?<br>
<br>
         John Covici wb2una<br>
         <a href="mailto:covici@ccs.covici.com" target="_blank">covici@ccs.covici.com</a><br>
<br>
_________________________________________________________________________<br>
<br>
The FreeSWITCH project is sponsored by SignalWire <a href="https://signalwire.com" rel="noreferrer" target="_blank">https://signalwire.com</a><br>
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.<br>
Build your next product on our scalable cloud platform.<br>
<br>
Join our online community to chat in real time <a href="https://signalwire.community" rel="noreferrer" target="_blank">https://signalwire.community</a><br>
<br>
Professional FreeSWITCH Services<br>
<a href="mailto:sales@freeswitch.com" target="_blank">sales@freeswitch.com</a><br>
<a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="https://freeswitch.com/oss" rel="noreferrer" target="_blank">https://freeswitch.com/oss</a><br>
<a href="https://freeswitch.org/confluence" rel="noreferrer" target="_blank">https://freeswitch.org/confluence</a><br>
<a href="https://cluecon.com" rel="noreferrer" target="_blank">https://cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="https://freeswitch.com" rel="noreferrer" target="_blank">https://freeswitch.com</a></blockquote></div>