This article shares the installation and configuration tutorial of MySQL 5.6.23 for your reference. The specific contents are as follows 1 Download mysql 2 Install MySQL 3 Configure environment variables Open My Computer->Properties->Advanced->Environment Variables, select PATH in System Variables, and add the path of your mysql bin folder after it, such as: 4 Testing The above interface appears, indicating that the configuration is successful. You can also enter "net start mysql" to start mysql. The above interface appears, indicating that the startup is successful. Then enter "mysql -hlocalhost -uroot -proot" (the "-h" is your IP address, the "-u" is your username, and the "-p" is your password. If there is no password, you can write "mysql -hlocalhost -uroot -p"), then click Enter. The following interface appears, indicating that the database connection is successful. 5 If the service is not started, you need to start the service
1). Startup method 1. Start using service: service mysqld start 2. Start using the mysqld script: /etc/init.d/mysqld start 3. Start with safe_mysqld: safe_mysqld& 2) Stop 1. Start using service: service mysqld stop 2. Start using the mysqld script: /etc/init.d/mysqld stop 3.mysqladmin shutdown 3) Restart 1. Start using service: service mysqld restart 2. Start using the mysqld script: /etc/init.d/mysqld restart 4). Check the running status 1. Start using service: service mysql status 2. Start using the mysqld script: /init.d/mysqld status The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of Linux one-line command to process batch files
>>: How to implement a multi-terminal bridging platform based on websocket in JS
1. The catalina.bat must be set to UTF-8. If I do...
Preface It took two days to reconstruct a puzzle ...
Table of contents Function definition method Func...
Build the image Earlier we used various images fo...
500 (Internal Server Error) The server encountere...
The <area> tag is mainly used in image maps...
mysql set to case insensitive Windows Go to the d...
1. What is semanticization? Explanation of Bing D...
In the past, when I needed the border length to b...
Method 1: Use lsof command We can use the lsof co...
To merge the following two files, merge them toge...
1. Download, install and configure mysql-8.0.15 1...
Linux file permissions First, let's check the...
1. Introduction to Prometheus Prometheus is an op...
Rendering Code - Take the blue and yellow rings a...