<div dir="ltr">I have an automated script that I have been using to build the 1.6/1.7 (master) branch for FreeSWITCH.  Debian = Jessie (8.1); git branch = master.<div><br></div><div>Life was good.  But, about a week (or two) ago, I was no longer able to run fs_cli from a shell window on my new builds...</div><div><br></div><div><div>craig $ fs_cli</div><div>[ERROR] fs_cli.c:1610 main() Error Connecting [Socket Connection Error]</div></div><div><br></div><div><br></div><div>FreeSWITCH itself is running in the background perfectly fine.  I can place calls; and tail -f on the log file shows the same activity that would expect to see on the fs_cli console.  The process is is running as user &quot;freeswitch&quot; and all of the standard directories are owned by &quot;freeswitch&quot;.  And no obvious errors in the build log (but honestly, not sure I&#39;d spot the error in all the text if there was one :-)</div><div><br></div><div>Any hints on what the issue might be?  Thanks.</div><div><br></div><div>---------------------------------------------------------------</div><div><br></div><div>For what it is worth, here are the script commands that I use to build FreeSWITCH:</div><div><br></div><div># git freeswitch, bootstrap, configure and make...</div><div><div>git clone <a href="https://freeswitch.org/stash/scm/fs/freeswitch.git">https://freeswitch.org/stash/scm/fs/freeswitch.git</a></div></div><div><div>sudo ./bootstrap.sh -j</div></div><div>sudo ./configure -C<br></div><div><div>perl -i -pe &#39;s/#formats\/mod_vlc/formats\/mod_vlc/g&#39; modules.conf</div><div>perl -i -pe &#39;s/#applications\/mod_av/applications\/mod_av/g&#39; modules.conf</div></div><div><br></div><div><div>sudo make</div><div>sudo make install</div></div><div>sudo make cd-sounds-install cd-moh-install samples<br></div><div><br></div><div><br></div><div># add user &amp; group freeswitch</div><div><div>sudo useradd  --shell /bin/bash --password `perl -e &#39;print crypt(&quot;....&quot;, &quot;....&quot;)&#39;` freeswitch</div><div>sudo adduser freeswitch sudo</div><div>sudo chown -R freeswitch:freeswitch /usr/local/freeswitch/</div><div>sudo chmod -R o=rwx /usr/local/freeswitch/</div><div>sudo chown -R freeswitch:freeswitch /usr/local/src/freeswitch/</div><div>sudo chmod -R o=rwx /usr/local/src/freeswitch/</div></div><div><br></div><div><br></div><div># set to run at startup</div><div><div>sudo ln /usr/local/freeswitch/bin/freeswitch /usr/bin/freeswitch</div><div>sudo ln /usr/local/freeswitch/bin/fs_cli /usr/bin/fs_cli</div><div>sudo mkdir /etc/freeswitch</div><div>sudo ln /usr/local/freeswitch/conf/freeswitch.xml /etc/freeswitch/freeswitch.xml</div><div><br></div><div>sudo chown freeswitch:daemon /etc/freeswitch</div><div>sudo chmod ug=rwx,o= /etc/freeswitch</div><div><br></div><div>sudo mkdir /var/lib/freeswitch</div><div>sudo chown freeswitch:daemon /var/lib/freeswitch</div><div>sudo chmod -R ug=rwX,o= /var/lib/freeswitch</div><div><br></div><div>sudo cp /usr/local/src/freeswitch/debian/freeswitch-sysvinit.freeswitch.default /etc/default/freeswitch</div><div><br></div><div>sudo chown freeswitch:daemon /etc/default/freeswitch</div><div>sudo chmod ug=rw,o= /etc/default/freeswitch</div><div><br></div><div>sudo cp /usr/local/src/freeswitch/debian/freeswitch-sysvinit.freeswitch.init  /etc/init.d/freeswitch</div></div><div><br></div></div>