3 Commits

Author SHA1 Message Date
e78f90c5e5 * Fri Apr 04 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-12.sme
- restore root user, pasword and socket login [SME: 12978]
2025-04-04 22:36:29 -04:00
2d41a90503 * Fri Mar 07 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-11.sme
- upgrade to support mariadb 11.4 [SME: 12930]
  move mariadb-upgrade to mysql.init unit
  remove duplicate in 00_restore_dumped_dbs and 10mysql_upgrade,
  add a tmp.d for pid file, add post action dnf script
  update mariadb.service.d/ content, set default to utfmb4
- mysql.user table filtering [SME: 12592]

* Sun Jan 26 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-8.sme
- prestart script requires daemontools bins [SME: 12566]
2025-03-12 23:12:13 -04:00
93c2c06fff * Fri Mar 07 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-10.sme
- upgrade to support mariadb 11.4 [SME: 12930]
  move mariadb-upgrade to mysql.init unit
  remove duplicate in 00_restore_dumped_dbs and 10mysql_upgrade,
  add a tmp.d for pid file, add post action dnf script
  update mariadb.service.d/ content, set default to utfmb4
- mysql.user table filtering [SME: 12592]

* Sun Jan 26 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-8.sme
- prestart script requires daemontools bins [SME: 12566]
2025-03-09 17:43:02 -04:00
7 changed files with 28 additions and 26 deletions

View File

@@ -1 +0,0 @@
sme10

View File

@@ -9,6 +9,14 @@ safe_symlink("/usr/bin/mariadb-check","root/usr/bin/mysqlcheck");
safe_symlink("/usr/bin/mariadb-admin","root/usr/bin/mysqladmin");
safe_symlink("/usr/bin/mariadb-show","root/usr/bin/mysqlshow");
safe_symlink("/usr/bin/mariadb-upgrade","root/usr/bin/mysql_upgrade");
safe_symlink("/usr/bin/mariadb","root/usr/bin/mysql");
safe_symlink("/usr/bin/mariadb-access","root/usr/bin/mysqlaccess");
safe_symlink("/usr/bin/mariadb-binlog","root/usr/bin/mysqlbinlog");
safe_symlink("/usr/bin/mariadb-convert-table-format","root/usr/bin/mysql_convert_table_format");
safe_symlink("/usr/bin/mariadb-find-rows","root/usr/bin/mysql_find_rows");
safe_symlink("/usr/bin/mariadb-fix-extensions","root/usr/bin/mysql_fix_extensions");
safe_symlink("/usr/bin/mariadb-install-db","root/usr/bin/mysql_install_db");
safe_symlink("/usr/bin/mariadb-embedded","root/usr/bin/mysql_embedded");
#--------------------------------------------------
# pre-backup actions

View File

@@ -4,6 +4,14 @@
my $pw = esmith::util::LdapPassword();
$OUT .= "use mysql;\n";
$OUT .= "SET PASSWORD FOR 'root'\@localhost = PASSWORD(\"$pw\"); \n";
$OUT .= "FLUSH PRIVILEGES;\n";
$OUT .= "CREATE OR REPLACE USER 'root'\@localhost IDENTIFIED VIA unix_socket OR mysql_native_password USING PASSWORD(\"$pw\"); \n";
$OUT .= "GRANT ALL PRIVILEGES ON *.* TO `root`@`localhost` WITH GRANT OPTION; \n";
$OUT .= "FLUSH PRIVILEGES;\n";
# will not work as requires the With_grant privilege.... but accepts second line to alter the table to give it...
#$OUT .= "GRANT PROXY ON ``@`` TO `root`\@localhost WITH GRANT OPTION;\n";
$OUT .= "REPLACE INTO `proxies_priv` (`Host`, `User`, `Proxied_host`, `Proxied_user`, `With_grant`, `Grantor`, `Timestamp`) VALUES
('localhost', 'root', '', '', 1, '', current_timestamp()),
('$SystemName.$DomainName', 'root', '', '', 1, '', current_timestamp());\n";
$OUT .= "FLUSH PRIVILEGES;\n";
}

View File

@@ -3,9 +3,13 @@
exec 2>&1
if [ ! -f /var/lib/mysql/mysql/user.frm ]
then
setuidgid mysql sh /usr/bin/mysql_install_db --rpm --skip-test-db --user=mysql --group=mysql
setuidgid mysql sh /usr/bin/mariadb-install-db --rpm --skip-test-db --user=mysql --group=mysql
if [ -f /home/e-smith/db/mysql/mysql.dump ]
then
/sbin/e-smith/expand-template /etc/e-smith/sql/init/00_restore_dumped_dbs
fi
fi
# set root password and access to socket passwordless
/usr/sbin/mariadbd --socket=/var/lib/mysql/mysql.sock --bootstrap --user=mysql < /var/lib/mysql.private/set.password
exit 0

View File

@@ -1,18 +0,0 @@
#!/bin/bash
for i in $(seq 1 20);
do
if [ -S /var/lib/mysql/mysql.sock ]
then
/usr/bin/mysql < /var/lib/mysql.private/set.password
echo "root password set"
exit 0
fi
echo waiting for mariadb to start to set root password
sleep 1
done
echo failed to set root password
# we fail silently, mariadb will still work, only issue is for phpmyadmin
# and non socket access
exit 0

View File

@@ -36,8 +36,6 @@ ExecStart=/usr/sbin/mariadbd \
--user=mysql \
--pid-file=/run/mariadb/mariadb.pid
ExecStartPost=-/sbin/e-smith/systemd/mariadb-post
[Install]
WantedBy=sme-server.target

View File

@@ -2,7 +2,7 @@ Summary: Koozali SME Server specific mysql configuration and templates.
%define name smeserver-mysql
Name: %{name}
%define version 11.0.0
%define release 9
%define release 12
Version: %{version}
Release: %{release}%{?dist}
License: GPL
@@ -58,7 +58,7 @@ rm -rf $RPM_BUILD_ROOT
--file "/sbin/e-smith/systemd/mariadb-post" 'attr(0554,root,root)' \
--file "/sbin/e-smith/systemd/mysql.init" 'attr(0554,root,root)' \
--file "/usr/bin/mysql_filter_tables" 'attr(0554,root,root)' \
--file "/usr/bin/mysql_filter_user_table" 'attr(0554,root,root)' \
--file "/usr/bin/mysql_filter_user_table" 'attr(0554,root,root)' \
--dir '/home/e-smith/db/mysql' 'attr(0750,root,root)' \
--dir "/var/log/mariadb" 'attr(0750,mysql,mysql)' \
--dir "/var/log/mysql.init" 'attr(0750,root,root)' \
@@ -79,7 +79,10 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
%changelog
* Fri Mar 07 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-9.sme
* Fri Apr 04 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-12.sme
- restore root user, pasword and socket login [SME: 12978]
* Fri Mar 07 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-11.sme
- upgrade to support mariadb 11.4 [SME: 12930]
move mariadb-upgrade to mysql.init unit
remove duplicate in 00_restore_dumped_dbs and 10mysql_upgrade,