Thanks for helpful information on that topic in advance!
What I did is upgrading from Asterisk 1.4.22.2 to Asterisk 1.6.1.6. Before that, Asterisk-GUI was working just fine.
The Asterisk-GUI is SVN Rev. 4986 (most current). Asterisk is listening on the default port 8088, a netstat -l is confirming this.
Everytime I access the GUI by myip:8088/static/config/index.html, the asterisk process crashes without any indications on the CLI (not even on verbose 100, debug 100). The only log entry i can find is a segfault in syslog messages:
~# tail -1 /var/log/messages
Oct 13 15:14:59 VoIPcom10-installer kernel: asterisk[6805]: segfault at b71788e0 eip 08116dd0 esp b71788c0 error 6
nothing in Asterisk log:
~# tail -1 /var/log/asterisk/messages
~#
segfault in CLI:
~# /usr/sbin/asterisk -vvvvvv -g -dddddd -c
*CLI> Segmentation fault (core dumped)
- configuration: -
my http.conf:
~# cat /etc/asterisk/http.conf
[general]
enabled=yes
enablestatic=yes
bindaddr=0.0.0.0
bindport=8088
my manager.conf:
[code]
~# cat /etc/asterisk/manager.conf
[general]
enabled = yes
webenabled = yes
port = 5038
bindaddr = 0.0.0.0
debug = on ; enable some debugging info in AMI messages (default off).
[admin]
secret = whatever
read = system,call,log,verbose,command,agent,config
write = system,call,log,verbose,command,agent,config[/code]
any ideas?