详解MySQL 索引+explain

mysql视频教程栏目今天着重介绍索引+explain,为需要面试的准备。

详解MySQL 索引+explain

免费推荐:mysql视频教程

一、索引的介绍

在mysql中,索引就是数据结构,已经在文件中按照索引进行排序好的结构.使用索引可以加快我们的查询速度,但是对我们的数据增删改效率会降低.因为一个网站大部分都是查询,我们主要优化select语句.

二、MySQL中索引的分类

普通索引 key唯一索引 unique key unique key 别名 别名可忽略 别名可忽略主键索引 primary key(字段)全文索引myisam引擎支持(只对英文进行索引,mysql版本5.6也支持),sphinx(中文搜索)混合索引 多个字段组成的索引.如 key key_index(title,email)

三、索引的基本操作

1、给表添加索引

create table t_index(    id int not null auto_increment,    title varchar(30) not null default '',    email varchar(30) not null default '',    primary key(id),    unique key uni_email(email) ,    key key_title(title))engine=innodb charset=utf8;

查看表

desc tablename

mysql> desc t_index;+-------+-------------+------+-----+---------+----------------+| Field | Type        | Null | Key | Default | Extra          |+-------+-------------+------+-----+---------+----------------+| id    | int(11)     | NO   | PRI | NULL    | auto_increment || title | varchar(30) | NO   | MUL |         |                || email | varchar(30) | NO   | UNI |         |                |+-------+-------------+------+-----+---------+----------------+3 rows in set (0.01 sec)

查看表的创建语句

show create table tbalename/G

mysql> show create table t_index/G;ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '/G' at line 1mysql> show create table t_indexG;*************************** 1. row ***************************       Table: t_indexCreate Table: CREATE TABLE `t_index` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `title` varchar(30) NOT NULL DEFAULT '',  `email` varchar(30) NOT NULL DEFAULT '',  PRIMARY KEY (`id`),  UNIQUE KEY `uni_email` (`email`),  KEY `key_title` (`title`)) ENGINE=InnoDB DEFAULT CHARSET=utf81 row in set (0.00 sec)ERROR: No query specified

2、删除索引

删除主键索引

alter table table_name drop primary key;

注意:

mysql> alter table t_index drop primary key;ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key

主键不一定是自增长,但是自增长一定是主键。

删除逐渐之前先要把主键索引的自增长去掉。

mysql> alter table t_index modify  id int not null;Query OK, 0 rows affected (0.05 sec)Records: 0  Duplicates: 0  Warnings: 0

再来删除主键

mysql> alter table t_index drop primary key;Query OK, 0 rows affected (0.04 sec)Records: 0  Duplicates: 0  Warnings: 0
删除普通和唯一的索引

alter table table_name drop key ‘索引的别名’

实际操作

mysql> alter table t_index drop key uni_email;Query OK, 0 rows affected (0.03 sec)Records: 0  Duplicates: 0  Warnings: 0
mysql> alter table t_index drop key key_title;Query OK, 0 rows affected (0.02 sec)Records: 0  Duplicates: 0  Warnings: 0

3、添加索引

alter table t_index add key key_title(title);alter table t_index add key uni_email(email);alter table t_index add primary key(id);

4、有无索引对比

create table article(id int not null auto_increment,no_index int,title varchar(30) not null default '',add_time datetime,primary key(id));

插入数据

mysql> insert into article(id,title,add_time) values(null,'ddsd1212123d',now());mysql> insert into article(title,add_time) select title,now() from article;Query OK, 10 rows affected (0.01 sec)Records: 10  Duplicates: 0  Warnings: 0mysql> update article set no_index=id;

有无索引查询数据对比

mysql> select * from article where no_index=1495298;+---------+----------+-----------+---------------------+| id      | no_index | title     | add_time            |+---------+----------+-----------+---------------------+| 1495298 |  1495298 | ddsd1123d | 2019-05-15 23:13:56 |+---------+----------+-----------+---------------------+1 row in set (0.28 sec)
mysql> select * from article where id=1495298;+---------+----------+-----------+---------------------+| id      | no_index | title     | add_time            |+---------+----------+-----------+---------------------+| 1495298 |  1495298 | ddsd1123d | 2019-05-15 23:13:56 |+---------+----------+-----------+---------------------+1 row in set (0.01 sec)

表结构

