Check if MySQL is already installed in Linux sudo service mysql start //Try to start the MySQL service hint: mysql: unrecongized service //Indicates that the system does not have MySQL You need //Install MySQL server and core programs sudo apt-get install mysql-server //Install the MySQL client sudo apt-get install mysql-client Verify sudo netstat -tap|grep mysql (note that there is a space before netstat and -tap) Modify the configuration file (my.cnf) sudo gedit/etc/mysql/my.cnf Practiced logging in and out of MySQL, using and viewing databases //Start the MySQL service sudo service mysql start // mysql -u root View the database show databases; Connect to database using database name View tables show tables; Quit or exit The above is the detailed explanation of MySql installation and login introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor 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:
|
<<: Pros and Cons of Vite and Vue CLI
>>: 8 Reasons Why You Should Use Xfce Desktop Environment for Linux
When we develop a web project with Django, the te...
Table of contents Uncontrolled components Control...
This article shares the detailed steps of install...
1. Basic use of firewalld start up: systemctl sta...
Two ways to navigate the page Declarative navigat...
1. MyISAM storage engine shortcoming: No support ...
In CSS files, sometimes you need to use background...
1. Import the module and define a validation stat...
This article uses examples to explain the concept...
Today a junior student asked a question. The HTML...
MySQL 8 new features: My personal opinion on MySQ...
This is a large drop-down menu implemented purely...
Table of contents 1. Enter a value and return its...
Many friends who have just started to make web pag...
Article Structure 1. Preparation 2. Install Java ...