apache安装 dnf install httpd httpd-tools 开机启动 systemctl enable httpd 立即启动 systemctl start httpd 查看状态 systemctl status httpd php安装 CentOS 8是用PHP 7.2发布的。该 ...
分类:
数据库 时间:
2020-02-27 13:14:34
阅读次数:
252
netty /** * ******************************************************************* * 如果不设置超时,连接会一直占用本地线程,端口,连接客户端一多,阻塞在那里,会导致本地端口用尽及CPU压力 */ bootstrap.op ...
分类:
其他好文 时间:
2020-02-27 13:08:14
阅读次数:
97
大概配置过程 视频讲解 1.下载安装:https://code.visualstudio.com/ 2.语言设置:先按左箭头所指的,然后输入chinese点击install进行下载安装即可 3.编译配置: MinGW-w64 - for 32 and 64 bit Windows 建议安装到c盘,安 ...
分类:
其他好文 时间:
2020-02-26 18:42:21
阅读次数:
111
Jenkins maven SNAPSHOT包在打包上去后,出现别的系统无法拉取,反编译包没有问题,其实是因为SNAPSHOT包maven默认不拉取 解决方案: <repositories> <repository> <id>nexus</id> <url>maven 私库 public地址</ur ...
分类:
编程语言 时间:
2020-02-26 11:37:39
阅读次数:
534
QQ邮箱设置中开启POP3/SMTP服务 pom文件 配置文件 代码实现 接口代码 业务实现代码 直接调用方法即可 参考博客 https://www.jianshu.com/p/a7097a21b42d https://www.cnblogs.com/eatandsleep/p/12205573.h ...
分类:
编程语言 时间:
2020-02-25 14:28:37
阅读次数:
110
实现步骤环境OS:# cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core)# uname -aLinux hyhive 3.10.0-514.el7.x86_64 #1 SMP Tue Nov 22 16:42:41 UTC 201... ...
分类:
其他好文 时间:
2020-02-25 12:40:44
阅读次数:
79
```cpp #include #include #include /* //this //调用了两次析构函数, ParentPtr p(this); //智能指针出了作用域后就delete this ,析构了 //所以错了,为了解决这个问题,就需要自身的类继承于 std::enable_share... ...
分类:
编程语言 时间:
2020-02-24 21:03:10
阅读次数:
121
ref : "How do I enable UBIFS?" How do I enable UBIFS? Since UBIFS works on top of UBI, you have to enable UBI first (see "here" ). Then in the Linux c ...
分类:
其他好文 时间:
2020-02-22 11:45:50
阅读次数:
76
继承SpringBootServletInitializer可以使用外部tomcat(web容器启动项目),自己可以设置端口号,项目名。 继承之后要实现他的configure方法 1 @SpringBootApplication 2 @MapperScan({"com.eliansun.mapper ...
分类:
编程语言 时间:
2020-02-21 22:27:58
阅读次数:
208
1、第一步创建超级管理用户 use admin db.createUser({ user:'admin', pwd:'admin', roles:[{role:'root',db:'admin'}] }) 2、第二步修改 Mongodb 数据库配置文件 路径:C:\Program Files\Mon ...
分类:
数据库 时间:
2020-02-21 20:47:11
阅读次数:
101