- 浏览: 354696 次
- 性别:
- 来自: 沈阳
最新评论
-
sanrenxing_1:
GoEasy 实时推送支持IE6-IE11及大多数主流浏览器的 ...
极光推送(JPUSH)--- 消息推送 -
QuarterLifeForJava:
如果带有中文路径的话要写为:
URLDecoder.decod ...
获取类根路径及jar包路径 -
whyxy007:
请问楼主放上去的这张图就是最后需要安装的所有的包吗?还是说需要 ...
cordova 开发环境搭建
文章列表
nginx报错:
2019/09/04 08:52:20 [error] 17537#0: *10 upstream prematurely closed connection while reading upstream, server: localhost, request: "GET /test/a.js HTTP/1.1", upstream: "http://127.0.0.1:8091/test/a.js",
问题描述:
a.js 比较大 4M左右。 通过 upstream 读取,在全部数据读取完成前,连接关 ...
nginx 流量复制
- 博客分类:
- nginx
#原接口
upstream api{
server 127.0.0.1:8080;
}
#新接口
upstream newapi{
server 127.0.0.1:8081;
}
#原接口后端
location /api{
proxy_pass http://api;
# 后端的Web服务器可以通过X-Forwarded-For获取用户真实IP
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_hea ...
FFmpeg视频转码技巧之-crf参数(转)
- 博客分类:
- 视频
转自:https://blog.csdn.net/lsw8569013/article/details/53005116/
昨天,有个朋友给我出了个难题:他手上有一个视频,1080P的,49秒,200多兆;要求在确保质量的情况下把文件压缩到10M以内。
这是什么概念呢?按照文件大小10M来计算, ...
FFmpeg命令详解(转)
- 博客分类:
- 视频
转自:https://blog.csdn.net/xuyankuanrong/article/details/77527381
命令格式
功能
FFmpeg命令是在ffmpeg.exe可执行文件环境下执行,ffmpeg.exe用于音视频的转码,加水印,去水印,视频剪切,提取音频,提取视频,码率控制等等功能 ...
转自:https://blog.csdn.net/shubingzhuoxue/article/details/84578749
查看防火墙状态: systemctl status firewalld.service
绿的running表示防火墙开启
执行关闭命令: systemctl stop firewalld.service
再次执行查看防火墙命令:systemctl status firewalld.service
执行开机禁用防火墙自启命令 : systemctl disable firewalld.service
完成
...
centos7安装nginx的两种方法介绍
- 博客分类:
- nginx
转自:https://blog.csdn.net/qq_28844767/article/details/84400673
第一种方式:通过yum安装
直接通过 yum install nginx 肯定是不行的,因为yum没有nginx,所以首先把 nginx 的源加入 yum 中。
运行下面的命令:
1.将nginx放到yum repro库中
复制代码代码如下:
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic module ...
centos 安装mysql
- 博客分类:
- mysql
1. 下载mysql tar.gz
登录 https://www.mysql.com/downloads/ ,选 择相应的版本,下载
mysql-5.6.44-linux-glibc2.12-x86_64.tar.gz
2. 解压
tar -xzvf mysql-5.6.44-linux-glibc2.12-x86_64.tar.gz
解压后,目录结构:
Directory
Contents of Directory
bin,
ffmpeg -i 1002001.mp4 -ss 00:04:00 -t 00:02:00 -vcodec copy -acodec copy output.mp4
ffmpeg -i 1001002.mp4 -b:v 1500k -r 30 -vf scale=640:480 output.mp4
ffmpeg -i a.mp4 -vcodec copy -acodec copy -f ssegment -segment_format mpegts -segment_list a.m3u8 -segment_time 30 a%d.ts
ffmpeg -i o ...
ffmpeg基础使用(转)
- 博客分类:
- 视频
转自:https://www.jianshu.com/p/ddafe46827b7
二、常用命令
主要参数:
-i 设定输入流
-f 设定输出格式
-ss 开始时间
视频参数:
-b 设定视频流量(码率),默认为200Kbit/s
-r 设定帧速率,默认为25
-s 设定画面的宽与高
-aspe ...
centos上安装ffmpeg
- 博客分类:
- 视频
1.
yum -y install gcc cc cl
2.
wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
tar -xvf yasm-1.3.0.tar.gz
cd yasm-1.3.0/
./configure && make && make install
3.
wget http://download.videolan.org/x264/snapshots/last_stable_x264.tar.bz2
tar -jxvf ...
nginx 反身代理-cookie 共享
- 博客分类:
- nginx
nginx 代理N个服务,通过URL上下文区分,其中一个服务是登录服务,写cookie.
api服务:http:/www.domain.com/api
SSO服务:http://www.domain.com/sso
前端服务:http://www.domain.com/front
登录成功后,sso服务写cookie:
Set-Cookie:
SESSION=YmUyMDMwMGItZjc1ZC00ZmE1LWIwNmQtYTljMTczNWFhNDE3; Path=/sso/; HttpOnly; SameSit ...
nginx 改变请求路径
- 博客分类:
- nginx
server 中{:
rewrite 原URL 目标url break;
}
目标url 再匹配 location 找到后端服务。
slf4j 日志增加traceId
- 博客分类:
- 日志
1.创建Filter
public class TraceIdFilter implements Filter {
private final String traceIdName="traceId";
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
String traceId = UUI ...
maven spring boot 项目
- 博客分类:
- maven
打包可执行jar ,不执行单元测试
mvn install -Dmaven.test.skip=true
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocat ...