Initial installation was a zcs-4.0.4_GA_457.FC4.tgz on Fedora Core 4.
I tried the workaround on zcs-4.0.4_GA_457.FC4.tgz (OS Version on Fedora Core4)
then I upgraded to zcs-4.0.5_GA_518.FC4.tgz (OS Version on Fedora Core4)
and tried again.
Both times the following results, and I see no proc table after running the .sql.
So I am unsure if i should try the Upgrade to zcs-4.5.0_GA_612.FC4.tgz?
What else can I try to create the proc table as needed, or patch the 4.5.0 install scripts?
step 1 list tables
[root@aws]$ su zimbra
[zimbra@aws]$ zmlocalconfig -s | grep mysql (to fetch the mysql root-password ********)
[zimbra@aws]$ mysql -f -Dmysql -u root --password=******** -e "show tables"
Code:
+---------------------------+
| Tables_in_mysql |
+---------------------------+
| columns_priv |
| db |
| func |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| host |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+
step 2 run .sql
[zimbra@aws]$ mysql -f -Dmysql -u root --password=************ < /opt/zimbra/mysql/share/mysql/mysql_fix_privilege_tables.sql
Code:
ERROR 1060 (42S21) at line 22: Duplicate column name 'File_priv'
@hadGrantPriv:=1
1
1
1
1
1
1
1
1
ERROR 1060 (42S21) at line 28: Duplicate column name 'Grant_priv'
ERROR 1060 (42S21) at line 29: Duplicate column name 'Grant_priv'
ERROR 1060 (42S21) at line 30: Duplicate column name 'Grant_priv'
ERROR 1060 (42S21) at line 41: Duplicate column name 'ssl_type'
ERROR 1054 (42S22) at line 87: Unknown column 'Type' in 'columns_priv'
ERROR 1060 (42S21) at line 93: Duplicate column name 'type'
@hadShowDbPriv:=1
1
1
1
1
1
1
1
1
ERROR 1060 (42S21) at line 103: Duplicate column name 'Show_db_priv'
ERROR 1060 (42S21) at line 120: Duplicate column name 'max_questions'
ERROR 1060 (42S21) at line 130: Duplicate column name 'Create_tmp_table_priv'
ERROR 1060 (42S21) at line 133: Duplicate column name 'Create_tmp_table_priv'
ERROR 1061 (42000) at line 141: Duplicate key name 'Grantor'
step 3 list tables again - brings the sameresult as in step 1 - no proc table
[zimbra@aws]$mysql -f -Dmysql -u root --password=***** -e "show tables"
Code:
+---------------------------+
| Tables_in_mysql |
+---------------------------+
| columns_priv |
| db |
| func |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| host |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+