/etc/init.d/mysql

Since you’ve installed MySQL from source, you’ll need to create a custom init script to manage the MySQL server (start, stop, status) similarly to a service. Here’s a simple init.d script template for MySQL that you can use. This script assumes MySQL is installed in /usr/local/mysql and uses the mysql user.

1. Create the Init Script

Create a new script file in /etc/init.d/:

sudo vim /etc/init.d/mysql

2. Copy the Script Template

Paste the following content into the file:

#!/bin/bash
### BEGIN INIT INFO
# Provides:          mysql
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: MySQL Server
# Description:       MySQL Server
### END INIT INFO# MySQL installation directory
basedir=/usr/local/mysql
# MySQL data directory
datadir=/usr/local/mysql/data
# MySQL binary path
mysqld=${basedir}/bin/mysqld
mysqladmin=${basedir}/bin/mysqladmin
# MySQL user
mysql_user=mysql
# MySQL root user for shutdown (update with correct root password)
mysql_root_password='root_password'# Process ID file location
pidfile=${datadir}/mysqld.pid
# Log file
logfile=${datadir}/mysql.logstart_mysql() {echo "Starting MySQL server..."sudo -u $mysql_user $mysqld --user=$mysql_user --pid-file=$pidfile --log-error=$logfile --explicit_defaults_for_timestamp &echo "MySQL started."
}stop_mysql() {echo "Stopping MySQL server..."sudo -u $mysql_user $mysqladmin -u root -p"$mysql_root_password" shutdownecho "MySQL stopped."
}status_mysql() {if [ -f $pidfile ]; thenecho "MySQL is running (PID: $(cat $pidfile))."elseecho "MySQL is not running."fi
}case "$1" instart)start_mysql;;stop)stop_mysql;;status)status_mysql;;restart)stop_mysqlstart_mysql;;*)echo "Usage: /etc/init.d/mysql {start|stop|status|restart}"exit 1;;
esacexit 0

3. Adjust Configuration

  • MySQL Root Password:
    Update the mysql_root_password variable with the actual root password of your MySQL installation. If you don’t want to hardcode the password, you can be prompted for it or use sudo without password, but it’s less convenient.

  • Paths:
    Ensure the basedir and datadir paths are correct. Adjust them if your MySQL installation or data directory is in a different location.

4. Set Permissions

Make the script executable:

sudo chmod +x /etc/init.d/mysql

5. Enable the Script

To enable the script to start at boot, use the following command:

sudo update-rc.d mysql defaults

6. Managing MySQL

Now you can manage MySQL using the init script:

  • Start MySQL:

    sudo /etc/init.d/mysql start
    
  • Stop MySQL:

    sudo /etc/init.d/mysql stop
    
  • Check MySQL status:

    sudo /etc/init.d/mysql status
    
  • Restart MySQL:

    sudo /etc/init.d/mysql restart
    

This script should work for basic management of your MySQL server.

When the initial root password for MySQL is expired, you’ll need to change it before you can perform any other operations. Here are the steps to update the expired password:

1. Log In to MySQL with the Expired Password

Use the --connect-expired-password option to log in as root with the expired password:

/usr/local/mysql/bin/mysql -u root -p --connect-expired-password

Enter the expired password ,wmdGF>ju3!d when prompted.

2. Change the Root Password

After logging in, change the password using the ALTER USER statement:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewStrongPassword';

Replace 'NewStrongPassword' with your new desired password. Make sure it meets MySQL’s password policy requirements (minimum length, mix of letters, numbers, special characters, etc.).

3. Flush Privileges

If required, you can flush the privileges to ensure the changes take effect immediately:

FLUSH PRIVILEGES;

4. Exit MySQL

Exit the MySQL command-line interface:

EXIT;

5. Verify the New Password

Log in again using the new password to verify that it has been updated successfully:

/usr/local/mysql/bin/mysql -u root -p

Enter your new password when prompted.

This process should update your expired MySQL root password successfully.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/54993.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

leetcode刷题day33|动态规划Part02(62.不同路径、63. 不同路径 II、 343.整数拆分、96.不同的二叉搜索树)

62.不同路径 机器人从(0 , 0) 位置出发,到(m - 1, n - 1)终点。 动规五部曲 1、确定dp数组(dp table)以及下标的含义 dp[i][j] :表示从(0 ,0)出发,到(i, j) 有dp[i][j]条不同的路…

【HTML5】html5开篇基础(3)

1.❤️❤️前言~🥳🎉🎉🎉 Hello, Hello~ 亲爱的朋友们👋👋,这里是E绵绵呀✍️✍️。 如果你喜欢这篇文章,请别吝啬你的点赞❤️❤️和收藏📖📖。如果你对我的…

多元函数微分学基础题

这是基础题!!原则上必须要在第一轮初学并做完课后习题之后再做这个基础题,不能有错误(马虎大意除外)或无法解答。如有错误,该单元需要重学!! 多元函数微分学填空题 一、填空题 如…

CentOS7查看时区、修改时区

使用 timedatectl 命令 推荐使用timedatectl来修改时区。如果没有timedatectl,可以用yum安装。 查看当前时区 timedatectl | grep "Time zone"列出所有时区 timedatectl list-timezones设置时区 sudo timedatectl set-timezone Asia/Shanghai/etc/lo…

在Pytorch中为不同层设置不同学习率来提升性能,优化深度学习模型

