How to Install Asterisk-GUI in Ubuntu

Asterisk-GUI

Go to your installation directory :- 

  • cd /usr/src

Download the latest version of Asterisk-GUI :-   

Enter in Asterisk-GUI folder :-

  • cd asterisk-gui/

Then you need to configure :-

  • sudo ./configure

Then you need to compile the sources :-

  • sudo make

Then distribute the compiled code :-

  • sudo make install

Back up your configuration files before you continue :-

  • sudo cp -r /etc/asterisk /etc/asterisk.backup

Edit manager.conf in /etc/asterisk :-

  • sudo nano /etc/asterisk/manager.conf

Do the following settings :-

[general]
              enabled – yes
              webenabled =yes

For add new user add the this in manager.conf

[admin]
              secret = admin123
              read = system,call,log,verbose,command,agent,user,config
              write = system,call,log,verbose,command,agent,user,config

Now edit http.conf  from /etc/asterisk :-

  • sudo nano /etc/asterisk/http.conf

Do the following settings :-

enabled=yes
               enablestatic=yes
               bindaddr=0.0.0.0

After that :-

  • sudo make checkconfig

For running Asterisk-GUI Enter :-

  • sudo reload

Add user and group and create a link :-

  • sudo adduser asterisk
  • cd /usr/share
  • sudo mkdir asterisk
  • sudo ln -s /var/lib/asterisk/static-http /usr/share/asterisk/static-http
  • sudo chown -R asterisk:asterisk /etc/asterisk/ /var/lib/asterisk /usr/share/asterisk

You can use the asterisk-gui from these addresses :-

For troubleshooting :-

How to install Asterisk on Ubuntu Linux

1 thought on “How to Install Asterisk-GUI in Ubuntu”

  1. Pingback: How to install Asterisk on Ubuntu Linux - henyhely.in

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top