Unable to login as admin

Yossi

New Member
Hi, I have an WCS at AWS and I can't login to the admin account with the user/pass of admin/<ec2-instance-id>
This instance is created from an AMI that was created from an AWS marketplace WCS.

[1] How can I login to the admin account?
[2] Is there a way to replace the current SSL certificate manually?

Thanks
Yossi
 

Max

Administrator
Staff member
Good day.
[1] How can I login to the admin account?
By default, if you did not change anything, EC2 instance Id is used as admin password in AWS instance. But you can reset it as follows:
1. Open the file /usr/local/FlashphonerWebCallServer/conf/database.yml in editor
Code:
sudo nano /usr/local/FlashphonerWebCallServer/conf/database.yml
2. Find the following string
Code:
admin: {username: admin, password: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, active: true}
3. Replace password field content as follows
Code:
admin: {username: admin, password: 21232f297a57a5a743894a0e4a801fc3, active: true}
4. Save the file, then restart WCS
After that, you can enter to web interface with login admin and password admin.
[2] Is there a way to replace the current SSL certificate manually?
You can import SSL certificate from command line using keytool utility.
 
Top