Difference between revisions of "Change default passwords"

From Kolmisoft Wiki
Jump to navigationJump to search
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''Its really not important to change Database password as by default only local connections are accepted (for root and mor users).'''
==MOR DB password==
==MOR DB password==


Line 21: Line 22:
Next you need to change password in following places:
Next you need to change password in following places:


  /home/mor/config/database.yml
  /home/mor/config/database.yml (if you have password with symbols like ! , make sure you leave your password in quotes. For example "my*!@Password^"
  /etc/asterisk/mor.conf
  /etc/asterisk/mor.conf
  /etc/asterisk/res_mysql.conf
  /etc/asterisk/res_mysql.conf
  /var/lib/asterisk/agi-bin/mor.conf
  /var/lib/asterisk/agi-bin/mor.conf
  /home/mor/public/c2c/c2c.php
  /etc/asterisk/res_config_mysql.conf
/etc/mor/system.conf


==Asterisk Manager Password==
==Asterisk Manager Password==
Line 33: Line 35:
  /etc/asterisk/manager.conf
  /etc/asterisk/manager.conf


[mor]
[mor]
secret = NEW_PSW_HERE
secret = NEW_PSW_HERE
deny=0.0.0.0/0.0.0.0
deny=0.0.0.0/0.0.0.0
permit=127.0.0.1/255.255.255.0
permit=127.0.0.1/255.255.255.0
read = system,call,log,verbose,command,agent,user,config
read = system,call,log,verbose,command,agent,user,config
write = system,call,log,verbose,command,agent,user,config
write = system,call,log,verbose,command,agent,user,config
 
 
In MOR GUI go to Billing - Servers and change manager password for appropriate server. After that - reload Asterisk.


==Finally==
==Finally==
Line 63: Line 68:


Where PASSWORD is your new password.
Where PASSWORD is your new password.
In MOR GUI go to SETTINGS - AMI Settings and change manager password. After that - reload Asterisk.


==MOR GUI password==
==MOR GUI password==


* Change from admin/admin to more secure
* Change from admin/admin to more secure
* Also change psw for user 101 (old psw is 101)
* Also change psw for user 101


==Change DB==
==Change DB==


If you want to change DB name from mor to another one, make sure to edit '''/etc/asterisk/extconfig.conf''' and change mor to your new DB name.
If you want to change DB name from mor to another one, make sure to edit '''/etc/asterisk/extconfig.conf''' and change mor to your new DB name.

Latest revision as of 09:03, 29 June 2016

Its really not important to change Database password as by default only local connections are accepted (for root and mor users).

MOR DB password

After MOR installation you need to change MySQL passwords for root (which is empty) and for mor (which is 'mor').

First, execute the following command in Bash:

mysql -u mor –pmor

you should be now in MySql management console. Type in the following command:

SET PASSWORD FOR 'mor'@'localhost' = PASSWORD('NewPassword');

Where NewPassword – is your new password for mor DB.

next type “quit” and test new DB password using command:

mysql -u mor -pNewPassword

Applying new DB password

Next you need to change password in following places:

/home/mor/config/database.yml (if you have password with symbols like ! , make sure you leave your password in quotes. For example "my*!@Password^"
/etc/asterisk/mor.conf
/etc/asterisk/res_mysql.conf
/var/lib/asterisk/agi-bin/mor.conf
/etc/asterisk/res_config_mysql.conf
/etc/mor/system.conf

Asterisk Manager Password

Change the password for user mor in

/etc/asterisk/manager.conf
[mor]
secret = NEW_PSW_HERE
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
write = system,call,log,verbose,command,agent,user,config


In MOR GUI go to Billing - Servers and change manager password for appropriate server. After that - reload Asterisk.

Finally

Restart Asterisk:

/etc/init.d/asterisk restart

And Apache:

Debian:

/etc/init.d/apache2 restart

Centos/Fedora:

/etc/init.d/httpd restart

Test new DB password

Test it in bash using command:

mysql -u mor -pPASSWORD

Where PASSWORD is your new password.

MOR GUI password

  • Change from admin/admin to more secure
  • Also change psw for user 101

Change DB

If you want to change DB name from mor to another one, make sure to edit /etc/asterisk/extconfig.conf and change mor to your new DB name.