diff options
Diffstat (limited to 'systemd/mysqld_oracle.service')
-rw-r--r-- | systemd/mysqld_oracle.service | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/systemd/mysqld_oracle.service b/systemd/mysqld_oracle.service new file mode 100644 index 0000000..68ee265 --- /dev/null +++ b/systemd/mysqld_oracle.service @@ -0,0 +1,15 @@ +[Unit] +Description=MySQL Server (Standalone) +After=syslog.target network.target + +[Service] +User=mysql2 +Group=mysql2 +Type=simple +PIDFile=/run/mysql-standalone/mysqld.pid +ExecStart=/opt/mysql-standalone/bin/mysqld --defaults-file=/etc/my-standalone.cnf -h /var/lib/mysql-standalone --socket=/run/mysql-standalone/mysql.sock --pid-file=/run/mysql-standalone/mysqld.pid +#ExecStop=/usr/bin/kill $MAINPID +RuntimeDirectory=mysql-standalone + +[Install] +WantedBy=multi-user.target |