Bug 979018
| Summary: | packstack should install mariadb instead of community-mysql on Fedora 19 | ||
|---|---|---|---|
| Product: | [Community] RDO | Reporter: | ryo fujita <rfujita> |
| Component: | openstack-packstack | Assignee: | RHOS Maint <rhos-maint> |
| Status: | CLOSED DUPLICATE | QA Contact: | Nir Magnezi <nmagnezi> |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | unspecified | CC: | aortega, derekh, jkt, mmagr |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-07-10 16:57:51 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
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'
*** This bug has been marked as a duplicate of bug 981116 *** |
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'