欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

linux下启动MYSQL服务器以及配置自启动命令_MySQL

程序员文章站 2022-04-20 18:30:08
...
bitsCN.com

linux下启动MYSQL服务器以及配置自启动命令

/usr/local/mysql/bin/mysqld_safe --user=mysql&

注意MYSQL安装目录

配置自启动

通过vi /etc/rc.local

常见命令

#!/bin/sh

#

# This script will be executed *after* all the other init scripts.

# You can put your own initialization stuff in here if you don't

# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local

/usr/local/apache/bin/apachectl start

/usr/local/mysql/bin/mysqld_safe --user=mysql &

mount -t nfs 192.168.0.85:/var/www/html/cache /var/www/html/cache

bitsCN.com