mysql配置开机启动

昨天初始化mysql数据库,今天开机进行相关调优、配置

首先查看到mysql开机没有

[[email protected] ~]# ss -lntup|grep mysql

配置/etc/rc.local 将mysql设置为开机启动

方法一、

[[email protected] ~]# vim /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
/etc/init.d/mysqld start
~                       
~
~
~                                                                                                                                                                                                                    
"/etc/rc.local" 8L, 245C 已写入                                                                                                                                                                                           
[[email protected] ~]# reboot
[[email protected] ~]# ss -lntup|grep mysql
tcp    LISTEN     0      50                     *:3306                  *:*      users:(("mysqld",1459,10))

方法二、

[[email protected] ~]chkconfig --add mysqld

[[email protected] ~]chkconfig mysqld on

[[email protected] ~]reboot

重启查看是否生效

[[email protected] ~]# reboot

Broadcast message from [email protected]

(/dev/pts/1) at 5:26 ...

The system is going down for reboot NOW!

[[email protected] ~]#

Last login: Wed Sep 27 05:21:53 2017 from 192.168.3.3

[[email protected] ~]# ss -lntup|grep mysql

tcp    LISTEN     0      50                     *:3306                  *:*      users:(("mysqld",1459,10))

[[email protected] ~]# mysql -uroot -pdongliqiang

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 3

Server version: 5.5.32 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| dongliqiang        |

| mysql              |

| performance_schema |

| test               |

+--------------------+

5 rows in set (0.06 sec)

开机启动还有其他种方法,大家自行尝试,掌握最常用的集中就行了

时间: 2024-11-06 07:31:25

mysql配置开机启动的相关文章

Ubuntu下关闭apache和mysql的开机启动

Ubuntu下关闭apache和mysql的开机启动 sudo apt-get install sysv-rc-conf sudo sysv-rc-conf sudo vi /etc/init/mysql.conf Ubuntu运行级别的总结 一般的linux分7个级别: 0代表关机(halt) 1级别是单用户模式(single) 2级别是多用户级别,这个是默认级别 3,4,5未定义,可以提供给用户定义其他多用户级别 6代表重启(restart) S级别系统内部定义的单用户恢复模式. 相关问题:

Nginx使用(配置开机启动)

环境: 系统:CentOS 6.5 Final 安装目录:/usr/local/nginx Nginx开机自启: ①编写shell实现控制 vi /etc/init.d/nginx 添加内容: #!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description: Nginx is a high-performance web

mysql不能开机启动服务

遇到一件非常郁闷的事情,mysql不能开机启动服务. 用到mysql数据库的时候,需要进入bin目录,手动启动mysqld.exe.非常,非常的不爽. 于是,写了一个小脚本.

Centos 配置开机启动脚本启动 docker 容器

原文:Centos 配置开机启动脚本启动 docker 容器 Centos 配置开机启动脚本启动 docker 容器 Intro 我们的 Centos 服务器上部署了好多个 docker 容器,因故重启的时候就会导致还得手动去手动重启这些 docker 容器,为什么不写个脚本自动重启呢,于是就有了这篇文章. 批量启动 Docker 容器 之前我们有提到过关于 docker 的一些骚操作 ,可以直接使用 docker start $(docker ps -aq) # 启动所有容器 docker s

Linux配置Nginx,MySql,php-fpm开机启动的方法

一. Nginx 开机启动 NGINX SHELL脚本   放到/etc/init.d/下取名nginx 下面代码里根据你原始安装路径去更改 nginx="/usr/localinx/sbininx" NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf" [plain] view plain copy #!/bin/sh # # nginx - this script starts and stops the ngin

Centos下安装最新版Mono并为windwos服务配置开机启动项

一:安装Mono,此步骤参照官网 1:配置Yum仓库 #Centos 7yum install yum-utils rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF" yum-config-manager --add-repo http://download.mono-project.com/repo/cent

【Web】Nginx配置开机启动

在添加nginx服务之后,大家会希望开机伴随启动nginx,避免手动路径输入启动: nginx官方提供了启动脚本:https://www.nginx.com/resources/wiki/start/topics/examples/redhatnginxinit/ nginx 安装可以参考[Web]Nginx下载与安装 配置步骤 1.添加nginx服务,进入/etc/init.d/目录,新添加nginx脚本文件,内容就是官方起启动脚本(/etc/init.d/nginx),如下: 1 #!/bi

Centos 配置开机启动项

Linux system 部署新的服务,初次启动服务都是通过command的方式手工启动,时间久了之后重启系统或有别的人员维护系统[不熟悉环境.业务],可能造成服务未启动.业务受影响,排查起来维护成本较高,且影响业务连续性.因此,设置新增业务为开机启动,显得十分必要,作者本身也是深有体会.本文着重介绍,如何为新增服务设置开启启动. 设置开机启动方式一 #ntsysv [quit ] =--图形界面查看.设置开机启动项 快捷键 CTRL+V 下翻空格键 选中tab quit 命令退出图形界面 设置

Nginx在Centos 7中配置开机启动

1.创建脚本 # vi /etc/init.d/nginx #!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description: Nginx is a high-performance web and proxy server. # It has a lot of features, but it's not for eve