mysql> show create table articleG;*************************** 1. row ***************************       Table: articleCreate Table: CREATE TABLE `article` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `no_index` int(11) DEFAULT NULL,  `title` varchar(30) NOT NULL DEFAULT '',  `add_time` datetime DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=1572824 DEFAULT CHARSET=utf81 row in set (0.00 sec)ERROR: No query specified

四、explain分析

使用explain可以对sql语句进行分析到底有没有使用到索引查询,从而更好的优化它.

我们只需要在select语句前面加上一句explain或者desc.

1、语法

explain|desc select * from tablename G;

2、分析

用刚才的两个有无索引对比看看

mysql> mysql> explain select * from article where no_index=1495298G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE//单表查询        table: article//查询的表名   partitions: NULL         type: ALL//索引的类型,从好到坏的情况是:system>const>range>index>Allpossible_keys: NULL//可能使用到的索引          key: NULL//实际使用到的索引      key_len: NULL//索引的长度          ref: NULL         rows: 1307580//可能进行扫描表的行数     filtered: 10.00        Extra: Using where1 row in set, 1 warning (0.00 sec)ERROR: No query specified
mysql> explain select * from article where id=1495298G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: const//当对主键索引进行等值查询的时候出现constpossible_keys: PRIMARY          key: PRIMARY//实际使用到的所有primary索引      key_len: 4//索引的长度4 = int占4个字节          ref: const         rows: 1//所扫描的行数只有一行     filtered: 100.00        Extra: NULL1 row in set, 1 warning (0.00 sec)ERROR: No query specified

3、explain的type项分析

type项从优到差依次排序:

system:一般系统表只有一行记录的时候才会出现const:当对主键值进行等值查询的时候会出现,如where id=666666range:当对索引的值进行范围查询的时候会出现,如 where id<100000index:当我们查询的字段恰好是我们索引文件中的值,就会出现All:最差的一种情况,需要避免.

实际测试

mysql> use mysql;mysql> explain select * from userG;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: user   partitions: NULL         type: ALLpossible_keys: NULL          key: NULL      key_len: NULL          ref: NULL         rows: 3     filtered: 100.00        Extra: NULL1 row in set, 1 warning (0.00 sec)
mysql> use test;mysql> explain select * from article where id=666666G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: constpossible_keys: PRIMARY          key: PRIMARY      key_len: 4          ref: const         rows: 1     filtered: 100.00        Extra: NULL
mysql> explain select * from article where id>666666G;mysql> explain select * from article where id<666666G;
mysql> explain select id  from article G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: indexpossible_keys: NULL          key: PRIMARY      key_len: 4          ref: NULL         rows: 1307580     filtered: 100.00        Extra: Using index1 row in set, 1 warning (0.00 sec)ERROR: No query specified

如果查询的字段在索引文件存在,那么就会直接从索引文件中进行查询,我们把这种查询称之为索引覆盖查询。

出现all,我们需要避免,因为进行全面扫描。

对于出现all的,可以给该字段增加普通索引查询

mysql> alter table article add key key_no_index(no_index);Query OK, 0 rows affected (1.92 sec)Records: 0  Duplicates: 0  Warnings: 0type为ref,应该是关联,但是ref是constmysql> explain select * from article where no_index=666666G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: refpossible_keys: key_no_index          key: key_no_index      key_len: 5          ref: const         rows: 1     filtered: 100.00        Extra: NULL1 row in set, 1 warning (0.00 sec)速度飞跃mysql> select * from article where no_index=666666;+--------+----------+-----------+---------------------+| id     | no_index | title     | add_time            |+--------+----------+-----------+---------------------+| 666666 |   666666 | ddsd1123d | 2019-05-15 23:13:55 |+--------+----------+-----------+---------------------+1 row in set (0.00 sec)

4、使用索引的场景

1、 经常出现在where后面的字段,我们需要给他加索引
2、order by 语句使用索引的优化
mysql> explain select * from article order by idG;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: indexpossible_keys: NULL          key: PRIMARY      key_len: 4          ref: NULL         rows: 1307580     filtered: 100.00        Extra: NULL1 row in set, 1 warning (0.00 sec)ERROR: No query specifiedmysql> explain select * from article where id >0  order by idG;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: rangepossible_keys: PRIMARY          key: PRIMARY      key_len: 4          ref: NULL         rows: 653790     filtered: 100.00        Extra: Using where1 row in set, 1 warning (0.01 sec)ERROR: No query specified

