上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 原因:服务器不支持ipv6 解决:注释掉nginx配置下面这句 阅读全文
posted @ 2021-04-17 16:52 冬音 阅读(1815) 评论(0) 推荐(1) 编辑
摘要: 推流修改比特率和帧数: streamlink $URL 720p -O | ffmpeg -re -i pipe:0 -vcodec h264 -b:v 300k -r 15 -c:a aac -f flv $RTMP https://blog.csdn.net/DaveBobo/article/d 阅读全文
posted @ 2021-03-08 13:39 冬音 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1.到python的官网去下载python3.7.2安装包,必须是Linux版本的 2.在/usr/tmp下下载python安装包 wget https://www.python.org/ftp/python/3.*.*/Python-3.*.*.tgz 3.解压python到/usr/local/ 阅读全文
posted @ 2021-01-19 21:02 冬音 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 1、在虚拟机Ubuntu系统中打开终端 (ctrl+shift+T)输入命令 sudo vim /etc/default/grub 2、在vim打开的文件中找到GRUB_CMDLINE_LINUX_DEFAULT将其修改为GRUB_CMDLINE_LINUX_DEFAULT="quiet splas 阅读全文
posted @ 2021-01-18 13:08 冬音 阅读(472) 评论(0) 推荐(0) 编辑
摘要: grubby --update-kernel=ALL --args="video=hyperv_fb:1600x900" reboot https://blog.csdn.net/superlover_/article/details/90581400 https://www.cnblogs.com 阅读全文
posted @ 2021-01-17 21:48 冬音 阅读(344) 评论(0) 推荐(0) 编辑
摘要: centos: echo 密码 | passwd --stdin 用户名 ubuntu:(需先设置一个密码) sudo passwd username https://blog.csdn.net/mi_lan_kun_de_la/article/details/102660654 阅读全文
posted @ 2021-01-17 14:43 冬音 阅读(1413) 评论(0) 推荐(0) 编辑
摘要: nginx配置文件80配置中增加 rewrite ^ https://$http_host$request_uri? permanent; 如图: https://blog.csdn.net/jiandangxiaodiao/article/details/85011187 阅读全文
posted @ 2020-11-28 20:54 冬音 阅读(3250) 评论(1) 推荐(0) 编辑
摘要: 官方版本列表:http://nginx.org/download/ 1.安装 wget http://nginx.org/download/nginx-1.10.3.tar.gz tar -zxvf nginx-1.10.3.tar.gz cd nginx-1.10.3 ./configure ma 阅读全文
posted @ 2020-11-28 01:41 冬音 阅读(793) 评论(1) 推荐(0) 编辑
摘要: 1.创建服务 sc create ServerName binpath= "E:\MySql5.5\bin\mysqld.exe" 2.启动服务 sc start ServerName 3.删除服务 sc delete ServerName https://www.cnblogs.com/shinn 阅读全文
posted @ 2020-11-20 17:20 冬音 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 通用 #查看cpu使用情况 top -bn 1 -i -c Nginx #编辑配置文件vi /usr/local/nginx/conf/nginx.conf #服务重启systemctl restart nginx.service #服务开机启动systemctl enable nginx.serv 阅读全文
posted @ 2020-10-10 09:47 冬音 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 1.准备 1)Centos7镜像 官方:https://www.centos.org/ 阿里镜像:http://mirrors.aliyun.com/centos/ 2)安装windows7系统的电脑 3)U盘(8G空间以上) 4)u盘刻录软件:UltraISO(建议版本高于9.3.6) 2.分配c 阅读全文
posted @ 2020-10-09 22:04 冬音 阅读(1147) 评论(0) 推荐(0) 编辑
摘要: ln -s 源文件 目标目录 https://blog.csdn.net/ljw_jiawei/article/details/91044595 阅读全文
posted @ 2020-09-22 22:54 冬音 阅读(683) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/vinkim/article/details/81546333 https://zhuanlan.zhihu.com/p/31417084 阅读全文
posted @ 2020-09-22 17:12 冬音 阅读(185) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/inchat/article/details/104294302 阅读全文
posted @ 2020-09-15 00:11 冬音 阅读(1856) 评论(0) 推荐(0) 编辑
摘要: 1.下载nuget.exe 下载地址:https://dist.nuget.org/win-x86-commandline/latest/nuget.exe 或者 https://dist.nuget.org/ 下载后不用安装,放到文件夹即可 2.添加nuget.exe的path路径,例如nuget 阅读全文
posted @ 2020-09-11 10:26 冬音 阅读(425) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name example.com *.example.com; location / { proxy_pass http://localhost:5000; proxy_http_version 1.1; proxy_set_header Upg 阅读全文
posted @ 2020-07-12 18:23 冬音 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1 准备工具 使用yum安装git [root~]# yum -y install git 下载nginx-rtmp-module,官方github地址 // 通过git clone 的方式下载到服务器上 [root~]# git clone https://github.com/arut/ngin 阅读全文
posted @ 2020-07-04 17:29 冬音 阅读(4043) 评论(0) 推荐(0) 编辑
摘要: C#调用python脚本错误: 使用cmd直接运行脚本报错: TabError: inconsistent use of tabs and spaces in indentation 查看日志报错: Python脚本运行出现语法错误:IndentationError: unindent does n 阅读全文
posted @ 2020-07-02 22:05 冬音 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 优点 缺点 其它 Robot Framework 可视化界面 运行环境搭建复杂,依赖较多 操作复杂 倾向于自动化测试 TagUI 浏览器支持好 官方文档详细 命令行操作 非浏览器程序支持一般 OpenRPA 可视化界面 操作简单 基于Windows Workflow Foundation 录制操作过 阅读全文
posted @ 2020-06-15 21:04 冬音 阅读(3277) 评论(0) 推荐(0) 编辑
摘要: 1.安装包下载 注意安装包统一64位或32位 1)python-2.7.16.amd64.msi 2)robotframework-3.0.2.tar.gz 3)robotframework-ride-1.3.win-amd64.exe 4)wxPython2.8-win64-unicode-2.8 阅读全文
posted @ 2020-06-11 15:36 冬音 阅读(1179) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页