MySQL Introduction to MySQL MySQL was originally an open source relational database management system. Its original developer was the Swedish company MySQL AB, which was acquired by Sun Microsystems in 2008. In 2009, Oracle acquired Sun Microsystems and MySQL became an Oracle product. In the past, MySQL has become the most popular open source database due to its high performance, low cost and good reliability, and is therefore widely used in small and medium-sized websites on the Internet. As MySQL continues to mature, it is gradually used in more large-scale websites and applications, such as Wikipedia, Google, and Facebook. The "M" in the very popular open source software stack LAMP refers to MySQL. However, after being acquired by Oracle, Oracle significantly increased the price of the commercial version of MySQL, and Oracle no longer supported the development of another free software project, OpenSolaris. As a result, the free software community had concerns about whether Oracle would continue to support the MySQL Community Edition (the only free version of MySQL). MySQL founder Michael Widenius established a branch project MariaDB based on MySQL. Some open source software that originally used MySQL has gradually turned to MariaDB or other databases. For example, Wikipedia officially announced in 2013 that it would migrate from MySQL to MariaDB database[6]. Relational Database A relational database (English: Relational database) is a database created based on the relational model, which uses mathematical concepts and methods such as set algebra to process data in the database. Various entities in the real world and the various connections between entities are represented by relational models. The relational model was first proposed by Edgar Codd in 1970, together with Codd's 12 Laws. Although there is some criticism of this model today, it is still the traditional standard for data storage. The standard data query language SQL is a language based on relational databases. This language performs retrieval and operations on data in relational databases. The relational model consists of three parts: relational data structure, relational operation set, and relational integrity constraints. MySQL Features MySQL is a widely used database with the following features:
MySQL Application Compared with large databases such as Oracle, DB2, SQL Server, etc., MySQL has its own shortcomings, such as small scale and limited functions (MySQL Cluster's functions and efficiency are relatively poor), etc., but this has not reduced its popularity at all. For general individual users and small and medium-sized enterprises, the functions provided by MySQL are more than enough, and because MySQL is open source software, it can greatly reduce the total cost of ownership. Currently, the popular website architecture on the Internet is LAMP (Linux+Apache+MySQL+PHP), which uses Linux as the operating system, Apache as the Web server, MySQL as the database, and PHP as the server-side script interpreter. Since Linux+Apache+MySQL+PHP are all free or open source software (FLOSS), you can use LAMP to build a stable and free website system without spending a penny. MySLQ storage engine
The plug-in storage engine is one of the most important features of the MySQL database. Users can choose how to store and index the database, whether to use transactions, etc. according to application needs. mySQL supports multiple storage engines by default to meet the database application needs in different fields. Users can improve application efficiency by choosing to use different storage engines, providing flexible storage. User settings can be customized and use their own storage engines according to their needs to achieve maximum customizability. The commonly used storage engines of MySQL are MyISAM, InnoDB, MEMORY, and MERGE. InnoDB provides transaction-safe tables, while other storage engines are non-transaction-safe tables. MyISAM is the default storage engine for MySQL. MyISAM does not support transactions or foreign keys, but it has fast access speed and does not require transaction integrity. The InnoDB storage engine provides transaction safety with commit, rollback, and crash recovery capabilities. However, compared to the MyISAM storage engine, InnoDB writes less efficiently and takes up more disk space to retain data and indexes. The only foreign key storage engine supported by MySQL is InnoDB. When creating a foreign key, the attached table must have a corresponding index. The corresponding index will also be automatically created for the subtable when creating a foreign key.
Mainly reflected in performance, transactions, concurrency control, referential integrity, caching, fault recovery, backup and restore, etc. Currently, the more popular storage engines are MyISAM and InnoDB, and MyISAM is the first choice for most Web applications. The main differences between MyISAM and InnoDB are performance and transaction control. MyISAM is an extended implementation of the early ISAM (Indexed Sequential Access Method). ISAM is designed to handle situations where the read frequency is much greater than the write frequency. Therefore, ISAM and the later MyISAM do not consider the support for transactions and do not require transaction records. The query efficiency of ISAM is quite impressive and it takes up very little memory. MyISAM inherits the advantages of ISAM and provides a large number of practical new features and related tools to keep pace with the times. For example, table-level locks are provided to take into account concurrency control. And because MyISAM uses independent storage files for each table (MYD data file and MYI index file), backup and recovery are very convenient (just copy and overwrite), and it also supports online recovery. So if the application does not require transactions, does not support foreign keys, and only handles basic CRUD (create, delete, modify, and query) operations, then MyISAM is the best choice. Install mysql8.0 under linux (CentOS7.5_x86_64) # Download mysql $ wget http://mirrors.163.com/mysql/Downloads/MySQL-8.0/mysql-8.0.13-el7-x86_64.tar.gz # Unzip $ mysql tar -zxvf mysql-8.0.4-rc-linux-glibc2.12-x86_64.tar.gz -C /usr/local # Change the folder name $ mv mysql-8.0.4-rc-linux-glibc2.12-x86_64/mysql Add the default configuration file $ vim/etc/my.cnf [client] port=3306 socket=/tmp/mysql.sock [mysqld] port=3306 user=mysql socket=/tmp/mysql.sock basedir=/usr/local/mysql datadir=/usr/local/mysql/data # Create mysql group $ groupadd mysql # Create mysql user $ useradd -g mysql mysql # Create mysql data directory $ mkdir $MYSQL_HOME/data # Initialize mysql $ /usr/local/mysql/bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data/ # Initialization error bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory # Solution: yum install -y libaio # Initialization error 2018-07-08T02:53:24.542370Z 0 [System] [MY-010116] /usr/local/mysql/bin/mysqld (mysqld 8.0.4-rc) starting as process 17745 ... mysqld: Can't create/write to file '/tmp/mysql/data/ibd35qXQ' (Errcode: 13 - Permission denied) 2018-07-08T02:53:24.554816Z 1 [ERROR] [MY-011066] InnoDB: Unable to create temporary file; errno: 13 2018-07-08T02:53:24.554856Z 1 [ERROR] [MY-011066] InnoDB: InnoDB Database creation was aborted with error Generic error. You may need to delete the ibdata1 file before trying to start up again. 2018-07-08T02:53:24.555000Z 0 [ERROR] [MY-010020] Data Dictionary initialization failed. 2018-07-08T02:53:24.555033Z 0 [ERROR] [MY-010119] Aborting 2018-07-08T02:53:24.555919Z 0 [System] [MY-010910] /usr/local/mysql/bin/mysqld: Shutdown complete. # Solution: Modify the directory permissions of /tmp/mysql $ chown -R mysql:mysql /tmp/mysql # Initialization successful > If there is no abnormality, the log is as follows: You can see that MySQL will generate a root account and password by default: root@localhost:/TI(mjVAs1Ta [root@localhost mysql]# bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data 2019-01-29T10:19:34.023997Z 0 [System] [MY-013169] [Server] /usr/local/mysql/bin/mysqld (mysqld 8.0.13) initializing of server in progress as process 4240 2019-01-29T10:19:39.764895Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: /TI(mjVAs1Ta 2019-01-29T10:19:43.041419Z 0 [System] [MY-013170] [Server] /usr/local/mysql/bin/mysqld (mysqld 8.0.13) initializing of server has completed # Copy the mysql startup file to the system initialization directory $ cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld # Start the mysql server $ service mysqld start Basic mysql operations # Use mysql client to connect to mysql $ /usr/local/mysql/bin/mysql -u root -p password Modify the default initialization password of mysql> alter user 'root'@'localhost' identified by 'root'; # Create a user CREATE USER 'user name'@'host name' INDENTIFIED BY 'user password' > create user 'jack'@'localhost' identified by 'jack'; # Grant permission grant permission on database.table to 'user name'@'login host' [INDENTIFIED BY 'user password']; > grant replication slave on *.* to 'jack'@'localhost'; # Refresh # $ flush privileges; # Modify the root user to be able to connect remotely> update mysql.user set host='%' where user='root'; # View the user used by mysql> select user,host from mysql.user; # docker modify the maximum number of connections for mysql apt-get update apt-get install vim vim /etc/mysql/mysql.conf.d/mysqld.cnf max_connections=1000 > alter user 'root'@'%' identified with mysql_native_password by 'root'; mysql cluster master-slave replication Prepare two installed MySQL servers # Configure the main service and add the following configuration $ vim /etc/my.cnf # Node unique id value server-id=1 # Enable binary log log-bin=mysql-bin # The specified log format is mixed|row|statement. Mixed is recommended. binlog-format=mixed # Step value auto_imcrement. Generally, if there are n master MySQL servers, fill in n (optional configuration) auto_increment_increment=2 # Starting value. Generally, fill in the nth master MySQL. This is the first master MySQL (optional configuration) auto_increment_offset=1 # Ignore the mysql library (optional configuration) binlog-ignore=mysql # Ignore the information_schema library (optional) binlog-ignore=information_schema # Database to be synchronized, all databases by default (optional configuration) replicate-do-db=db1 # slave node configuration # node unique id value server-id=2 # Enable binary log log-bin=mysql-bin # Step value auto_imcrement. Generally, if there are n master MySQL servers, fill in n (optional configuration) auto_increment_increment=2 # Starting value. Generally, fill in the nth master MySQL. This is the first master MySQL (optional configuration) auto_increment_offset=2 # Database to be synchronized, all databases by default (optional configuration) replicate-do-db=db1 # Check the status of the master, especially the current log and location> show master status; +------------------+----------+--------------+------------------+-------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set | +------------------+----------+--------------+------------------+-------------------+ | mysql-bin.000004 | 1608 | | | | +------------------+----------+--------------+------------------+-------------------+ # Execute the following command on the slave node. Note that master_log_file corresponds to the value of file in show master status; and master_log_pos corresponds to the value of position> change master to master_host='192.168.79.15', master_user='root', master_password='root', master_log_file='mysql-bin.000009', master_log_pos=0; # Start slave status (start monitoring msater changes) > start slave; # Check the slave status> show slave status\G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: 192.168.79.15 Master_User: root Master_Port: 3306 Connect_Retry: 60 Master_Log_File:mysql-bin.000009 Read_Master_Log_Pos: 863 Relay_Log_File: node-6-relay-bin.000002 Relay_Log_Pos: 500 Relay_Master_Log_File: mysql-bin.000009 Slave_IO_Running: Yes Slave_SQL_Running: Yes Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 863 Relay_Log_Space: 709 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: 0 Master_SSL_Verify_Server_Cert: No Last_IO_Errno: 0 Last_IO_Error: Last_SQL_Errno: 0 Last_SQL_Error: Replicate_Ignore_Server_Ids: Master_Server_Id: 1 Master_UUID: 6291c709-23af-11e9-99fb-000c29071862 Master_Info_File: mysql.slave_master_info SQL_Delay: 0 SQL_Remaining_Delay: NULL Slave_SQL_Running_State: Slave has read all relay logs; waiting for more updates Master_Retry_Count: 86400 Master_Bind: Last_IO_Error_Timestamp: Last_SQL_Error_Timestamp: Master_SSL_Crl: Master_SSL_Crlpath: Retrieved_Gtid_Set: Executed_Gtid_Set: Auto_Position: 0 Replicate_Rewrite_DB: Channel_Name: Master_TLS_Version: Master_public_key_path: Get_master_public_key: 0 # When Slave_IO_Running: Yes and Slave_SQL_Running: Yes are both yes, it means the master-slave replication is normal. #Reset slave status. $ reset slave; #Pause slave state; $ stop slave; Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: Solution to elementui's el-popover style modification not taking effect
>>: Create a new user in Linux and grant permissions to the specified directory
This topic is an internal sharing in the second h...
This article example shares the specific code of ...
Simple example of adding and removing HTML nodes ...
Table of contents introduce start Install ① Direc...
The layout problem of irregular picture walls enc...
Table of contents Pull the image Run the image (g...
Table of contents 1. Constraint concepts and clas...
I recently helped someone with a project and the ...
When making a web page, we usually need to consid...
Because the company asked me to build a WebServic...
Table of contents 1. Scenario 2. Solution 3. Conc...
Table of contents Binding Class Binding inline st...
Songti: SimSun Bold: SimHei Microsoft YaHei: Micr...
Table of contents 1. Server 2. Client 3. Testing ...
<br />The following are the problems I encou...