Hello!
I build faux with next parameters
git checkout 2.1.0
autogen.sh
./configure --prefix=/usr
make
sudo make install
And klish
git checkout 3.0.0
autogen.sh
./configure --prefix=/usr --with-libxml=/usr
make
sudo make install
Next I copying klishd.conf and klish.conf to /etc/klish folder
After starting
sudo klishd -v
sudo klish -v ./examples/test/entry.xml
klish exit and
I see on syslog next entries
=================
ar 28 16:37:11 underhost klishd: Parse config file: /etc/klish/klishd.conf
Mar 28 16:37:11 underhost klishd: opts: Foreground = false
Mar 28 16:37:11 underhost klishd: opts: Verbose = true
Mar 28 16:37:11 underhost klishd: opts: LogFacility = daemon
Mar 28 16:37:11 underhost klishd: opts: PIDPath = /var/run/klishd.pid
Mar 28 16:37:11 underhost klishd: opts: ConfigPath = /etc/klish/klishd.conf
Mar 28 16:37:11 underhost klishd: opts: UnixSocketPath = /tmp/klish-unix-socket
Mar 28 16:37:11 underhost klishd: opts: DBs = libxml2
Mar 28 16:37:11 underhost klishd: Start daemon.
Mar 28 16:37:11 underhost klishd: Daemonize
Mar 28 16:37:11 underhost klishd: Write PID file: /var/run/klishd.pid
Mar 28 16:37:11 underhost klishd: Create listen UNIX socket: /tmp/klish-unix-socket
Mar 28 16:37:11 underhost klishd: Listen socket 4
Mar 28 16:37:51 underhost klishd: Service process for client was forked: 132476
Mar 28 16:37:51 underhost klishd: Service process 132476 was terminated by signal: 6
Mar 28 16:37:51 underhost klish: Problem with async input
=================
I can’t figure out why it’s not working or did I do something wrong?
Alfred