1. Start and stop service instructions1.1 Official MSI installation address of MySQL 5.7 under Windows(Choose your favorite version to install): 1.1.1: Problems encountered in win7: Unable to locate program input point fesetround in dynamic link library Solution: Download C++ library address: After downloading the selected installation, proceed to the next step: 1.2, Windows(mysql57 is the mysql service name):
1.3, Linux(mysql is the name of the MySQL service): Start Shutdown 1.4. Enter mysql in cmd window under windows:cd to the bin directory where mysql is installed: Connect to mysql server: C:\Program Files\MySQL\MySQL Server 5.7\bin>mysql -uroot -p Enter password: ****** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.17-log MySQL Community Server (GPL) Copyright (c) 2000, 2016, 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>
1.4 Database Management1.4.1. Create an orderManage database mysql> create database orderManage; Query OK, 1 row affected (0.00 sec) 1.4.2. Display all databases mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | cluster | |mysql | | test | |orderManage| +--------------------+ 5 rows in set (0.00 sec) It can be found that in the above list, in addition to
1.4.3. Select a data entry Select to enter the orderManage database: mysql> use ordermanage; Database changed From this, we can see that when you choose to enter the database, the database name is not case sensitive. 1.4.4, View all tables in this database mysql> show tables; Empty set (0.00 sec) At this point, it shows that there is no table in the 1.4.5. Delete the database mysql> drop database ordermanage; Query OK, 0 rows affected (0.01 sec) 1.5. Configure MySQL to allow remote accessThe following problems occur when connecting via IP: Solution: Log in to the MySQL database as the root user and query the login user information: mysql -u root -p use mysql; select host from user where user = 'root' Set host to % update user set host='%' where user='root'; After the Host modification is completed, remember to execute flush privileges to make the configuration take effect immediately. flush privileges; This is the end of this article about MySQL service and database management. For more relevant MySQL service and database management content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Three notification bar scrolling effects implemented with pure CSS
>>: Detailed explanation of Linux remote management and sshd service verification knowledge points
There are many servers that can host static websi...
Table of contents 1. Prepare data Create a data t...
Since HTML email is not an independent HOST page o...
Write at the beginning This article only covers E...
This article example shares the specific code of ...
Table of contents Create a Vite project Creating ...
Table of contents Join syntax: 1. InnerJOIN: (Inn...
Table of contents 2. Comma operator 3. JavaScript...
Preface Recently, a Java EE web project that has ...
Table of contents 1. Global Guard 1. Global front...
There is no solution for Chinese input method und...
Preface: MySQL master-slave architecture should b...
<br />Once, Foyin and Mr. Dongpo were chatti...
MySQL string concatenation, interception, replace...
background Since I was assigned to a new project ...