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

Implementation code for using CSS text-emphasis to emphasize text

1. Introduction In the past, if you wanted to emp...

TypeScript interface definition case tutorial

The role of the interface: Interface, in English:...

How to clear the validation prompt in element form validation

Table of contents Problem scenario: Solution: 1. ...

Steps to deploy Docker project in IDEA

Now most projects have begun to be deployed on Do...

Vue implements two-way data binding

This article example shares the specific code of ...

Brief introduction and usage of Table and div

Web front end 1 Student ID Name gender age 01 Zha...

Implementation of select multiple data loading optimization in Element

Table of contents Scenario Code Implementation Su...

HTML table tag tutorial (26): cell tag

The attributes of the <TD> tag are used to ...

JavaScript data transmission between different pages (URL parameter acquisition)

On web pages, we often encounter this situation: ...

A brief discussion on the application of Html web page table structured markup

Before talking about the structural markup of web...

Docker container operation instructions summary and detailed explanation

1. Create and run a container docker run -it --rm...

Windows DNS server exposed "worm-level" vulnerability, has existed for 17 years

Vulnerability Introduction The SigRed vulnerabili...

How to solve the 10060 unknow error when Navicat remotely connects to MySQL

Preface: Today I want to remotely connect to MySQ...

A brief discussion on Flex layout and scaling calculation

1. Introduction to Flex Layout Flex is the abbrev...

Summary of 6 Linux log viewing methods

As a backend programmer, you deal with Linux in m...