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

Introduction to the use of anchors (named anchors) in HTML web pages

The following information is compiled from the Int...

Solution to MySQL being unable to start due to excessive memory configuration

Problem Description MySQL reports an error when s...

Use native js to simulate the scrolling effect of live bullet screen

Table of contents 1. Basic principles 2. Specific...

The image element img has extra blank space in IE6

When doing DIV+CSS layout of the page, it is very...

Use neat HTML markup to build your pages

The Internet is an organism that is constantly ev...

JavaScript implements changing the color of a web page through a slider

Hello everyone, today when I was looking at the H...

How to reset the root password in CentOS7

There are various environmental and configuration...

Mysql 5.7.19 free installation version encountered pitfalls (collection)

1. Download the 64-bit zip file from the official...

Summary of Docker configuration container location and tips

Tips for using Docker 1. Clean up all stopped doc...

How to solve the error "ERROR 1045 (28000)" when logging in to MySQL

Today, I logged into the server and prepared to m...

Detailed explanation of MYSQL stored procedure comments

Table of contents 1. Instructions for use 2. Prep...

Nginx access log and error log parameter description

illustrate: There are two main types of nginx log...

Solution to Docker disk space cleaning

Some time ago, I encountered the problem that the...

A collection of common uses of HTML meta tags

What is a mata tag The <meta> element provi...