【系统版本】 root@server:~/Desktop# cat /etc/os-release PRETTY_NAME="Linx GNU/Linux 6.0.99" NAME="Linx GNU/Linux" VERSION_ID="8" VERSION="8" ID=Linx HOME_URL="http://www.linx-info.com/" 【内核版本】 uname -a Linux server 4.19.0-11-linx-security-amd64 #1 SMP Linx 4.19.90-2linx6 (2024-07-19) x86_64 GNU/Linux 【gcc版本】 root@server:~/Desktop# gcc --version gcc (GCC) 8.3.0 Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 【glibc版本】 root@server:~/Desktop# ldd --version ldd (Debian GLIBC 2.19-18+deb8u10-linx2) 2.19 Copyright (C) 2014 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 由 Roland McGrath 和 Ulrich Drepper 编写。 【安装包】 GreatSQL-8.0.32-26-Linux-glibc2.17-x86_64.tar.xz 【安装方法】 参考Ubuntu二进制包安装方法,具体如下: 1. 第一步 将安装包、my.cnf、mysqld.service、更改过的mysqld_pre_systemd拷贝至/home下 2. 第二步 tar -xvf /home/GreatSQL-8.0.32-26-Linux-glibc2.17-x86_64.tar.xz mv /home/GreatSQL-8.0.32-26-Linux-glibc2.17-x86_64 /usr/local/mysql 3. 第三步 cd /etc/mysql/ mv my.cnf my.cnf.bak cp /home/my.cnf /etc/mysql/ 4. 第四步 groupadd mysql useradd -g mysql mysql mkdir -p /data/GreatSQL chown -R mysql:mysql /data/GreatSQL chmod -R 700 /data/GreatSQL mkdir -p /var/log/mysql chown -R mysql:mysql /var/log/mysql chmod -R 700 /var/log/mysql 5. 第五步 cp /home/mysqld_pre_systemd /usr/local/mysql/bin/ 6. 第六步 cp /home/mysqld.service /lib/systemd/system/ 7. 第七步 mkdir -p /etc/sysconfig chown -R mysql:mysql /etc/sysconfig chmod -R 700 /etc/sysconfig 8. 第八步 sudo sh -c 'echo "export PATH=/usr/local/mysql/bin:\$PATH" >> /etc/profile' source /etc/profile 9. 第九步 10. 第十步 rm -rf /myproc/SE2000/lib/lib_wanli/* cp -a /usr/local/mysql/lib/* /myproc/SE2000/lib/lib_wanli/ cp -af /myproc/SE2000/lib/lib_wanli/* /myproc/SE2000/lib/(此处是需要更换我们程序下的依赖) nohup mysqld --defaults-file=/etc/mysql/my.cnf --initialize-insecure --user=mysql mysqld --defaults-file=/etc/mysql/my.cnf & 11. 第十一步 systemctl daemon-reload mysql_install_db mysqld_safe & 中间间隔5-10分钟再执行: killall -9 -g mysqld_safe mysqld_safe & 12. 第十二步 mysql -uroot alter user user() identified by 'Dlsoftsa123@'; 【my.cnf第一次配置,导入同样数据需要好几个小时】 [client] socket = /data/GreatSQL/mysql.sock [mysql] loose-skip-binary-as-hex prompt = "(\\D)[\\u@GreatSQL][\\d]>" no-auto-rehash [mysqld] user = mysql port = 3306 server_id = 3306 basedir = /usr/local/mysql datadir = /data/GreatSQL socket = /data/GreatSQL/mysql.sock log_error=/var/log/mysql/error.log pid-file = mysql.pid character-set-server = UTF8MB4 skip_name_resolve = ON default_time_zone = "+8:00" bind_address = "0.0.0.0" secure_file_priv = /data/GreatSQL lower_case_table_names=1 # Performance lock_wait_timeout = 3600 open_files_limit = 65535 back_log = 1024 max_connections = 512 max_connect_errors = 1000000 table_open_cache = 1024 table_definition_cache = 1024 thread_stack = 512K sort_buffer_size = 4M join_buffer_size = 4M read_buffer_size = 8M read_rnd_buffer_size = 4M bulk_insert_buffer_size = 64M thread_cache_size = 768 interactive_timeout = 600 wait_timeout = 600 tmp_table_size = 32M max_heap_table_size = 32M max_allowed_packet = 64M net_buffer_shrink_interval = 180 sql_generate_invisible_primary_key = ON loose-lock_ddl_polling_mode = ON loose-lock_ddl_polling_runtime = 200 # Logs log_timestamps = SYSTEM log_error = error.log log_error_verbosity = 3 slow_query_log = ON log_slow_extra = ON slow_query_log_file = slow.log long_query_time = 0.01 log_queries_not_using_indexes = ON log_throttle_queries_not_using_indexes = 60 min_examined_row_limit = 100 log_slow_admin_statements = ON log_slow_replica_statements = ON log_slow_verbosity = FULL log_bin = binlog binlog_format = ROW sync_binlog = 1 binlog_cache_size = 4M max_binlog_cache_size = 2G max_binlog_size = 1G binlog_space_limit = 500G binlog_rows_query_log_events = ON binlog_expire_logs_seconds = 604800 binlog_checksum = CRC32 binlog_order_commits = OFF gtid_mode = ON enforce_gtid_consistency = ON # Replication relay-log = relaylog relay_log_recovery = ON replica_parallel_type = LOGICAL_CLOCK replica_parallel_workers = 16 binlog_transaction_dependency_tracking = WRITESET replica_preserve_commit_order = ON replica_checkpoint_period = 2 loose-rpl_read_binlog_speed_limit = 100 # MGR loose-plugin_load_add = 'mysql_clone.so' loose-plugin_load_add = 'group_replication.so' loose-group_replication_group_name = "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaa1" loose-group_replication_local_address = "172.16.16.10:33061" loose-group_replication_group_seeds = "172.16.16.10:33061,172.16.16.11:33061,172.16.16.12:33061" loose-group_replication_communication_stack = "XCOM" loose-group_replication_recovery_use_ssl = OFF loose-group_replication_ssl_mode = DISABLED loose-group_replication_start_on_boot = OFF loose-group_replication_bootstrap_group = OFF loose-group_replication_exit_state_action = READ_ONLY loose-group_replication_flow_control_mode = "DISABLED" loose-group_replication_single_primary_mode = ON loose-group_replication_enforce_update_everywhere_checks = OFF loose-group_replication_majority_after_mode = ON loose-group_replication_communication_max_message_size = 10M loose-group_replication_arbitrator = OFF loose-group_replication_single_primary_fast_mode = 1 loose-group_replication_request_time_threshold = 100 loose-group_replication_primary_election_mode = GTID_FIRST loose-group_replication_unreachable_majority_timeout = 0 loose-group_replication_member_expel_timeout = 5 loose-group_replication_autorejoin_tries = 288 loose-group_replication_recovery_get_public_key = ON loose-group_replication_donor_threshold = 100 report_host = "172.16.16.10" # InnoDB innodb_buffer_pool_size = 2G innodb_buffer_pool_instances = 8 innodb_data_file_path = ibdata1:12M:autoextend innodb_flush_log_at_trx_commit = 1 innodb_log_buffer_size = 32M innodb_redo_log_capacity = 6G innodb_doublewrite_files = 2 innodb_max_undo_log_size = 4G innodb_io_capacity = 4000 innodb_io_capacity_max = 8000 innodb_open_files = 65535 innodb_flush_method = O_DIRECT innodb_lru_scan_depth = 4000 innodb_lock_wait_timeout = 10 innodb_rollback_on_timeout = ON innodb_print_all_deadlocks = ON innodb_online_alter_log_max_size = 4G innodb_print_ddl_logs = ON innodb_status_file = ON innodb_status_output = OFF innodb_status_output_locks = ON innodb_sort_buffer_size = 64M innodb_adaptive_hash_index = OFF innodb_numa_interleave = OFF innodb_spin_wait_delay = 20 innodb_print_lock_wait_timeout_info = ON innodb_change_buffering = none kill_idle_transaction = 300 innodb_data_file_async_purge = ON #innodb monitor settings #innodb_monitor_enable = "module_innodb,module_server,module_dml,module_ddl,module_trx,module_os,module_purge,module_log,module_lock,module_buffer,module_index,module_ibuf_system,module_buffer_page,module_adaptive_hash" #pfs settings performance_schema = 1 #performance_schema_instrument = '%memory%=on' performance_schema_instrument = '%lock%=on' 【my.cnf第二次配置,导入同样数据需要两个半小时】 [client] socket = /data/GreatSQL/mysql.sock [mysql] loose-skip-binary-as-hex prompt = "(\\D)[\\u@GreatSQL][\\d]>" no-auto-rehash [mysqld] user = mysql port = 3306 server_id = 3306 basedir = /usr/local/mysql datadir = /data/GreatSQL socket = /data/GreatSQL/mysql.sock log_error=/var/log/mysql/error.log pid-file = mysql.pid character-set-server = UTF8 skip_name_resolve = 1 default_time_zone = "+8:00" bind_address = "0.0.0.0" secure_file_priv = /data/GreatSQL #lower_case_table_names=1 collation_server=utf8_bin # Performance #skip_ssl lock_wait_timeout = 3600 open_files_limit = 65535 back_log = 1024 max_connections = 1000 max_connect_errors = 1000000 table_open_cache = 256 table_definition_cache = 1024 thread_stack = 512K sort_buffer_size = 4M join_buffer_size = 4M read_buffer_size = 8M read_rnd_buffer_size = 4M bulk_insert_buffer_size = 64M thread_cache_size = 8 interactive_timeout = 600 wait_timeout = 600 tmp_table_size = 34M max_heap_table_size = 32M skip_external_locking=1 max_allowed_packet = 256M event_scheduler=1 max_prepared_stmt_count=1048448 max_binlog_size=500M expire_logs_days=10 autocommit=1 net_buffer_shrink_interval = 180 sql_generate_invisible_primary_key = ON loose-lock_ddl_polling_mode = ON loose-lock_ddl_polling_runtime = 200 # Logs log_timestamps = SYSTEM log_error = error.log log_error_verbosity = 3 slow_query_log = ON log_slow_extra = ON slow_query_log_file = slow.log long_query_time = 0.01 log_queries_not_using_indexes = ON log_throttle_queries_not_using_indexes = 60 min_examined_row_limit = 100 log_slow_admin_statements = ON log_slow_replica_statements = ON log_slow_verbosity = FULL log_bin = binlog binlog_format = ROW sync_binlog = 0 binlog_cache_size = 4M max_binlog_cache_size = 2G max_binlog_size = 1G binlog_space_limit = 500G binlog_rows_query_log_events = ON binlog_expire_logs_seconds = 604800 binlog_checksum = CRC32 binlog_order_commits = OFF gtid_mode = ON enforce_gtid_consistency = ON # Replication relay-log = relaylog relay_log_recovery = ON replica_parallel_type = LOGICAL_CLOCK replica_parallel_workers = 16 binlog_transaction_dependency_tracking = WRITESET replica_preserve_commit_order = ON replica_checkpoint_period = 2 loose-rpl_read_binlog_speed_limit = 100 # MGR loose-plugin_load_add = 'mysql_clone.so' loose-plugin_load_add = 'group_replication.so' loose-group_replication_group_name = "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaa1" loose-group_replication_local_address = "172.16.16.10:33061" loose-group_replication_group_seeds = "172.16.16.10:33061,172.16.16.11:33061,172.16.16.12:33061" loose-group_replication_communication_stack = "XCOM" loose-group_replication_recovery_use_ssl = OFF loose-group_replication_ssl_mode = DISABLED loose-group_replication_start_on_boot = OFF loose-group_replication_bootstrap_group = OFF loose-group_replication_exit_state_action = READ_ONLY loose-group_replication_flow_control_mode = "DISABLED" loose-group_replication_single_primary_mode = ON loose-group_replication_enforce_update_everywhere_checks = OFF loose-group_replication_majority_after_mode = ON loose-group_replication_communication_max_message_size = 10M loose-group_replication_arbitrator = OFF loose-group_replication_single_primary_fast_mode = 1 loose-group_replication_request_time_threshold = 100 loose-group_replication_primary_election_mode = GTID_FIRST loose-group_replication_unreachable_majority_timeout = 0 loose-group_replication_member_expel_timeout = 5 loose-group_replication_autorejoin_tries = 288 loose-group_replication_recovery_get_public_key = ON loose-group_replication_donor_threshold = 100 report_host = "172.16.16.10" # InnoDB innodb_buffer_pool_size = 10240M innodb_buffer_pool_instances = 8 innodb_data_file_path = ibdata1:12M:autoextend innodb_file_per_table=1 innodb_flush_log_at_trx_commit = 2 innodb_log_buffer_size = 16M innodb_log_file_size=1024M innodb_redo_log_capacity = 6G innodb_doublewrite_files = 2 innodb_max_undo_log_size = 4G innodb_io_capacity = 4000 innodb_io_capacity_max = 8000 innodb_open_files = 1000 innodb_flush_method = O_DIRECT innodb_lru_scan_depth = 4000 innodb_lock_wait_timeout = 10 innodb_rollback_on_timeout = ON innodb_print_all_deadlocks = ON innodb_online_alter_log_max_size = 4G innodb_print_ddl_logs = ON innodb_status_file = ON innodb_status_output = OFF innodb_status_output_locks = ON innodb_sort_buffer_size = 64M innodb_adaptive_hash_index = OFF innodb_numa_interleave = OFF innodb_spin_wait_delay = 20 innodb_print_lock_wait_timeout_info = ON innodb_change_buffering = none kill_idle_transaction = 300 innodb_data_file_async_purge = ON #innodb monitor settings #innodb_monitor_enable = "module_innodb,module_server,module_dml,module_ddl,module_trx,module_os,module_purge,module_log,module_lock,module_buffer,module_index,module_ibuf_system,module_buffer_page,module_adaptive_hash" #pfs settings performance_schema = 1 #performance_schema_instrument = '%memory%=on' performance_schema_instrument = '%lock%=on' 【my.cnf第三次配置,使用该配置在麒麟系统下验证过导入同样数据需要8分钟左右,但是在凝思99下需要小时起步】 [client] socket = /data/GreatSQL/mysql.sock [mysql] loose-skip-binary-as-hex prompt = "(\\D)[\\u@GreatSQL][\\d]>" no-auto-rehash [mysqld] user = mysql port = 3306 server_id = 3306 basedir = /usr/local/mysql datadir = /data/GreatSQL socket = /data/GreatSQL/mysql.sock log_error=/var/log/mysql/error.log pid-file = mysql.pid secure_file_priv = /data/GreatSQL #skip_ssl max_connections=1000 innodb_buffer_pool_size=10240M table_open_cache=256 tmp_table_size=34M thread_cache_size=8 skip_name_resolve=1 lower_case_table_names=1 character-set-server=utf8 collation_server=utf8_bin group_concat_max_len=512000 skip_external_locking=1 max_allowed_packet = 256M event_scheduler=1 max_prepared_stmt_count=1048448 sync_binlog=0 max_binlog_size=500M expire_logs_days=10 autocommit=1 innodb_file_per_table=1 innodb_flush_log_at_trx_commit=2 innodb_log_buffer_size=16M innodb_log_file_size=1024M innodb_open_files=1000 |
yejr
2025-3-17 09:39:04
| ||
Yep.
2025-3-17 10:04:55
| ||
yejr
2025-3-17 11:19:00
| ||
Yep.
2025-3-17 17:16:25
| ||
Yep.
2025-3-17 17:24:17
| ||
Yep.
2025-3-17 17:26:42
| ||
yejr
2025-3-17 17:54:28
| ||
Yep.
2025-3-18 09:24:15
| ||
caihe.li
2025-3-18 10:06:53
| ||
合作电话:010-64087828
社区邮箱:greatsql@greatdb.com