When searching online for methods to install MySQL under Linux, many methods appeared, but many of them were complicated and not necessarily successful. After trying for a long time, I finally found a simple method. Let me talk about how I installed it. 1. Prepare the installation package (1)mysql-client-5.5.8-1.rhel5.x86_64.rpm (2)MySQL-devel-5.5.8-1.rhel5.x86_64.rpm (3)MySQL-server-5.5.8-1.rhel5.x86_64.rpm 2. Upload the downloaded installation package to Linux 3. Install three installation packages of MySQL rpm -ivh MySQL-server-5.5.8-1.rhel5.x86_64.rpm --nodeps --force rpm -ivh MySQL-devel-5.5.8-1.rhel5.x86_64.rpm --nodeps --force rpm -ivh MySQL-client-5.5.8-1.rhel5.x86_64.rpm --nodeps --force Add -nodeps -force to avoid being affected by dependencies 4 Start MySQL service mysql start Now you can use mysql Summarize The above is a simple method for installing MySQL under Linux that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Solutions to Files/Folders That Cannot Be Deleted in Linux
>>: Detailed explanation of two ways to dynamically change CSS styles in react
Table of contents 1. Docker configuration 2. Crea...
This article example shares the specific code for...
Table of contents 1. Replace the apply method, ge...
Recently, many students have asked me about web p...
1. Introduction By enabling the slow query log, M...
1. Function : Allows the parent component to inse...
js interesting countdown case, for your reference...
Find the containerID of tomcat and enter the toma...
Table of contents What is two-way data binding Im...
During this period of time, I was studying docker...
In the front-end and back-end separation developm...
The SSH mentioned here is called Security Shell. ...
The accessibility of web pages seems to be somethi...
In the project, you will encounter custom public ...
To implement the "Enter != Submit" probl...