可以看出,即使是使用了索引但是几乎还是全表扫描。

加了where就少了一半

3、针对like的模糊查询索引的优化

where title like ‘%keyword%’ ====>全表扫描

where title like ‘keyword%’ ===>会使用到索引查询

给title加上铺索引

Sveil开源商城 Sveil开源商城

Sveil开源商城是专业和创新的开源在线购物车的解决方案,是基于osCommerce 3 alpha 5 独立开发的项目。环境为PHP+MYSQL,使用了先进的AJAX技术和富互联网应用(RIA)的框架ExtJS,由Sveil.com提供重要的可用性改善及与网站交互界面速度更快,更高效。VERSION 1.0–修复bug1、网站在维护2、当搜索引擎被激活,与我们联系功能不起作用。3、当SEO被激

Sveil开源商城 6 查看详情 Sveil开源商城

mysql> alter table article  add key key_index(title);Query OK, 0 rows affected (2.16 sec)Records: 0  Duplicates: 0  Warnings: 0mysql> show create table articleG;*************************** 1. row ***************************       Table: articleCreate Table: CREATE TABLE `article` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `no_index` int(11) DEFAULT NULL,  `title` varchar(30) NOT NULL DEFAULT '',  `add_time` datetime DEFAULT NULL,  PRIMARY KEY (`id`),  KEY `key_no_index` (`no_index`),  KEY `key_index` (`title`)) ENGINE=InnoDB AUTO_INCREMENT=1507299 DEFAULT CHARSET=utf81 row in set (0.00 sec)

因为%没有出现在like关键字查询的最左边,所以可以使用到索引查询

只要是like左边出现了%,就是全表查询

mysql> explain select * from article where title like 'a%'G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: range//范围查询possible_keys: key_index          key: key_index      key_len: 92//          ref: NULL         rows: 1     filtered: 100.00        Extra: Using index condition1 row in set, 1 warning (0.00 sec)mysql> explain select * from article where title like '%a%'G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: ALL//全表查询possible_keys: NULL          key: NULL      key_len: NULL          ref: NULL         rows: 1307580     filtered: 11.11        Extra: Using where1 row in set, 1 warning (0.00 sec)
4、limit语句的索引使用优化

针对于limit语句的优化,我们可以在它前面加order by 索引字段

如果order by的字段是索引,会先去索引文件中查找指定行数的数据

mysql> explain select sql_no_cache  * from article limit 90000,10 G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: ALL//全表possible_keys: NULL          key: NULL      key_len: NULL          ref: NULL         rows: 1307580     filtered: 100.00        Extra: NULL1 row in set, 2 warnings (0.00 sec)ERROR: No query specifiedmysql> explain select sql_no_cache  * from article order by id  limit 90000,10 G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: indexpossible_keys: NULL          key: PRIMARY//使用到了索引      key_len: 4          ref: NULL         rows: 90010     filtered: 100.00        Extra: NULL1 row in set, 2 warnings (0.00 sec)ERROR: No query specified

另外一种针对于limit的优化方法:

索引覆盖+延时关联

原理:主要利用索引覆盖查询,把覆盖索引查询返回的id作为与我们要查询记录的id进行相关联,

