mysql-admutils/README.md

29 lines
469 B
Markdown
Raw Normal View History

## MySQL database development files
Sikre at Ubuntu-pakken `libmysqlclient-dev`/`default-libmysqlclient-dev` er installert.
2018-10-05 15:50:26 +02:00
## autoreconf
2018-10-05 14:44:18 +02:00
autoreconf --force --install --symlink
2018-10-05 14:44:18 +02:00
2018-10-05 15:48:52 +02:00
## configure
2018-10-05 13:53:08 +02:00
2018-10-05 15:48:52 +02:00
vanlig, på linux.
2018-10-05 13:53:08 +02:00
2018-10-05 15:57:31 +02:00
./configure --with-mysql=yes --sysconfdir=/etc
2018-10-05 13:53:08 +02:00
2018-10-05 15:57:31 +02:00
For å rydde til start:
2018-10-05 13:53:08 +02:00
2018-10-05 15:57:31 +02:00
make maintainer-clean
2018-10-05 14:05:26 +02:00
2022-11-29 15:35:03 +01:00
## Opprett filen `/etc/mysql-admutils.toml`
Filen skal ha innhold som dette:
```toml
[server]
host="localhost"
user="brukernavn"
password="passord"
```