He revisado los siguientes archivos, los cuales me han indicado revisar, y todas las contraseñas concuerdan, por lo que veo....
/etc/freepbx.conf
<?php
$amp_conf['AMPDBUSER'] = 'asteriskuser';
$amp_conf['AMPDBPASS'] = '3MURt7bj51lhR1jBZ2';
$amp_conf['AMPDBHOST'] = 'localhost';
$amp_conf['AMPDBNAME'] = 'asterisk';
$amp_conf['AMPDBENGINE'] = 'mysql';
$amp_conf['datasource'] = ''; //for sqlite3
require_once('/var/www/html/admin/bootstrap.php');
/etc/issabel.conf
mysqlrootpwd=iSsAbEl.2o17
cyrususerpwd=issabel
amiadminpwd=3MURt7bj51lhR1jBZ2
amiadminpwd=3MURt7bj51lhR1jBZ2
/etc/issabelpbx.conf
<?php
$amp_conf['AMPDBUSER'] = 'asteriskuser';
$amp_conf['AMPDBPASS'] = '3MURt7bj51lhR1jBZ2';
$amp_conf['AMPDBHOST'] = 'localhost';
$amp_conf['AMPDBNAME'] = 'asterisk';
$amp_conf['AMPDBENGINE'] = 'mysql';
$amp_conf['datasource'] = ''; //for sqlite3
require_once('/var/www/html/admin/bootstrap.php');
/etc/asterisk/manager.conf
;
; AMI - Asterisk Manager interface
;
; FreePBX needs this to be enabled. Note that if you enable it on a different IP, you need
; to assure that this can't be reached from un-authorized hosts with the ACL settings (permit/deny).
; Also, remember to configure non-default port or IP-addresses in amportal.conf.
;
; The AMI connection is used both by the portal and the operator's panel in FreePBX.
;
; FreePBX assumes an AMI connection to localhost:5038 by default.
;
[general]
enabled = yes
port = 5038
bindaddr = 0.0.0.0
displayconnects=no ;only effects 1.6+
[admin]
secret = 3MURt7bj51lhR1jBZ2
deny=0.0.0.0/0.0.0.0
permit=127.0.0.1/255.255.255.0
read = system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate
write = system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate
writetimeout = 5000
#include manager_additional.conf
#include manager_custom.conf
/etc/amportal.conf
This file is part of IssabelPBX.
#
This file contains settings for components of IssabelPBX
This file will be used to define the initial configuration installed
by the install_amp installation program, which can also obtain some
of this interactively.
#
Ths file should be writeable by the httpd user (usually asterisk for
IssabelPBX installations). Once running, IssabelPBX will maintain these settings
in a database and this file will be overwritten. It will also generate
a based issabelpbx.conf configuration file, usually in /etc, that will
be used to bootstrap IssabelPBX and any associated programs. The content
of that file will include the core database credentials and path
information needed to bootstrap IssabelPBX.
#
Once installed and running properly out of the database, this file
will be overwritten to include all the configuration settings specified
in the Advanced Settings page of IssabelPBX and made available here for
potential outside applications that may require access to some of these
parameters. This will be maintained for a transitionary period to give
the eco system time to conform to the new mode of setting configurations.
#
The issabelpbx.conf file can also be specified in an evnironment variable:
#
ISSABELPBX_CONF
#
A full path should be specified. This configuration file is formatted as
a very short snippet of PHP, here is an example of what it should look
like:
#
#-----------------------------------------------------------------
<?php
$amp_conf['AMPDBUSER'] = 'my_db_user';
$amp_conf['AMPDBPASS'] = 'my_db_password';
$amp_conf['AMPDBHOST'] = 'localhost';
$amp_conf['AMPDBNAME'] = 'asterisk';
$amp_conf['AMPDBENGINE'] = 'mysql';
$amp_conf['datasource'] = ''; //for sqlite3
require_once('/var/www/html/admin/bootstrap.php');
#-----------------------------------------------------------------
#
Where the paths and credentials match up with your system. This file
will be created by install_amp for you if not present, or will be
create by the amportal script that is used to start and stop Asterisk
and FOP for IssabelPBX.
Run /usr/src/AMP/apply_conf.sh after making changes to Asterisk
manager credentials or MySQL CDR credentials to apply the changes to
the corresponding manager.conf and cdr_mysql.conf files.
IssabelPBX Database configuration
AMPDBHOST: Hostname where the IssabelPBX database resides
AMPDBENGINE: Engine hosting the IssabelPBX database (e.g. mysql)
AMPDBNAME: Name of the IssabelPBX database (e.g. asterisk)
AMPDBUSER: Username used to connect to the IssabelPBX database
AMPDBPASS: Password for AMPDBUSER (above)
AMPENGINE: Telephony backend engine (e.g. asterisk)
#
AMPMGRUSER: Username to access the Asterisk Manager Interface
AMPMGRPASS: Password for AMPMGRUSER
#
AMPDBHOST=localhost
AMPDBENGINE=mysql
AMPENGINE=asterisk
AMPMGRUSER=admin
AMPMGRPASS=amp111
AMPBIN: Location of the IssabelPBX command line scripts
AMPSBIN: Location of (root) command line scripts
#
AMPBIN=/var/lib/asterisk/bin
AMPSBIN=/usr/local/sbin
AMPWEBROOT: Path to Apache's webroot (leave off trailing slash)
AMPCGIBIN: Path to Apache's cgi-bin dir (leave off trailing slash)
AMPWEBADDRESS: The IP address or host name used to access the AMP web admin
#
AMPWEBROOT=/var/www/html
AMPCGIBIN=/var/www/cgi-bin
AMPWEBADDRESS=x.x.x.x|hostname
FOPWEBROOT=/var/www/html/panel
FOPPASSWORD=passw0rd
This is the default admin name used to allow an administrator to login to ARI bypassing all security.
Change this to whatever you want, don't forget to change the ARI_ADMIN_PASSWORD as well
ARI_ADMIN_USERNAME=admin
This is the default admin password to allow an administrator to login to ARI bypassing all security.
Change this to a secure password.
ARI_ADMIN_PASSWORD=ari_password
AUTHTYPE=database|none
DEFAULT VALUE: database
Authentication type to use for web admininstration. If type set to 'database', the primary
AMP admin credentials will be the AMPDBUSER/AMPDBPASS above.
AUTHTYPE=database
AMPEXTENSIONS=extensions|deviceanduser
Sets the extension behavior in IssabelPBX. If set to 'extensions', Devices and Users are
administered together as a unified Extension, and appear on a single page.
If set to 'deviceanduser', Devices and Users will be administered seperately. Devices (e.g.
each individual line on a SIP phone) and Users (e.g. '101') will be configured
independent of each other, allowing association of one User to many Devices, or allowing
Users to login and logout of Devices.
AMPEXTENSIONS=extensions
MOHDIR=mohmp3
Tambien he intando cambiar la contraseña de Mysql/MariDB con el siguiente comando:
/usr/bin/issabel-admin-passwords --change
PERO, cuando ingreso la nueva contraseña, me arroja el siguiente error:
FATAL: unable to change mysql root password: SQLSTATE[28000] [1045] Access denied for user 'root'@'localhost' (using password: YES)