Modify MySql/MariaDB password
Modify MySqlMariaDB password
Change Password
Modify the original password as soon as you know it
1 Use the SET PASSWORD command to change the password
2 UPDATE Command Modify Password
3 mysqladim change password
2 Forget the original password to modify
Modify MySql/MariaDB password
Change Passwor ...
Added by mike760534211 on Sat, 27 Jun 2020 19:43:37 +0300
Mysql user management related
Currently used user and host:
mysql> select USER();
+----------------+
| USER() |
+----------------+
| root@localhost |
+----------------+
1 row in set (0.00 sec)
Add user
Before mysql 5, you can directly use INSERT to INSERT mysql users into mysql tables. You can't do this after mysql 5
mysql> insert into mysql.user(Ho ...
Added by snap2000 on Mon, 11 May 2020 19:06:52 +0300
brew installs mysql on Mac OS
I am trying to set up MySQL on Mac OS 10.6 using Homebrew through brew install mysql 5.1.52.
All went well, and MySQL install dB was also successful. However, when I try to connect to the server using the following methods:
/usr/local/Cellar/mysql/5.1.52/bin/mysqladmin -u root password 'mypass'
I get:
/usr/local/Cellar/mysql/5.1.52/ ...
Added by freakuency on Fri, 13 Mar 2020 08:04:52 +0200
MySQL Multi-Instance Profile Start and Close in One File
One time when I was helping my friends solve problems, their server's MySQL was multi-instance, on which I made a master-slave configuration. Before I used multiple instances, I used multiple configuration files. This article mainly describes how to start and close multiple instances in a configuration file.
Profile Content
[ ...
Added by guybrush on Mon, 02 Mar 2020 18:20:49 +0200
MySQL Configuration and Installation
MySQL Configuration and Installation
Project Official: https://downloads.mariadb.org/mariadb/repositories/
Domestic Mirror: https://mirrors.tuna.tsinghua.edu.cn/mariadb/yum/
https://mirrors.tuna.tsinghua.edu.cn/mysql/yum/
RPM Package Install MySQL
CentOS 7 and above: Installation CD-ROM directly ava ...
Added by inspire on Tue, 18 Feb 2020 04:15:01 +0200
Mariadb rights management
Mariadb user and rights management
Permission category
Library level
Table level
Field level
Management category
Program class
Management category:
CREATE TEMPORARY TABLES Create temporary table
CREATE USER Create user
FILE
SUPER
SHOW DATABASES
RELOAD
SHUTDOWN
REPLACTION SLAVE
REPLACTION CLIENT
LOCK TABLES
PRECESS
Progra ...
Added by johnthedeveloper on Sun, 22 Dec 2019 21:52:19 +0200
Differences between MySQL 5.6 and MySQL 5.7 installation
I. differences between MySQL 5.6 and MySQL 5.7 installation
1. cmake added boost to download boost.org
2. When initializing cd /application/mysql/bin/mysql, use mysqld --initialize to replace MySQL? Install? DB. Other parameters remain unchanged: - user= --basedir= --datadir=
3. -- initialize will generate a temporary password
4. You can also ...
Added by furnissg on Mon, 04 Nov 2019 18:44:39 +0200
Installation of mysql decompressed version
1. Download MySQL Community Server from the official website
2. Adding environment variables
path=%MYSQL_HOME%/bin
3. Copy my-default.ini file under the root directory and rename it my.ini. The configuration is as follows:
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/ ...
Added by jucedupp on Fri, 17 May 2019 21:11:31 +0300