1. SpringMVC 大致过程测试 1. 新建filter package cn.xm.filter; import javax.servlet.*; import javax.servlet.annotation.WebFilter; import java.io.IOException; @ ...
分类:
编程语言 时间:
2021-03-15 11:17:06
阅读次数:
0
卸载nginx 首先输入命令 ps -ef | grep nginx检查一下nginx服务是否在运行。如果在运行就停止运行,需要在nginx的安装目录下的sbin执行,如果配置了环境就不需要了: ./nginx -s stop 查找、删除Nginx相关文件 查看Nginx相关文件: whereis ...
分类:
其他好文 时间:
2021-03-15 10:55:23
阅读次数:
0
1.创建一个toutiao目录 cd /home mkdir toutiao 2.将项目上传到toutiao目录 项目上传详细见安装的一二步 3.解压项目 unzip web.zip 4.编辑Nginx配置文件cd /home/nginx-1.17.5/conf/nginx.conf (注意:配置刚 ...
分类:
其他好文 时间:
2021-03-15 10:44:43
阅读次数:
0
配置加速器(最新版的配置方法) [root@ming2 containers]# vim registries.conf [root@ming2 containers]# cat registries.conf unqualified-search-registries = ["docker.io" ...
分类:
其他好文 时间:
2021-03-11 14:17:03
阅读次数:
0
一、配置 首先修改配置文件 #vi /usr/local/nginx/conf/nginx.conf 在最后一个结束符号}前加一行配置: include vhost/*.conf; 意思就是/usr/local/nginx/conf/host下面的所有以.conf结尾的文件都会被加载 #mkdir ...
分类:
其他好文 时间:
2021-03-10 13:39:10
阅读次数:
0
1.分页查询 ①配置类中追加分页插件 //注册分页插件 @Bean public PaginationInterceptor paginationInterceptor() { return new PaginationInterceptor(); } ②测试分页查询 //测试分页查询 @Test ...
分类:
其他好文 时间:
2021-03-10 13:13:53
阅读次数:
0
DOS操作命令 打开CMD的方式 开始+系统+命令提示符 Win键+R 输入cmd打开控制台(推荐使用) 在任意文件夹下。按住Shift键+鼠标右键点击,在此处打开命令行窗口。 资源管理的地址栏前面加上cmd路径 管理员方式运行:选择以管理员方式运行 DOS命令 #盘符切换 #查看当前目录下所有文件 ...
分类:
其他好文 时间:
2021-03-10 13:07:26
阅读次数:
0
包括三方面 1 sysctl.conf //扩大文件句柄数 fs.aio-max-nr = 1048576 fs.file-max = 6815744 // 扩大共享内存段 影响SGA kernel.shmmax = 4294967295 共享内存段的最大字节尺寸(以字节为单位)推荐设置成内存的80 ...
分类:
数据库 时间:
2021-03-09 13:57:32
阅读次数:
0
1 int ngx_cdecl 2 main(int argc, char *const *argv) 3 { 4 ngx_buf_t *b; 5 ngx_log_t *log; 6 ngx_uint_t i; 7 ngx_cycle_t *cycle, init_cycle; 8 ngx_conf ...
分类:
其他好文 时间:
2021-03-09 13:10:05
阅读次数:
0
Observer的作用:水平扩展zookeeper集群 虽然通过Client直接连接到ZooKeeper集群的性能已经很好了,可是这样的架构假设要承受超大规模的Client,就必须添加ZooKeeper集群的Server数量,随着Server的添加,ZooKeeper集群的写性能必定下降。我们知道Z ...
分类:
其他好文 时间:
2021-03-09 13:01:21
阅读次数:
0