RDO tickets are now tracked in Jira https://issues.redhat.com/projects/RDO/issues/
Bug 979018 - packstack should install mariadb instead of community-mysql on Fedora 19
Summary: packstack should install mariadb instead of community-mysql on Fedora 19
Keywords:
Status: CLOSED DUPLICATE of bug 981116
Alias: None
Product: RDO
Classification: Community
Component: openstack-packstack
Version: unspecified
Hardware: x86_64
OS: Linux
unspecified
low
Target Milestone: ---
: ---
Assignee: RHOS Maint
QA Contact: Nir Magnezi
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-06-27 13:05 UTC by ryo fujita
Modified: 2013-07-10 16:57 UTC (History)
4 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2013-07-10 16:57:51 UTC
Embargoed:


Attachments (Terms of Use)

Description ryo fujita 2013-06-27 13:05:23 UTC
Description of problem:
Installing community-mysql-server results the 'mixed mysql'. And installing packstack fails with authentication error of mysql.

Version-Release number of selected component (if applicable):


How reproducible:
always

Steps to Reproduce:
1. yum -y install openstack-packstack
2. packstack --allinone
3.

Actual results:
community-mysql-server packages requires 'mysql-libs'. yum resolves the dependency with mariadb-libs not mysql-libs.

Expected results:


Additional info:

--- params.pp	2013-06-27 22:01:53.000000000 +0900
+++ params.pp.old	2013-06-27 22:01:38.000000000 +0900
@@ -32,8 +32,8 @@
       $basedir               = '/usr'
       $datadir               = '/var/lib/mysql'
       $service_name          = 'mysqld'
-      $client_package_name   = 'mariadb'
-      $server_package_name   = 'mariadb-server'
+      $client_package_name   = 'mysql'
+      $server_package_name   = 'mysql-server'
       $socket                = '/var/lib/mysql/mysql.sock'
       $pidfile               = '/var/run/mysqld/mysqld.pid'
       $config_file           = '/etc/my.cnf'

Comment 1 ryo fujita 2013-06-27 13:11:33 UTC
Sorry, correct patch is here.


--- params.pp.old	2013-06-27 22:01:38.000000000 +0900
+++ params.pp	2013-06-27 22:01:53.000000000 +0900
@@ -32,8 +32,8 @@
       $basedir               = '/usr'
       $datadir               = '/var/lib/mysql'
       $service_name          = 'mysqld'
-      $client_package_name   = 'mysql'
-      $server_package_name   = 'mysql-server'
+      $client_package_name   = 'mariadb'
+      $server_package_name   = 'mariadb-server'
       $socket                = '/var/lib/mysql/mysql.sock'
       $pidfile               = '/var/run/mysqld/mysqld.pid'
       $config_file           = '/etc/my.cnf'

Comment 2 Martin Magr 2013-07-10 16:57:51 UTC

*** This bug has been marked as a duplicate of bug 981116 ***


Note You need to log in before you can comment on or make changes to this bug.