Blame SOURCES/README

5ccec1
Package %{?scl_name} provides MariaDB database server delivered as a Software
5ccec1
Collection (SCL). For more information about Software Collections,
5ccec1
see the scl(1) man page. By installing the %{?scl_name} collection,
5ccec1
you will get the minimum working set of packages to have a working
5ccec1
MariaDB database server.
5ccec1
5ccec1
%if 0%{?rhel} >= 7 || 0%{?fedora} >= 15
5ccec1
Usage: systemctl start %{?scl_prefix}mariadb
5ccec1
%else
5ccec1
Usage: service %{?scl_prefix}mariadb start
5ccec1
%endif
5ccec1
5ccec1
Software Collections allow you to build and execute applications
5ccec1
which are not located in the filesystem root hierarchy,
5ccec1
but are stored in an alternative location, which is %{_scl_root}
5ccec1
in case of the %{?scl_name} collection.
5ccec1
5ccec1
MariaDB is a multi-user, multi-threaded SQL database server. It is a
5ccec1
client/server implementation consisting of a server daemon (mysqld)
5ccec1
and many different client programs and libraries. This package contains
5ccec1
the MariaDB server and some accompanying files and directories.
5ccec1
MariaDB is a community developed branch of MySQL.
5ccec1
5ccec1
When you want to work with the %{?scl_name} collection, use the scl
5ccec1
utility (see the scl(1) man page for usage) to enable the scl
5ccec1
environment. The only exception is starting and stopping
5ccec1
%{?scl_prefix}mariadb daemon, where SCL environment is enabled
5ccec1
implicitely within the SysV init script or systemd unit file.
5ccec1
5ccec1
Configuration for the %{?scl_name} software collection is located
5ccec1
under %{_sysconfdir}.
5ccec1
5ccec1
MariaDB server listens on network soket (by default port 3306) and unix socket
5ccec1
(by default /var/lib/mysql/mysql.sock).
5ccec1
5ccec1
Examples:
5ccec1
scl enable %{?scl_name} 'command --arg'
5ccec1
  Run a specific command with the argument --arg within the %{?scl_name}
5ccec1
  software collections environment.
5ccec1
5ccec1
scl enable %{?scl_name} 'mysql -u root -p'
5ccec1
  Run mysql shell from the %{?scl_name} software collection.
5ccec1
5ccec1
scl enable %{?scl_name} bash
5ccec1
  Run an interactive shell with the %{?scl_name} software collection enabled.
5ccec1
5ccec1
%if 0%{?rhel} >= 7 || 0%{?fedora} >= 15
5ccec1
systemctl start %{?scl_prefix}mariadb
5ccec1
%else
5ccec1
service %{?scl_prefix}mariadb start
5ccec1
%endif
5ccec1
    Starts the MariaDB server from %{?scl_name} software collection.
5ccec1
5ccec1
scl enable %{?scl_name} 'man mysql'
5ccec1
  Show man pages for the mysql command, which is a part of the
5ccec1
  %{?scl_name} software collection.
5ccec1
5ccec1
For running the test suite, which is available in %{?scl_prefix}mariadb-test
5ccec1
package, see the %{_datadir}/mysql-test/README. Please, be aware that you need
5ccec1
to run all the commands mentioned in the README file in a proper SCL
5ccec1
environment. Thus the recommended way to run the test suite is to run the bash
5ccec1
with %{?scl_name} collection enabled:
5ccec1
5ccec1
scl enable %{?scl_name} bash
5ccec1
  Run bash with the %{?scl_name} collection enabled.
5ccec1
5ccec1
Files:
5ccec1
%{_scl_scripts}/service-environment
5ccec1
Define which software collections should be enabled for the daemon process.
5ccec1
5ccec1
Report bugs to <http://bugzilla.redhat.com>.