mysql> select sql_no_cache  * from article limit 1000000,10;+---------+----------+----------------+---------------------+| id      | no_index | title          | add_time            |+---------+----------+----------------+---------------------+| 1196579 |  1196579 | ddsd12123123ad | 2019-05-15 23:13:56 || 1196580 |  1196580 | ddsd121231ad   | 2019-05-15 23:13:56 || 1196581 |  1196581 | ddsd1212123d   | 2019-05-15 23:13:56 || 1196582 |  1196582 | ddsd1123123d   | 2019-05-15 23:13:56 || 1196583 |  1196583 | ddsd1123d      | 2019-05-15 23:13:56 || 1196584 |  1196584 | ddsd1123d      | 2019-05-15 23:13:56 || 1196585 |  1196585 | ddsd1123d      | 2019-05-15 23:13:56 || 1196586 |  1196586 | ddsd1123d      | 2019-05-15 23:13:56 || 1196587 |  1196587 | ddsd1123d      | 2019-05-15 23:13:56 || 1196588 |  1196588 | ddsd1123d      | 2019-05-15 23:13:56 |+---------+----------+----------------+---------------------+10 rows in set, 1 warning (0.21 sec)mysql> select t1.* from article as t1 inner join (select id as pid from article  limit 10000,10) as t2 on t1.id=t2.pid;+-------+----------+----------------+---------------------+| id    | no_index | title          | add_time            |+-------+----------+----------------+---------------------+| 13058 |    13058 | ddsd12123123ad | 2019-05-15 23:13:49 || 13059 |    13059 | ddsd121231ad   | 2019-05-15 23:13:49 || 13060 |    13060 | ddsd1212123d   | 2019-05-15 23:13:49 || 13061 |    13061 | ddsd1123123d   | 2019-05-15 23:13:49 || 13062 |    13062 | ddsd1123d      | 2019-05-15 23:13:49 || 13063 |    13063 | ddsd1123d      | 2019-05-15 23:13:49 || 13064 |    13064 | ddsd1123d      | 2019-05-15 23:13:49 || 13065 |    13065 | ddsd1123d      | 2019-05-15 23:13:49 || 13066 |    13066 | ddsd1123d      | 2019-05-15 23:13:49 || 13067 |    13067 | ddsd1123d      | 2019-05-15 23:13:49 |+-------+----------+----------------+---------------------+10 rows in set (0.00 sec)
5、复合(多列)索引的最左原则(面试经常问)

只要查询的时候出现复合索引的最左边的字段才会使用到索引查询

把article表的no_index和title建立复合索引:

//给no_index和title创建一个复合索引mysql> alter table article add key index_no_index_title(no_index,title);Query OK, 0 rows affected (1.18 sec)Records: 0  Duplicates: 0  Warnings: 0//查看创建后的结构mysql> show create table articleG;*************************** 1. row ***************************       Table: articleCreate Table: CREATE TABLE `article` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `no_index` int(11) DEFAULT NULL,  `title` varchar(30) NOT NULL DEFAULT '',  `add_time` datetime DEFAULT NULL,  PRIMARY KEY (`id`),  KEY `key_no_index` (`no_index`),  KEY `key_index` (`title`),  KEY `index_no_index_title` (`no_index`,`title`)) ENGINE=InnoDB AUTO_INCREMENT=1507299 DEFAULT CHARSET=utf81 row in set (0.00 sec)//删除no_index和title的索引mysql> alter table article drop key key_index;Query OK, 0 rows affected (0.05 sec)Records: 0  Duplicates: 0  Warnings: 0mysql> alter table article drop key key_no_index;Query OK, 0 rows affected (0.03 sec)Records: 0  Duplicates: 0  Warnings: 0mysql> show create table articleG;*************************** 1. row ***************************       Table: articleCreate Table: CREATE TABLE `article` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `no_index` int(11) DEFAULT NULL,  `title` varchar(30) NOT NULL DEFAULT '',  `add_time` datetime DEFAULT NULL,  PRIMARY KEY (`id`),  KEY `index_no_index_title` (`no_index`,`title`)) ENGINE=InnoDB AUTO_INCREMENT=1507299 DEFAULT CHARSET=utf81 row in set (0.00 sec)//复合索引使用情况mysql> explain select * from article where title='ddsd1123d' and no_index=77777G;*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: refpossible_keys: index_no_index_title          key: index_no_index_title      key_len: 97          ref: const,const         rows: 1     filtered: 100.00        Extra: NULL1 row in set, 1 warning (0.00 sec)mysql> explain select * from article where  no_index=77777G; *************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: article   partitions: NULL         type: refpossible_keys: index_no_index_title          key: index_no_index_title      key_len: 5          ref: const         rows: 1     filtered: 100.00        Extra: NULL1 row in set, 1 warning (0.00 sec)

五、慢查询日志

1、介绍

我们可以定义(程序员)一个sql语句执行的最大执行时间,如果发现某条sql语句的执行时间超过我们所规定的时间界限,那么这条sql就会被记录下来.

2、慢查询具体操作

先开启慢日志查询

查看慢日志配置

mysql> show variables like '%slow_query%';+---------------------+--------------------------------------------------+| Variable_name       | Value                                            |+---------------------+--------------------------------------------------+| slow_query_log      | OFF                                              || slow_query_log_file | /usr/local/mysql/data/caredeMacBook-Pro-slow.log |+---------------------+--------------------------------------------------+2 rows in set (0.00 sec)

