Hello,
Valid point with mysql_upgrade I have no clue why I didn't do that.
The problem did still exist after just mysql_upgrade but gone after the restart after the mysql_upgrade..
[root@Fedora64 src]# /etc/init.d/mysql restart
Shutting down MySQL... SUCCESS!
Starting MySQL.... SUCCESS!
[root@Fedora64 src]# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 10.0.3-MariaDB MariaDB Server
Copyright (c) 2000, 2013, Oracle, Monty Program Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> show variables;
ERROR 1946 (HY000): Failed to load replication slave GTID position from table mysql.gtid_slave_pos
MariaDB [(none)]> exit
Bye
[root@Fedora64 src]# mysql_upgrade
Phase 1/3: Fixing table and database names
Phase 2/3: Checking and upgrading tables
Processing databases
Start_Of_Demo
incremental_1
incremental_2
information_schema
mysql
mysql.columns_priv OK
mysql.db OK
mysql.event OK
mysql.func OK
mysql.help_category OK
mysql.help_keyword OK
mysql.help_relation OK
mysql.help_topic OK
mysql.host OK
mysql.ndb_binlog_index OK
mysql.plugin OK
mysql.proc OK
mysql.procs_priv OK
mysql.proxies_priv OK
mysql.servers OK
mysql.tables_priv OK
mysql.time_zone OK
mysql.time_zone_leap_second OK
mysql.time_zone_name OK
mysql.time_zone_transition OK
mysql.time_zone_transition_type OK
mysql.user OK
performance_schema
world
world.City OK
world.Country OK
world.CountryLanguage OK
Phase 3/3: Running 'mysql_fix_privilege_tables'...
OK
[root@Fedora64 src]# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 10.0.3-MariaDB MariaDB Server
Copyright (c) 2000, 2013, Oracle, Monty Program Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> show variables;
ERROR 1946 (HY000): Failed to load replication slave GTID position from table mysql.gtid_slave_pos
MariaDB [(none)]>
MariaDB [(none)]> show variables;
....
469 rows in set (0.02 sec)
MariaDB [(none)]> show variables like 'g%';
----------------------------------+
----------------------------------+
general_log |
OFF |
general_log_file |
Fedora64.log |
group_concat_max_len |
1024 |
gtid_binlog_pos |
|
gtid_current_pos |
|
gtid_domain_id |
0 |
gtid_seq_no |
0 |
gtid_slave_pos |
|
gtid_strict_mode |
OFF |
----------------------------------+
9 rows in set (0.00 sec)
From your description in the blog, you re-used the old datadir remaining from 5.5, but didn't run mysql_upgrade after installing 10.0.3. If you check the error log, you're likely to see a number of errors caused by that. Please run mysql_upgrade and restart the server.