systemctl start mysqld.service 是以系统服务来启动的,主要注册到环境变量中才能启动
service mysql start 是单独启动mysql服务
有三种方法
1.将mysqld放到/etc/init.d,用/etc/init.d/mysqld restart命令重启;
(cp mysql-5.5.31/support-files/mysql.server /etc/init.d/mysqld)
2.用systemctl systemctl restart mysql或者systemctl restart mariadb;
3.service mysql restart,service mariadb restart。
centos 7 安装 mysql 5.7的步骤
1.创建 /data/mysql文件夹,mkdir /data,mkdir /data/mysql;
2.添加用户组和用户groupadd mysql,useradd -r -g mysql mysql;
3.解压文件到/var/lib,cd /var/lib/;
tar zxf /usr/local/tools/mysql-5.7.17-linux-glibc2.5-x86_64.tar.gz;
mv mysql-5.7.17-linux-glibc2.5-x86_64/ mysql;
4.复制my-default.cnf到etc下cd mysql;
cp support-files/my-default.cnf /etc/my.cnf;
5.修改/etc/my.cnf,basedir=/var/lib/mysql;
datadir=/data/mysql;
6.设置mysql开机启动,# 添加为系统服务,chkconfig --add mysql;
# 设定权限
chkconfig --level 2345 mysql on;
# 查看
chkconfig --list;
7.mysql已经安装完成,重启系统试试吧。
systemctl status mysqld 后怎么停止mysql数据库systemctl命令用法详解
系统环境:Fedora 16
binpath:/bin/systemctl
package:systemd-units
systemctl enable httpd.service
将httpd服务设为开机自动启动
systemctl disable httpd.service
禁止httpd服务开机自动启动
systemctl status httpd.service
查看httpd服务的运行状态
//Loaded行中的enabled表示该服务是开机自动启动的,disable表示该服务不是开机自动启动的
systemctl is-active httpd.service
检查httpd服务是否处于活动状态
systemctl start httpd.service
启动httpd服务
systemctl stop httpd.service
停止httpd服务
systemctl restart httpd.service
重新启动httpd服务
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)