A brief analysis of the game kimono memo problem

A brief analysis of the game kimono memo problem

Today, after the game was restarted, I found that the data could not be imported into the target database after it was backed up.

mysql -h10.66.125.733 --port 3306 -u sanda -pX12234455 --default-character-set=utf8 sanda_s10 < /data/mysql/8/user.sql

return

ERROR 1044 (42000) at line 20: Access denied for user 'sanda'@'10.105.%' to database 'sanda_s10'

After checking, the following two permissions are missing:

mysql> grant LOCK TABLES on *.* to sanda@'10.105.%';
mysql> grant alter on *.* to sanda@'10.105.%';

Or grant all permissions

grant all privileges on *.* to 'sanda'@'%' identified by 'X12234455';
grant all privileges on *.* to 'sanda'@'%' with grant option;

2. When mysqldump was being run, when the data was exported more than halfway, the database network connection was disconnected, but the servo operator was not aware that the backup process had been interrupted. Since this was the first time we encountered such an exception, our servo tool needs to strengthen this prompt, and notify the servo operator of the disconnection exception in a timely manner. JAVA calls the system command without returning an error message, so we need to check.

3. Before merging each partition, check whether the disk is large enough for backup.

4.Support multiple areas on one page

5. From the client and server merging a table and sending a request to merge the next table, change it to the server merging a table and broadcasting it to the client, so that there will be no problem even if the connection is disconnected

6. If the primary key conflicts, ignore this item and it will not affect the subsequent execution

Summarize

The above is all the content of this article on the brief analysis of the game kimono memo issue. I hope it will be helpful to everyone. If you have any questions, please leave a message at any time and the editor will reply to you in time. Friends are welcome to refer to other related topics on this site.

You may also be interested in:
  • MySql Memo
  • Batch processing_mysql creates game rankings!

<<:  Linux uses lsof command to check file opening status

>>:  How to use lazy loading in react to reduce the first screen loading time

Recommend

IE8 uses multi-compatibility mode to display web pages normally

IE8 will have multiple compatibility modes . IE pl...

Detailed process of building mongodb and mysql with docker-compose

Let's take a look at the detailed method of b...

Solution to MySQL failure to start

Solution to MySQL failure to start MySQL cannot s...

How to use Web front-end vector icons

Preface When writing front-end pages, we often us...

What to do after installing Ubuntu 20.04 (beginner's guide)

Ubuntu 20.04 has been released, bringing many new...

Install Zookeeper under Docker (standalone and cluster)

After starting Docker, let's take a look at t...

CSS uses BEM naming convention practice

When you see a class, what information do you wan...

Usage of Vue filters and timestamp conversion issues

Table of contents 1. Quickly recognize the concep...

Solve the problem of ugly blue border after adding hyperlink to html image img

HTML img produces an ugly blue border after addin...

Test and solution for MySQL's large memory usage and high CPU usage

After the changes: innodb_buffer_pool_size=576M -...

Node.js sends emails based on STMP protocol and EWS protocol

Table of contents 1 Node.js method of sending ema...