在深度学习模型的训练过程中,学习率作为一个关键的超参数,对模型的收敛速度和最终性能有着重大影响。传统方法通常采用统一的学习率,但随着研究的深入,我们发现为网络的不同层设置不同的学习率可能会带来显著的性能提升。本文将详…

基于Java的停车场管理微信小程序 停车场预约系统【源码+文档+讲解】

精彩专栏推荐订阅:在下方主页👇🏻👇🏻👇🏻👇🏻 💖🔥作者主页:计算机毕设木哥🔥 💖 文章目录 一、停车场管理微…

巴鲁夫rfid读头国产平替版——高频RFID读写器

随着RFID技术的不断发展,国内RFID企业的数量也在不断地变多,国产RFID读写器的质量也越来越高。具有着价格实惠、质量可靠等特点,成为了可平替国外RFID产品的首要选择。健永科技的高频RFID读写器JY-H830,是一款可平替巴鲁夫rfid读头…

基于SSM的“实习支教中小学学校信息管理系统”的设计与实现(源码+数据库+文档)

基于SSM的“实习支教中小学学校信息管理系统”的设计与实现(源码数据库文档) 开发语言:Java 数据库:MySQL 技术:SSM 工具:IDEA/Ecilpse、Navicat、Maven 系统展示 系统功能结构图 主页 注册页面 师资力量界面 个…

分库分表方案中的数据倾斜问题及解决方案详解

引言 随着互联网业务的快速发展,数据量呈现出爆发式增长。在高并发、大数据量的场景下,单一数据库很难承载海量数据和请求压力。为此,分库分表成为一种常用的数据库架构优化方案。通过将数据水平切分到不同的数据库或表中,分库分…

机器学习(5):机器学习项目步骤(二)——收集数据与预处理

1. 数据收集与预处理的任务? 为机器学习模型提供好的“燃料” 2. 数据收集与预处理的分步骤? 收集数据-->数据可视化-->数据清洗-->特征工程-->构建特征集和数据集-->拆分数据集、验证集和测试集 3. 数据可视化工作? a. 作用&…

快速上手Cron表达式

参考:Cron - 在线Cron表达式生成器 (ciding.cc) 一、简介 Cron 表达式是一种用于指定定时任务执行时间的字符串表达式。它由 6 个字段组成,分别表示秒、分钟、小时、天数、月份和星期几。每个字段都可以使用特定的符号来指定时间范围或间隔。 ┌────…

【ArcGIS Pro实操第三期】多模式道路网构建(Multi-model road network construction)原理及实操案例

ArcGIS Pro实操第三期:多模式道路网构建原理及实操案例 1 概述1.1 原理 2 GIS实操2.1 新建文件并导入数据2.2 创建网络数据集2.3 设置连接策略(Setting up connectivity policies)2.4 添加成本(Adding cost attributes&#xff09…

使用dockerfile来构建一个包含Jdk17的centos7镜像(构建镜像:centos7-jdk17)

文章目录 1、dockerfile简介2、入门案例2.1、创建目录 /opt/dockerfilejdk172.2、上传 jdk-17_linux-x64_bin.tar.gz 到 /opt/dockerfilejdk172.3、在/opt/dockerfilejdk17目录下创建dockerfile文件2.4、执行命令构建镜像 centos7-jdk17 : 不要忘了后面的那个 .2.5、查看镜像是…

毕业设计——springboot+netty+websocket实现一个简单的ChatGpt机器人聊天

作品详情 WebSocket是html5开始浏览器和服务端进行全双工通信的网络技术。在该协议下,与服务端只需要一次握手,之后建立一条快速通道,开始互相传输数据,实际是基于TCP双向全双工,比http半双工提高了很大的性能&#x…

AURIX单片机示例:开发入门与点亮LED

文章目录 目的模板工程Blinky_LED示例链接总结 目的 这个例程比较简单,主要通过这个例程来介绍 AURIX™ Development Studio(ADS) 和 iLLD 库来开发 AURIX 系列单片机一些入门的内容。一些更为基础的资料等内容可以参考下面文章: 《英飞凌 AURIX TriCo…

翻译:Recent Event Camera Innovations: A Survey

摘要 基于事件的视觉受到人类视觉系统的启发,提供了变革性的功能,例如低延迟、高动态范围和降低功耗。本文对事件相机进行了全面的调查,并追溯了事件相机的发展历程。它介绍了事件相机的基本原理,将其与传统的帧相机进行了比较&am…

完全二叉树的节点个数 C++ 简单问题

完全二叉树 的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置。若最底层为第 h 层,则该层包含 1~ 2h 个节点。 示例 1&#xff…

基于微信小程序的智慧社区的设计与实现

博主介绍: ✌我是阿龙,一名专注于Java技术领域的程序员,全网拥有10W粉丝。作为CSDN特邀作者、博客专家、新星计划导师,我在计算机毕业设计开发方面积累了丰富的经验。同时,我也是掘金、华为云、阿里云、InfoQ等平台…

如何在 Flutter 中实现可拖动的底部弹出框

在 Flutter 开发中,底部弹出框(Bottom Sheet)是一种常见的 UI 组件,通常用于显示一些额外的操作选项或详细信息。在这篇文章中,我将介绍一个自定义的 DragBottomSheetWidget 组件,它不仅支持手势拖动关闭&a…

[leetcode]516_最长回文子序列

给你一个字符串 s ,找出其中最长的回文子序列,并返回该序列的长度。 子序列定义为:不改变剩余字符顺序的情况下,删除某些字符或者不删除任何字符形成的一个序列。示例 1: 输入:s "bbbab" 输出&a…