X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from smtp.freemail.gr (smtp.freemail.gr [81.171.104.132]) by lists.alpinelinux.org (Postfix) with ESMTP id B64C21EB598 for ; Mon, 26 Apr 2010 06:12:33 +0000 (UTC) Received: from [10.10.10.186] (ppp-94-67-119-233.home.otenet.gr [94.67.119.233]) by smtp.freemail.gr (Postfix) with ESMTP id 2A61A3380CA; Mon, 26 Apr 2010 09:12:11 +0300 (EEST) Message-ID: <4BD52ECE.1090508@freemail.gr> Date: Mon, 26 Apr 2010 09:12:30 +0300 From: Harry Lachanas User-Agent: Thunderbird 2.0.0.24 (X11/20100228) X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 To: Kenny Aral CC: Alpine-devel Developers Subject: Re: [alpine-devel] Re: help: freepbx install on alpine linux References: <364626065.101781272061133893.JavaMail.osg@osgjas04.cns.ufl.edu> In-Reply-To: <364626065.101781272061133893.JavaMail.osg@osgjas04.cns.ufl.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Kenny Aral wrote: > Thanks for the suggestion, Harry. That corrected the error I was > getting. However, now I am getting a new error that I've spent the > whole day trying to fix. I have created the MySQL databases called > asterisk and asteriskcdrdb. I granted all privileges using: > > mysql> grant all privileges on asterisk.* to asteriskuser@localhost > identified by 'amp109'; > mysql> grant all privileges on asteriskcdrdb.* to > asteriskuser@localhost identified by 'amp109'; > mysql> flush privileges; > > When I run the script the output is: > > # ./install_amp > ... > ... > Connecting to database..FAILED > DB Error: connect failed, [nativecode=No such file or directory] ** > mysql://asteriskuser:amp109@localhost/asterisk > Try running ./install_amp --username=user -password=pass > [FATAL] Cannot connect to database > > I don't understand why its giving me a "no such file" error when the > database definitely exists. If I change the IP address from > 'localhost' to the actually IP address of the server I am running > '192.168.1.114' the output is: > > # ./install_amp > ... > ... > Connecting to database..FAILED > DB Error: connect failed, [nativecode=Connection refused] ** > mysql://asteriskuser:amp109@192.168.1.114/asterisk > Try running ./install_amp --username=user -password=pass > [FATAL] Cannot connect to database > > This time I get "Connection refused." I have tried running the script > with --skip networking uncommented/commented in /etc/mysql/my.cnf with > no success. At this point I'm stumped as to why its not working. This > is the very last part of the installation too. > > On Fri Apr 23 02:27:55 EDT 2010, Harry Lachanas > wrote: grant all privileges on asterisk.* to asteriskuser@localhost identified by 'amp109'; with this statement you allow asteriskuser to connect to database only from local host ( 127.0.0.1) try to place the ip address of the alpine box you have asterisk running ... that is on mysql server grant all privileges on asterisk.* to asteriskuser@ALPINE_IP_ADDRESS identified by 'amp109'; or any host 'asteriskuser'@'%' Can you connect from a remote box to your mysql server from lan ??? Make sure that you can, and proceed .. Cheers You R almost done . --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---