search
HomeBackend DevelopmentPHP TutorialDetailed process of installing, configuring and uninstalling mysql using rpm package._PHP tutorial

Detailed process of using rpm package to install, configure and uninstall mysql tutorial.


Detailed process of installing, configuring and uninstalling mysql through rpm package.


Take MySQL-server-4.0.14-0.i386.rpm as an example and place it in the /data directory


cd /data


rpm -ivh MySQL-server-4.0.14-0.i386.rpm


After the installation is completed, there will be a mysql startup script mysql.server and sample configuration files (such as my-huge.cnf, my-large.cnf, my-medium.cnf) in the /usr/share/mysql directory


Copy a sample configuration file as the mysql configuration file:


cp /usr/share/mysql/my-medium.cnf /etc/my.cnf


After the rpm package is installed, mysql is automatically installed as a system service, so you can use the following commands to start and stop mysql


Start mysql


/etc/init.d/mysql start or service mysql start


Stop mysql


/etc/init.d/mysql stop or service mysql stop


At this point, the installation and configuration of the mysql service is complete.


Install mysql client


rpm -ivh MySQL-client-4.0.14-0.i386.rpm


After mysql is installed, the directory structure is as follows:


The tool program is in the /usr/bin directory——ls /usr/bin/mysql*


Server program/usr/sbin/mysqld


Data directory/var/lib/mysql


By default, mysql writes error log files, binary log files and process files in the /var/lib/mysql directory, such as localhost.err, localhost.pid, localhost-bin.001, etc.


To change these situations, you can modify the /etc/my.cnf file


If you write the log file in the /var/log directory, you can add the following two lines to the my.cnf file:


[mysqld_safe]


err-log = /var/log/mysqld.log


There is a utility program /usr/bin/mysql_install_db, which can be used to initialize the mysql database tutorial, that is, create the /var/log/mysql directory, and create the mysql database (mysql authorization table and other information) and the test database (empty database). If you accidentally delete the /var/log/mysql directory, you can initialize it through this program.


Uninstall mysql


rpm -qa|grep -i mysql


rpm -ev MySQL-server-4.0.14-0 MySQL-client-4.0.14-0


After uninstallation, the data in /var/lib/mysql and /etc/my.cnf will not be deleted. If it is determined to be useless, delete it manually


rm -f /etc/my.cnf


rm -rf /var/lib/mysql

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/629839.htmlTechArticleDetailed process of installing, configuring and uninstalling mysql tutorial using rpm package. Installing, configuring and uninstalling mysql through rpm package Detailed process. Take MySQL-server-4.0.14-0.i386.rpm as an example, place it in the /data directory...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何利用GitLab进行项目文档管理如何利用GitLab进行项目文档管理Oct 20, 2023 am 10:40 AM

如何利用GitLab进行项目文档管理一、背景介绍在软件开发过程中,项目文档是非常重要的资料,不仅能够帮助开发团队了解项目的需求和设计,还能提供给测试团队和客户参考。为了方便项目文档的版本控制和团队协作,我们可以利用GitLab来进行项目文档管理。GitLab是一个基于Git的版本控制系统,除了支持代码管理,还可以管理项目文档。二、GitLab环境搭建首先,我

改进编程效率:最佳化Golang包的使用方式改进编程效率:最佳化Golang包的使用方式Jan 16, 2024 am 10:46 AM

随着人工智能和云计算的不断发展,软件开发在当今的商业世界中已经成为至关重要的一部分。而作为一种高效、可扩展性强的编程语言,Golang越来越受到软件开发者的青睐。但是,即使是使用Golang,开发人员也要始终守护着程序执行效率的标准。在这篇文章中,我们将着重探讨如何通过优化Golang包的使用方法,提升编程效率。并且,我们会提供代码示例来帮助读者更好地理解这

Windows 11 Lite:它是什么以及如何在您的 PC 上安装它Windows 11 Lite:它是什么以及如何在您的 PC 上安装它Apr 14, 2023 pm 11:19 PM

我们深知MicrosoftWindows11是一个功能齐全且设计吸引人的操作系统。但是,用户一直要求Windows11Lite版本。尽管它提供了重大改进,但Windows11是一个资源匮乏的操作系统,它可能很快就会使旧机器混乱到无法顺利运行的地步。本文将解决您最常问的关于是否有Windows11Lite版本以及是否可以安全下载的问题。跟着!有Windows11Lite版本吗?我们正在谈论的Windows11Lite21H2版本是由Neelkalpa的T

如何在 Windows 11 中重新安装邮件应用程序如何在 Windows 11 中重新安装邮件应用程序Apr 14, 2023 pm 03:19 PM

<p><strong>邮件应用程序</strong>是Windows11内置的一个非常有用的电子邮件客户端。它允许您从一个位置管理所有邮件帐户。虽然Mail应用程序非常有用,但有时可能需要重置,有时也需要重新安装,原因有多种。在本文中,我们将通过一些简单的步骤说明如何从Windows11轻松卸载Mail应用程序,以及如何轻松地从MicrosoftStore将其取回。</p>&l

linux rpm 存放在哪linux rpm 存放在哪Mar 28, 2023 am 11:22 AM

linux rpm一般默认存放在“/usr/local”或者“/usr/bin”目录下;“/usr/local”目录是提供给一般用户的“/usr”目录,在这里安装一般的应用软件,而“/usr/bin”目录也存放着许多应用程序。

如何查找Linux系统中RPM文件的存储路径?如何查找Linux系统中RPM文件的存储路径?Mar 14, 2024 pm 04:42 PM

在Linux系统中,RPM(RedHatPackageManager)是一种常见的软件包管理工具,用于安装、升级和删除软件包。有时候我们需要找到某个已安装的RPM文件的存储路径,以便进行查找或者其他操作。下面将介绍在Linux系统中如何查找RPM文件的存储路径,同时提供具体的代码示例。首先,我们可以使用rpm命令来查找已安装的RPM包及其存储路径。打开

抖音推荐视频是什么意思?如何利用抖音推荐视频?抖音推荐视频是什么意思?如何利用抖音推荐视频?Mar 27, 2024 pm 03:01 PM

抖音作为一个全球知名的短视频社交平台,靠着其独特的个性化推荐算法赢得了广大用户的青睐。本文将深入研究抖音视频推荐的价值和原理,帮助读者更好地了解和充分利用这一功能。一、什么是抖音推荐视频抖音推荐视频是根据用户的兴趣和行为习惯,利用智能推荐算法为用户筛选和推送个性化视频内容。抖音平台通过分析用户的观看历史、点赞和评论行为、分享记录等数据,从庞大的视频库中精选出最符合用户口味的视频进行推荐。这种个性化推荐系统不仅提高了用户体验,也帮助用户发现更多符合其喜好的视频内容,从而增强用户黏性和留存率。在这个

揭示pip安装包的存储位置解析揭示pip安装包的存储位置解析Jan 18, 2024 am 08:31 AM

pip是Python的包管理工具,能够方便地安装、升级和卸载各种Python包。在使用pip安装包时,它会自动下载包的源码并将其安装到系统中。在安装过程中,pip会将包存储到特定的位置,这决定了我们在代码中如何引用已安装的包。一般情况下,pip会将包存储在Python的site-packages目录下,该目录是Python安装时自动生成的一个存放第三方包的地

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),