访问官网:http://www.ee.ic.ac.uk/hp/staff/dmb/perl/index.html 写在前面 首先需要确定电脑上已经装好texlive, 包含了 bibtex.exe,如: 然后,装好了word, 下载bibtex4word http://www.ee.ic.ac.uk ...
一、配置 首先修改配置文件 #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 """ 2 python程序的流程 3 """ 4 # 分支结构 5 # if else 6 import math 7 8 x = -37 9 if x < 0: 10 y = math.fabs(x) 11 else: 12 y = math.sqrt(x) 13 print("计算的结果是 ...
分类:
编程语言 时间:
2021-03-09 13:36:20
阅读次数:
0
02·自动化运维工具Ansible ad-hoc MarkdownHTML 02·自动化运维工具-Ansible ad-hoc 02·自动化运维工具-Ansible ad-hoc Ansible ad-hoc Ansible命令模块 Ansible软件管理模块 Ansible文件管理模块 Ansib ...
分类:
其他好文 时间:
2021-03-09 13:31:52
阅读次数:
0
Title 我真帅1 标题标签 1~6级标题 我真帅2 我真帅3 我真帅4 我真帅5 我真帅6 普通文本 加粗 斜体 下划线 删除线 段落标签 换行 水平分割线 段落标签 div span 标签的分类2 ##1、块儿级标签:独占一行 h1~h6 p div ##2、行内标签:自身文本多大就占多达 i ...
分类:
其他好文 时间:
2021-03-09 13:29:33
阅读次数:
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
linux上nginx位置/usr/local/nginx。 停止nginx ps -ef | grep nginx 找到nginx进程(会列出三个) kill -QUIT <进程号> 杀掉进程(上面中,找到root且是nginx的根进程号) 后台nginx启动 /usr/local/nginx/s ...
分类:
系统相关 时间:
2021-03-08 14:17:06
阅读次数:
0
centos 7以上是用Systemd进行系统初始化的,Systemd 是 Linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度。关于Systemd的详情介绍在这里。 Systemd服务文件以 .service结尾,比如现在要建立n ...
分类:
其他好文 时间:
2021-03-06 14:24:34
阅读次数:
0
cd /usr/local/nginx #到nginx目录下 ./sbin/nginx #启动nginx ./sbin/nginx -t #检测配置文件 ps aux|grep nginx #查看nginx进程 nginx配置文件修改后,执行nginx -t successful。执行nginx - ...
分类:
其他好文 时间:
2021-03-05 13:30:31
阅读次数:
0
##什么是Nginx Nginx是一个高性能的Http和反向代理的web服务器 占用的内存少,并发能力强 支持高达50000个并发连接 Nginx提供负载均衡策略有2种:内置策略和扩展策略。内置策略为轮询,加权轮询,ip hash 扩展策略 ###轮询 ###加权轮询 ###iphash ###动静 ...
分类:
其他好文 时间:
2021-03-05 13:15:42
阅读次数:
0