forked from sipcapture/homer-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79c58ae
commit 0e62601
Showing
3 changed files
with
98 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# | ||
# Simple MySQL systemd service file | ||
# | ||
# systemd supports lots of fancy features, look here (and linked docs) for a full list: | ||
# http://www.freedesktop.org/software/systemd/man/systemd.exec.html | ||
# | ||
# Note: this file ( /usr/lib/systemd/system/mysql.service ) | ||
# will be overwritten on package upgrade, please copy the file to | ||
# | ||
# /etc/systemd/system/mysql.service | ||
# | ||
# to make needed changes. | ||
# | ||
# systemd-delta can be used to check differences between the two mysql.service files. | ||
# | ||
|
||
[Unit] | ||
Description=MySQL Community Server | ||
After=network.target | ||
After=syslog.target | ||
|
||
[Install] | ||
WantedBy=multi-user.target | ||
Alias=mysql.service | ||
|
||
[Service] | ||
User=mysql | ||
Group=mysql | ||
|
||
# Execute pre and post scripts as root | ||
PermissionsStartOnly=true | ||
|
||
# Needed to create system tables etc. | ||
ExecStartPre=/usr/bin/mysql-systemd-start pre | ||
|
||
# Start main service | ||
ExecStart=/usr/bin/mysqld_safe --datadir=/var/sipcapture/mysql | ||
|
||
# Don't signal startup success before a ping works | ||
ExecStartPost=/usr/bin/mysql-systemd-start post | ||
|
||
# Give up if ping don't get an answer | ||
TimeoutSec=600 | ||
|
||
Restart=always | ||
PrivateTmp=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
USE mysql; | ||
INSERT INTO `user` VALUES ('localhost','homer_user','*D0F60D1E3C6C124FEEB76527E00A9380C37643EE','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'); | ||
INSERT INTO `db` VALUES ('localhost','homer_configuration','homer_user','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('localhost','homer_statistic','homer_user','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('localhost','homer_data','homer_user','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); |