vicidial_users corrupt, I can not login

All installation and configuration problems and questions

Moderators: gerski, enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, Michael_N

vicidial_users corrupt, I can not login

Postby saulortega » Tue May 13, 2014 9:02 am

Hello.

Yesterday it was working fine, but today no user can login in Vicidial. It is a new test installation, I updated yesterday. $admin_version = '2.8-438a'; $build = '140509-2201';

MariaDB [asterisk]> select * from vicidial_users;
ERROR 130 (HY000): Incorrect file format 'vicidial_users'

MariaDB [asterisk]> repair table vicidial_users;
+-------------------------+--------+----------+----------------------------------------+
| Table | Op | Msg_type | Msg_text |
+-------------------------+--------+----------+----------------------------------------+
| asterisk.vicidial_users | repair | Error | Incorrect file format 'vicidial_users' |
| asterisk.vicidial_users | repair | error | Corrupt |
+-------------------------+--------+----------+----------------------------------------+

:(

It is possible to recreate the vicidial_users tables?
saulortega
 
Posts: 118
Joined: Mon Jul 29, 2013 11:46 am

Re: vicidial_users corrupt, I can not login

Postby saulortega » Tue May 13, 2014 11:57 am

I think this is a bug of a new release. Yerterday I updated this and another server (for test), and both have this problem....
saulortega
 
Posts: 118
Joined: Mon Jul 29, 2013 11:46 am

Re: vicidial_users corrupt, I can not login

Postby mflorell » Tue May 13, 2014 7:52 pm

I haven't seen that, and I just updated a client last night. A DB schema change or change in Vicidial's programming should not cause that kind of error in MySQL. In my experience that error usually happens when the machine is shut down without MySQL first being stopped.
mflorell
Site Admin
 
Posts: 18387
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Re: vicidial_users corrupt, I can not login

Postby geoff3dmg » Wed May 14, 2014 8:59 am

Can also be caused by hardware issues. Disk or memory errors in particular.
Vicibox 5.03 from .iso | VERSION: 2.10-451a BUILD: 140902-0816 | Asterisk 1.8.28.2-vici | Multi-Server | Amfeltec H/W Timing Cards | No Extra Software After Installation | Dell PowerEdge 1850 | Pentium 4 'Prescott' Xenon Quad @ 3.40GHz
geoff3dmg
 
Posts: 403
Joined: Tue Jan 29, 2013 4:35 am
Location: Lancashire, UK

Re: vicidial_users corrupt, I can not login

Postby saulortega » Fri May 16, 2014 10:29 am

How can I to insert the username manually?

I did this:

drop table vicidial_users;
create table vicidial_users (username varchar(20));
\. /usr/src/astguiclient/trunk/extras/upgrade_2.8.sql
insert into vicidial_users (username, pass_hash) values('6666', '7110eda4d09e062aa5e4a390b0a572ac0d2c0220');


But, I dont know what value should put in pass_hash. I tried the string "1234" in SHA1 and MD5 whitout results.. :(
saulortega
 
Posts: 118
Joined: Mon Jul 29, 2013 11:46 am

Re: vicidial_users corrupt, I can not login

Postby mflorell » Fri May 16, 2014 3:08 pm

So you already manually enabled password encryption by running the required script?
mflorell
Site Admin
 
Posts: 18387
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Re: vicidial_users corrupt, I can not login

Postby saulortega » Fri May 16, 2014 3:46 pm

No, but How I do it without encryption?

Ok, running /usr/share/astguiclient/ADMIN_bcrypt_convert.pl --debugX --test I have a error, the user, pass, and full_name do not exist. So...

drop table vicidial_users;
create table vicidial_users (username varchar(20));
\. /usr/src/astguiclient/trunk/extras/upgrade_2.8.sql
alter table vicidial_users add (user char(20), pass char(20), full_name char(40));
insert into vicidial_users (user, pass, full_name) values('6666', '1234', 'Administrador');

It is fine?

MariaDB [asterisk]> describe vicidial_users;
+-------------------------------+----------------------+------+-----+---------------------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------------------------+----------------------+------+-----+---------------------+-------+
| username | varchar(20) | YES | | NULL | |
| failed_login_count | tinyint(3) unsigned | YES | | 0 | |
| last_login_date | datetime | YES | | 2001-01-01 00:00:01 | |
| last_ip | varchar(15) | YES | | | |
| pass_hash | varchar(100) | YES | | | |
| alter_admin_interface_options | enum('0','1') | YES | | 1 | |
| max_inbound_calls | smallint(5) unsigned | YES | | 0 | |
| modify_custom_dialplans | enum('1','0') | YES | | 0 | |
| user | char(20) | YES | | NULL | |
| pass | char(20) | YES | | NULL | |
| full_name | char(40) | YES | | NULL | |
+-------------------------------+----------------------+------+-----+---------------------+-------+


MariaDB [asterisk]> select * from vicidial_users;
+----------+--------------------+---------------------+-------------+-----------+-------------------------------+-------------------+-------------------------+------+------+---------------+
| username | failed_login_count | last_login_date | last_ip | pass_hash | alter_admin_interface_options | max_inbound_calls | modify_custom_dialplans | user | pass | full_name |
+----------+--------------------+---------------------+-------------+-----------+-------------------------------+-------------------+-------------------------+------+------+---------------+
| NULL | 1 | 2001-01-01 00:00:01 | 192.168.7.7 | | 1 | 0 | 0 | 6666 | 1234 | Administrador |
+----------+--------------------+---------------------+-------------+-----------+-------------------------------+-------------------+-------------------------+------+------+---------------+


Still not working... :(
saulortega
 
Posts: 118
Joined: Mon Jul 29, 2013 11:46 am

Re: vicidial_users corrupt, I can not login

Postby saulortega » Fri May 16, 2014 4:22 pm

Ok, there are very fields missing...

\. /usr/src/astguiclient/trunk/extras/upgrade_2.0.5.sql
\. /usr/src/astguiclient/trunk/extras/upgrade_2.2.0.sql
\. /usr/src/astguiclient/trunk/extras/upgrade_2.4.sql
\. /usr/src/astguiclient/trunk/extras/upgrade_2.6.sql
\. /usr/src/astguiclient/trunk/extras/upgrade_2.8.sql


MariaDB [asterisk]> describe vicidial_users;
+------------------------------------+--------------------------------------------------------------------------------------------+------+-----+---------------------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------------------------------+--------------------------------------------------------------------------------------------+------+-----+---------------------+-------+
| username | varchar(20) | YES | | NULL | |
| failed_login_count | tinyint(3) unsigned | YES | | 0 | |
| last_login_date | datetime | YES | | 2001-01-01 00:00:01 | |
| last_ip | varchar(15) | YES | | | |
| pass_hash | varchar(100) | YES | | | |
| alter_admin_interface_options | enum('0','1') | YES | | 1 | |
| max_inbound_calls | smallint(5) unsigned | YES | | 0 | |
| modify_custom_dialplans | enum('1','0') | YES | | 0 | |
| user | varchar(20) | NO | PRI | NULL | |
| pass | varchar(20) | NO | | NULL | |
| full_name | varchar(40) | YES | | NULL | |
| user_level | tinyint(3) unsigned | YES | | 1 | |
| qc_enabled | enum('1','0') | YES | | 0 | |
| qc_user_level | int(2) | YES | | 1 | |
| qc_pass | enum('1','0') | YES | | 0 | |
| qc_finish | enum('1','0') | YES | | 0 | |
| qc_commit | enum('1','0') | YES | | 0 | |
| add_timeclock_log | enum('1','0') | YES | | 0 | |
| modify_timeclock_log | enum('1','0') | YES | | 0 | |
| delete_timeclock_log | enum('1','0') | YES | | 0 | |
| alter_custphone_override | enum('NOT_ACTIVE','ALLOW_ALTER') | YES | | NOT_ACTIVE | |
| vdc_agent_api_access | enum('0','1') | YES | | 0 | |
| modify_inbound_dids | enum('1','0') | YES | | 0 | |
| delete_inbound_dids | enum('1','0') | YES | | 0 | |
| active | enum('Y','N') | YES | | Y | |
| alert_enabled | enum('1','0') | YES | | 0 | |
| download_lists | enum('1','0') | YES | | 0 | |
| agent_shift_enforcement_override | enum('DISABLED','OFF','START','ALL') | YES | | DISABLED | |
| manager_shift_enforcement_override | enum('0','1') | YES | | 0 | |
| shift_override_flag | enum('0','1') | YES | | 0 | |
| export_reports | enum('1','0') | YES | | 0 | |
| delete_from_dnc | enum('0','1') | YES | | 0 | |
| email | varchar(100) | YES | | | |
| user_code | varchar(100) | YES | | | |
| territory | varchar(100) | YES | | | |
| allow_alerts | enum('0','1') | YES | | 0 | |
| agent_choose_territories | enum('0','1') | YES | | 1 | |
| custom_one | varchar(100) | YES | | | |
| custom_two | varchar(100) | YES | | | |
| custom_three | varchar(100) | YES | | | |
| custom_four | varchar(100) | YES | | | |
| custom_five | varchar(100) | YES | | | |
| voicemail_id | varchar(10) | YES | | | |
| agent_call_log_view_override | enum('DISABLED','Y','N') | YES | | DISABLED | |
| callcard_admin | enum('1','0') | YES | | 0 | |
| agent_choose_blended | enum('0','1') | YES | | 1 | |
| realtime_block_user_info | enum('0','1') | YES | | 0 | |
| custom_fields_modify | enum('0','1') | YES | | 0 | |
| force_change_password | enum('Y','N') | YES | | N | |
| agent_lead_search_override | enum('NOT_ACTIVE','ENABLED','LIVE_CALL_INBOUND','LIVE_CALL_INBOUND_AND_MANUAL','DISABLED') | YES | | NOT_ACTIVE | |
| modify_shifts | enum('1','0') | YES | | 0 | |
| modify_phones | enum('1','0') | YES | | 0 | |
| modify_carriers | enum('1','0') | YES | | 0 | |
| modify_labels | enum('1','0') | YES | | 0 | |
| modify_statuses | enum('1','0') | YES | | 0 | |
| modify_voicemail | enum('1','0') | YES | | 0 | |
| modify_audiostore | enum('1','0') | YES | | 0 | |
| modify_moh | enum('1','0') | YES | | 0 | |
| modify_tts | enum('1','0') | YES | | 0 | |
| preset_contact_search | enum('NOT_ACTIVE','ENABLED','DISABLED') | YES | | NOT_ACTIVE | |
| modify_contacts | enum('1','0') | YES | | 0 | |
| modify_same_user_level | enum('0','1') | YES | | 1 | |
| admin_hide_lead_data | enum('0','1') | YES | | 0 | |
| admin_hide_phone_data | enum('0','1','2_DIGITS','3_DIGITS','4_DIGITS') | YES | | 0 | |
| agentcall_email | enum('0','1') | YES | | 0 | |
| modify_email_accounts | enum('0','1') | YES | | 0 | |
+------------------------------------+--------------------------------------------------------------------------------------------+------+-----+---------------------+-------+
saulortega
 
Posts: 118
Joined: Mon Jul 29, 2013 11:46 am

Re: vicidial_users corrupt, I can not login

Postby mflorell » Fri May 16, 2014 4:51 pm

Encryption is only enabled if you run that script, there is no need to worry about a pass hash if you have not run the script and enabled encryption.

I really think that if this is a new system something went very wrong during installation. You should probably just start over and do a new install.
mflorell
Site Admin
 
Posts: 18387
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Re: vicidial_users corrupt, I can not login

Postby saulortega » Fri May 16, 2014 5:43 pm

But I have two systems. One new (Vicibox 5.0.3 installed and updated some days ago), another old (Vicibox 4.0.3, updated some days ago). Both have this problem, it happened after update. Both are virtualized.

Any way, I'll reinstall, and update it again... Let's see what happens. :roll:
saulortega
 
Posts: 118
Joined: Mon Jul 29, 2013 11:46 am


Return to Support

Who is online

Users browsing this forum: No registered users and 119 guests

cron