开启慢日志查询

mysql> set global slow_query_log=on;Query OK, 0 rows affected (0.00 sec)

再次检查慢日志配置

mysql> show variables like '%slow_query%';+---------------------+--------------------------------------------------+| Variable_name       | Value                                            |+---------------------+--------------------------------------------------+| slow_query_log      | ON                                               || slow_query_log_file | /usr/local/mysql/data/caredeMacBook-Pro-slow.log |+---------------------+--------------------------------------------------+2 rows in set (0.00 sec)

去mysql配置文件my.ini中指定sql语句的界限时间和慢日志文件的路径

慢日志的名称,默认保存在mysql目录下面的data目录下面

log-slow-queries = 'man.txt'

设置一个界限时间

long-query-time=5

重启

六、profile工具

1、介绍

通过profile工具分析一条sql语句的时间消耗在哪里

2、具体操作

开启profile

执行一条SQL,(开启之后执行的所有SQL语句都会被记录下来

,以查看某条sql语句的具体执行时间耗费哪里)

根据query_id查找到具体的SQL

实例:

//查看profile设置mysql> show variables like '%profil%';+------------------------+-------+| Variable_name          | Value |+------------------------+-------+| have_profiling         | YES   || profiling              | OFF   |//未开启状态| profiling_history_size | 15    |+------------------------+-------+3 rows in set (0.00 sec)//开启操作mysql> set profiling = on;Query OK, 0 rows affected, 1 warning (0.00 sec)//查看是否开启成功mysql> show variables like '%profil%';+------------------------+-------+| Variable_name          | Value |+------------------------+-------+| have_profiling         | YES   || profiling              | ON    |//开启成功| profiling_history_size | 15    |+------------------------+-------+3 rows in set (0.00 sec)

具体查询

mysql> select * from article where no_index=666666;+--------+----------+-----------+---------------------+| id     | no_index | title     | add_time            |+--------+----------+-----------+---------------------+| 666666 |   666666 | ddsd1123d | 2019-05-15 23:13:55 |+--------+----------+-----------+---------------------+1 row in set (0.02 sec)mysql> show profiles;+----------+------------+---------------------------------------------+| Query_ID | Duration   | Query                                       |+----------+------------+---------------------------------------------+|        1 | 0.00150700 | show variables like '%profil%'              ||        2 | 0.01481100 | select * from article where no_index=666666 |+----------+------------+---------------------------------------------+2 rows in set, 1 warning (0.00 sec)mysql> show profile for query 2;+----------------------+----------+| Status               | Duration |+----------------------+----------+| starting             | 0.000291 || checking permissions | 0.000007 || Opening tables       | 0.012663 |//打开表| init                 | 0.000050 || System lock          | 0.000009 || optimizing           | 0.000053 || statistics           | 0.001566 || preparing            | 0.000015 || executing            | 0.000002 || Sending data         | 0.000091 |//磁盘上的发送数据| end                  | 0.000004 || query end            | 0.000007 || closing tables       | 0.000006 || freeing items        | 0.000037 || cleaning up          | 0.000010 |+----------------------+----------+15 rows in set, 1 warning (0.01 sec)

以上就是详解MySQL 索引+explain的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/778030.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年11月26日 08:24:08
下一篇 2025年11月26日 08:29:33

