cat <<EOF > /usr/lib/systemd/system/MysqL.service
[Unit]
Description=MysqL Server
After=network.target
[Install]
WantedBy=multi-user.target
[Service]
Type=forking
TimeoutSec=0
PermissionsstartOnly=true
ExecStart=/usr/local/MysqL/bin/MysqLd --defaults-file=/etc/my.cnf --daemonize
LimitNOFILE = 65535
Restart=on-failure
RestartSec=10
RestartPreventExitStatus=1
PrivateTmp=false
EOF
#添加可执行权限:
chmod 755 /usr/lib/systemd/system/MysqL.service
#重载 systemctl units
systemctl daemon-reload
#设置为开机自启动
systemctl enable MysqL.service
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。