AlmaLinux9怎么安装MySQL 8.0.32
1、配置安装源
# 安装 dnf install http://mirrors.ustc.edu.cn/mysql-repo/mysql80-community-release-el9.rpm -y # 修改配置 sed -i 's@http://repo.mysql.com/@http://mirrors.ustc.edu.cn/mysql-repo/@g' /etc/yum.repos.d/mysql-community*.repo
2、安装MySQL
dnf install -y mysql-community-server
3、配置MySQL
if [ ! "$(cat /usr/bin/mysqld_pre_systemd | grep -v ^\# | grep initialize-insecure )" ]; then sed -i "s@--initialize @--initialize-insecure @g" /usr/bin/mysqld_pre_systemd fi
4、修改配置文件
[client] port = 3306 socket = /var/lib/mysql/mysql.sock default-character-set = utf8mb4 [mysql] prompt="MySQL [\d]> " no-auto-rehash [mysqld] port = 3306 socket = /var/lib/mysql/mysql.sock default_authentication_plugin = mysql_native_password datadir = /var/lib/mysql pid-file = /var/lib/mysql/mysql.pid user = mysql bind-address = 0.0.0.0 server-id = 1 init-connect = 'SET NAMES utf8mb4' character-set-server = utf8mb4 collation-server = utf8mb4_0900_ai_ci skip-name-resolve #skip-networking back_log = 300 max_connections = 5295 max_connect_errors = 6000 open_files_limit = 65535 table_open_cache = 1024 max_allowed_packet = 500M binlog_cache_size = 1M max_heap_table_size = 8M tmp_table_size = 128M read_buffer_size = 2M read_rnd_buffer_size = 8M sort_buffer_size = 8M join_buffer_size = 8M key_buffer_size = 256M thread_cache_size = 64 ft_min_word_len = 4 log_bin = mysql-bin binlog_format = row binlog_expire_logs_seconds = 604800 log_error = /var/lib/mysql/mysql-error.log slow_query_log = 1 long_query_time = 1 slow_query_log_file = /var/lib/mysql/mysql-slow.log performance_schema = 0 explicit_defaults_for_timestamp lower_case_table_names = 1 skip-external-locking default_storage_engine = InnoDB #default-storage-engine = MyISAM innodb_file_per_table = 1 innodb_open_files = 500 innodb_buffer_pool_size = 1024M innodb_write_io_threads = 4 innodb_read_io_threads = 4 innodb_thread_concurrency = 0 innodb_purge_threads = 1 innodb_flush_log_at_trx_commit = 2 innodb_log_buffer_size = 2M innodb_log_file_size = 32M innodb_log_files_in_group = 3 innodb_max_dirty_pages_pct = 90 innodb_lock_wait_timeout = 120 bulk_insert_buffer_size = 8M myisam_sort_buffer_size = 64M myisam_max_sort_file_size = 10G interactive_timeout = 28800 wait_timeout = 28800 binlog_rows_query_log_events = 1 log_bin_trust_function_creators = 1 log_timestamps = SYSTEM sql_mode = STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION #sql_mode = NO_AUTO_VALUE_ON_ZERO innodb_strict_mode = 0 plugin-load=mysql_clone.so [mysqldump] quick max_allowed_packet = 500M [myisamchk] key_buffer_size = 256M sort_buffer_size = 8M read_buffer = 4M write_buffer = 4M
5、启动MySQL
systemctl enable --now mysqld
6、安全配置
# mysql_secure_installation mysql_secure_installation: [ERROR] unknown variable 'default-character-set=utf8mb4'. Securing the MySQL server deployment. Connecting to MySQL using a blank password. The 'validate_password' component is installed on the server. The subsequent steps will run with the existing configuration of the component. Please set the password for root here. New password: #输入密码 Re-enter new password: #输入密码 Estimated strength of the password: 100 Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? (Press y|Y for Yes, any other key for No) : y Success. Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y Success. By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y - Dropping test database... Success. - Removing privileges on test database... Success. Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y Success. All done!
以上是AlmaLinux9怎么安装MySQL 8.0.32的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undress AI Tool
免费脱衣服图片

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

要显示MySQL中的所有数据库,需使用SHOWDATABASES命令;1.登录MySQL服务器后执行SHOWDATABASES;命令即可列出当前用户有权访问的所有数据库;2.系统数据库如information_schema、mysql、performance_schema和sys默认存在,但权限不足的用户可能无法看到;3.也可通过SELECTSCHEMA_NAMEFROMinformation_schema.SCHEMATA;查询并筛选数据库,例如排除系统数据库以仅显示用户创建的数据库;确保使用

要为现有表添加主键,需使用ALTERTABLE语句配合ADDPRIMARYKEY子句。1.确保目标列无NULL值、无重复且定义为NOTNULL;2.单列主键语法为ALTERTABLE表名ADDPRIMARYKEY(列名);3.多列组合主键语法为ALTERTABLE表名ADDPRIMARYKEY(列1,列2);4.若列允许NULL,需先执行MODIFY设置为NOTNULL;5.每张表仅能有一个主键,添加前需删除旧主键;6.如需自增,可使用MODIFY设置AUTO_INCREMENT。操作前确保数据

检查MySQL服务是否运行,使用sudosystemctlstatusmysql确认并启动;2.确保bind-address设置为0.0.0.0以允许远程连接,并重启服务;3.验证3306端口是否开放,通过netstat检查并配置防火墙规则允许该端口;4.对于“Accessdenied”错误,需核对用户名、密码和主机名,登录MySQL后查询mysql.user表确认权限,必要时创建或更新用户并授权,如使用'your_user'@'%';5.若因caching_sha2_password导致认证失

使用mysqldump是备份MySQL数据库最常用且有效的方法,它能生成包含表结构和数据的SQL脚本。1.基本语法为:mysqldump-u[用户名]-p[数据库名]>backup_file.sql,执行后输入密码即可生成备份文件。2.备份多个数据库使用--databases选项:mysqldump-uroot-p--databasesdb1db2>multiple_dbs_backup.sql。3.备份所有数据库使用--all-databases:mysqldump-uroot-p

B-TreeindexesarebestformostPHPapplications,astheysupportequalityandrangequeries,sorting,andareidealforcolumnsusedinWHERE,JOIN,orORDERBYclauses;2.Full-Textindexesshouldbeusedfornaturallanguageorbooleansearchesontextfieldslikearticlesorproductdescripti

UNIONremovesduplicateswhileUNIONALLkeepsallrowsincludingduplicates;1.UNIONperformsdeduplicationbysortingandcomparingrows,returningonlyuniqueresults,whichmakesitsloweronlargedatasets;2.UNIONALLincludeseveryrowfromeachquerywithoutcheckingforduplicates,

可以通过在GROUP_CONCAT()函数中使用SEPARATOR关键字来自定义分隔符;1.使用SEPARATOR指定自定义分隔符,如SEPARATOR';'可将分隔符改为分号加空格;2.常见示例包括使用管道符'|'、空格''、换行符'\n'或自定义字符串'->'作为分隔符;3.注意分隔符必须为字符串字面量或表达式,且结果长度受group_concat_max_len变量限制,可通过SETSESSIONgroup_concat_max_len=10000;调整;4.SEPARATOR为可选

TheINoperatorinMySQLchecksifavaluematchesanyinaspecifiedlist,simplifyingmultipleORconditions;itworkswithliterals,strings,dates,andsubqueries,improvesqueryreadability,performswellonindexedcolumns,supportsNOTIN(withcautionforNULLs),andcanbecombinedwith
