ajacoutot 7995708f3c Bring rc_bg back. 7 years ago
..
DESCR-main 50c1016581 Import of MariaDB. 11 years ago
DESCR-server 50c1016581 Import of MariaDB. 11 years ago
DESCR-tests 50c1016581 Import of MariaDB. 11 years ago
PLIST-main 357c4982ec update to mariadb-10.0.26, from Brad (maintainer) 8 years ago
PLIST-server 8b9f842051 update to MariaDB 10.0.30, from Brad. Fixes CVE-2017-3302 and CVE-2017-3313. 7 years ago
PLIST-tests 8b9f842051 update to MariaDB 10.0.30, from Brad. Fixes CVE-2017-3302 and CVE-2017-3313. 7 years ago
README-server ab9f7cc3b0 Correct the examples path in the pkg-readme. Issue pointed out by 9 years ago
mysqld.rc 7995708f3c Bring rc_bg back. 7 years ago

README-server

$OpenBSD: README-server,v 1.4 2015/07/17 17:31:27 sthen Exp $

+-----------------------------------------------------------------------
| Running ${FULLPKGNAME} on OpenBSD
+-----------------------------------------------------------------------

Initial setup
=============

If you are installing MariaDB for the first time, you have to create
a default database first. In order to create the database, please run
${TRUEPREFIX}/bin/mysql_install_db

You will need to tune the values in the my.cnf file (examples
available in ${TRUEPREFIX}/share/examples/mysql).

By default, the _mysql user, and so the MariaDB processes run in the
login(1) class of "daemon". On a busy server, it may be advisable
to put the _mysql user and processes in their own login(1) class
with tuned resources, such as more open file descriptors etc.

For example, add this to the login.conf(5) file:

mysqld:\
:openfiles-cur=1024:\
:openfiles-max=2048:\
:tc=daemon:

Rebuild the login.conf.db file if necessary:

# [ -f /etc/login.conf.db ] && cap_mkdb /etc/login.conf

For larger servers and dedicated database servers, these numbers
and memory limits (e.g. datasize and stacksize) may also need to be
increased. Please report any changes and experiences to the package
maintainers so that we can update this file for future versions.

chrooted daemons and MariaDB socket
===================================

For external program running under a chroot(8) to be able to access the
MariaDB server without using a network connection, the socket must be
placed inside the chroot.

e.g. httpd(8) or nginx(8): connecting to MariaDB from PHP
---------------------------------------------------------
Create a directory for the MariaDB socket:

# install -d -m 0711 -o _mysql -g _mysql /var/www/var/run/mysql

Adjust ${SYSCONFDIR}/my.cnf to put and connect to the MariaDB socket
within the chroot:

[client]
socket = /var/www/var/run/mysql/mysql.sock

[mysqld]
socket = /var/www/var/run/mysql/mysql.sock