相关推荐

  • AO3镜像站备用镜像网址_AO3镜像站快速访问官网

    AO3镜像站备用网址包括ao3mirror.com和xiaozhan.icu,当主站archiveofourown.org无法访问时可切换使用,二者均同步更新内容并支持多语言检索与离线下载功能。 AO3镜像站备用镜像网址在哪里?这是不少网友都关注的,接下来由PHP小编为大家带来AO3镜像站快速访问官…

    2025年12月6日 软件教程
    000
  • Pboot插件缓存机制的详细解析_Pboot插件缓存清理的命令操作

    插件功能异常或页面显示陈旧内容可能是缓存未更新所致。PbootCMS通过/runtime/cache/与/runtime/temp/目录缓存插件配置、模板解析结果和数据库查询数据,提升性能但影响调试。解决方法包括:1. 手动删除上述目录下所有文件;2. 后台进入“系统工具”-“缓存管理”,勾选插件、…

    2025年12月6日 软件教程
    100
  • 怎样用免费工具美化PPT_免费美化PPT的实用方法分享

    利用KIMI智能助手可免费将PPT美化为科技感风格,但需核对文字准确性;2. 天工AI擅长优化内容结构,提升逻辑性,适合高质量内容需求;3. SlidesAI支持语音输入与自动排版,操作便捷,利于紧急场景;4. Prezo提供多种模板,自动生成图文并茂幻灯片,适合学生与初创团队。 如果您有一份内容完…

    2025年12月6日 软件教程
    000
  • Pages怎么协作编辑同一文档 Pages多人实时协作的流程

    首先启用Pages共享功能,点击右上角共享按钮并选择“添加协作者”,设置为可编辑并生成链接;接着复制链接通过邮件或社交软件发送给成员,确保其使用Apple ID登录iCloud后即可加入编辑;也可直接在共享菜单中输入邮箱地址定向邀请,设定编辑权限后发送;最后在共享面板中管理协作者权限,查看实时在线状…

    2025年12月6日 软件教程
    100
  • REDMI K90系列正式发布,售价2599元起!

    10月23日,redmi k90系列正式亮相,推出redmi k90与redmi k90 pro max两款新机。其中,redmi k90搭载骁龙8至尊版处理器、7100mah大电池及100w有线快充等多项旗舰配置,起售价为2599元,官方称其为k系列迄今为止最完整的标准版本。 图源:REDMI红米…

    2025年12月6日 行业动态
    200
  • Linux中如何安装Nginx服务_Linux安装Nginx服务的完整指南

    首先更新系统软件包,然后通过对应包管理器安装Nginx,启动并启用服务,开放防火墙端口,最后验证欢迎页显示以确认安装成功。 在Linux系统中安装Nginx服务是搭建Web服务器的第一步。Nginx以高性能、低资源消耗和良好的并发处理能力著称,广泛用于静态内容服务、反向代理和负载均衡。以下是在主流L…

    2025年12月6日 运维
    000
  • Linux journalctl与systemctl status结合分析

    先看 systemctl status 确认服务状态,再用 journalctl 查看详细日志。例如 nginx 启动失败时,systemctl status 显示 Active: failed,journalctl -u nginx 发现端口 80 被占用,结合两者可快速定位问题根源。 在 Lin…

    2025年12月6日 运维
    100
  • 华为新机发布计划曝光:Pura 90系列或明年4月登场

    近日,有数码博主透露了华为2025年至2026年的新品规划,其中pura 90系列预计在2026年4月发布,有望成为华为新一代影像旗舰。根据路线图,华为将在2025年底至2026年陆续推出mate 80系列、折叠屏新机mate x7系列以及nova 15系列,而pura 90系列则将成为2026年上…

    2025年12月6日 行业动态
    100
  • Linux如何优化系统性能_Linux系统性能优化的实用方法

    优化Linux性能需先监控资源使用,通过top、vmstat等命令分析负载,再调整内核参数如TCP优化与内存交换,结合关闭无用服务、选用合适文件系统与I/O调度器,持续按需调优以提升系统效率。 Linux系统性能优化的核心在于合理配置资源、监控系统状态并及时调整瓶颈环节。通过一系列实用手段,可以显著…

    2025年12月6日 运维
    000
  • Pboot插件数据库连接的配置教程_Pboot插件数据库备份的自动化脚本

    首先配置PbootCMS数据库连接参数,确保插件正常访问;接着创建auto_backup.php脚本实现备份功能;然后通过Windows任务计划程序或Linux Cron定时执行该脚本,完成自动化备份流程。 如果您正在开发或维护一个基于PbootCMS的网站,并希望实现插件对数据库的连接配置以及自动…

    2025年12月6日 软件教程
    000
  • 今日头条官方主页入口 今日头条平台直达网址官方链接

    今日头条官方主页入口是www.toutiao.com,该平台通过个性化信息流推送图文、短视频等内容,具备分类导航、便捷搜索及跨设备同步功能。 今日头条官方主页入口在哪里?这是不少网友都关注的,接下来由PHP小编为大家带来今日头条平台直达网址官方链接,感兴趣的网友一起随小编来瞧瞧吧! www.tout…

    2025年12月6日 软件教程
    000
  • 曝小米17 Air正在筹备 超薄机身+2亿像素+eSIM技术?

    近日,手机行业再度掀起超薄机型热潮,三星与苹果已相继推出s25 edge与iphone air等轻薄旗舰,引发市场高度关注。在此趋势下,多家国产厂商被曝正积极布局相关技术,加速抢占这一细分赛道。据业内人士消息,小米的超薄旗舰机型小米17 air已进入筹备阶段。 小米17 Pro 爆料显示,小米正在评…

    2025年12月6日 行业动态
    000
  • 荣耀手表5Pro 10月23日正式开启首销国补优惠价1359.2元起售

    荣耀手表5pro自9月25日开启全渠道预售以来,市场热度持续攀升,上市初期便迎来抢购热潮,一度出现全线售罄、供不应求的局面。10月23日,荣耀手表5pro正式迎来首销,提供蓝牙版与esim版两种选择。其中,蓝牙版本的攀登者(橙色)、开拓者(黑色)和远航者(灰色)首销期间享受国补优惠价,到手价为135…

    2025年12月6日 行业动态
    000
  • 环境搭建docker环境下如何快速部署mysql集群

    使用Docker Compose部署MySQL主从集群,通过配置文件设置server-id和binlog,编写docker-compose.yml定义主从服务并组网,启动后创建复制用户并配置主从连接,最后验证数据同步是否正常。 在Docker环境下快速部署MySQL集群,关键在于合理使用Docker…

    2025年12月6日 数据库
    000
  • Xbox删忍龙美女角色 斯宾塞致敬板垣伴信被喷太虚伪

    近日,海外游戏推主@HaileyEira公开发表言论,批评Xbox负责人菲尔·斯宾塞不配向已故的《死或生》与《忍者龙剑传》系列之父板垣伴信致敬。她指出,Xbox并未真正尊重这位传奇制作人的创作遗产,反而在宣传相关作品时对内容进行了审查和删减。 所涉游戏为年初推出的《忍者龙剑传2:黑之章》,该作采用虚…

    2025年12月6日 游戏教程
    000
  • 如何在mysql中分析索引未命中问题

    答案是通过EXPLAIN分析执行计划,检查索引使用情况,优化WHERE条件写法,避免索引失效,结合慢查询日志定位问题SQL,并根据查询模式合理设计索引。 当 MySQL 查询性能下降,很可能是索引未命中导致的。要分析这类问题,核心是理解查询执行计划、检查索引设计是否合理,并结合实际数据访问模式进行优…

    2025年12月6日 数据库
    000
  • VSCode入门:基础配置与插件推荐

    刚用VSCode,别急着装一堆东西。先把基础设好,再按需求加插件,效率高还不卡。核心就三步:界面顺手、主题舒服、功能够用。 设置中文和常用界面 打开软件,左边活动栏有五个图标,点最下面那个“扩展”。搜索“Chinese”,装上官方出的“Chinese (Simplified) Language Pa…

    2025年12月6日 开发工具
    000
  • 如何在mysql中安装mysql插件扩展

    安装MySQL插件需先确认插件文件位于plugin_dir目录,使用INSTALL PLUGIN命令加载,如INSTALL PLUGIN keyring_file SONAME ‘keyring_file.so’,并确保用户有SUPER权限,最后通过SHOW PLUGINS验…

    2025年12月6日 数据库
    000
  • php查询代码怎么写_php数据库查询语句编写技巧与实例

    在PHP中进行数据库查询,最常用的方式是使用MySQLi或PDO扩展连接MySQL数据库。下面介绍基本的查询代码写法、编写技巧以及实用示例,帮助你高效安全地操作数据库。 1. 使用MySQLi进行查询(面向对象方式) 这是较为推荐的方式,适合大多数中小型项目。 // 创建连接$host = ‘loc…

    2025年12月6日 后端开发
    000
  • 如何在mysql中定期清理过期备份文件

    通过Shell脚本结合cron定时任务实现MySQL过期备份文件自动清理,首先统一备份命名格式(如backup_20250405.sql)并存放在指定目录(/data/backup/mysql),然后编写脚本使用find命令删除7天前的.sql文件,配置每日凌晨2点执行的cron任务,并加入日志记录…

    2025年12月6日 数据库
    000

发表回复

登录后才能评论
关注微信