码迷,mamicode.com
首页 >  
搜索关键字:nginx status    ( 37643个结果
JavaScript 装饰器Decorator
环境搭建 因为装饰器属于一个在提案中的语法,所以不管是node还是浏览器,现在都没有直接支持这个语法,我们要想使用该语法,就必须要通过babel将它进行一个编译转换,所以我们需要搭建一个babel编译环境。 1、安装babel相关包 npm i @babel/cli @babel/core @bab ...
分类:编程语言   时间:2021-06-28 18:33:09    阅读次数:0
centos6无法安装nginx
sed -i "s|enabled=1|enabled=0|g" /etc/yum/pluginconf.d/fastestmirror.conf mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backu ...
分类:其他好文   时间:2021-06-28 17:56:12    阅读次数:0
微信h5支付
export function chooseWXPay(params: wx.ChooseWXPayConfig) { return new Promise<{ status: 'success' | 'error' | 'cancel'; result?: string; message?: st ...
分类:微信   时间:2021-06-28 17:44:33    阅读次数:0
关于oracle数据库性能监控指标
1. 当前连接会话数以及当前并发连接个数 -- 当前活跃用户会话数Select count(*) from v$session where status='ACTIVE' and USERNAME is not null;-- 当前活跃系统会话数Select count(*) from v$sess ...
分类:数据库   时间:2021-06-25 17:21:32    阅读次数:0
nginx重启报错
[nginx@p0-hfssp-healthos-web02 sbin]$ sudo ./nginx -s reloadnginx: [error] invalid PID number "" in "/home/nginx/openresty/nginx/logs/nginx.pid" 发生这个错 ...
分类:其他好文   时间:2021-06-24 18:14:17    阅读次数:0
[转] nginx关于root与alias的区别
结论 配置demo: location xxx { root yyy } 浏览器访问 xxx,实际访问的是 yyy/xxx浏览器访问 xxx/abc.html,实际访问的是 yyy/xxx/abc.html浏览器访问 xxx/ccc/abc.html,实际访问的是 yyy/xxx/ccc/abc.h ...
分类:其他好文   时间:2021-06-24 17:47:20    阅读次数:0
oracle基础安全配置
1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:数据库   时间:2021-06-24 17:35:08    阅读次数:0
CentOS虚拟机安全问题排查
最近是我党100周年的伟大日志,比较注重虚机安全。记录一下操作,方便后续虚机整理。 1、systemctl status firewalld 看一下防火墙状态,该开启的开启 开防火墙 systemctl start firewalld iptables 和 firewalld的区别先百度一下吧,不多 ...
分类:其他好文   时间:2021-06-23 17:16:07    阅读次数:0
jenkins pipeline中获取shell命令的输出
//获取标准输出//第一种result = sh returnStdout: true ,script: "<shell command>"result = result.trim()//第二种result = sh(script: "<shell command>", returnStdout: ...
分类:系统相关   时间:2021-06-23 17:14:46    阅读次数:0
Linux Nginx日志切割脚本
Linux Nginx日志切割脚本 版本 操作系统版本IP版本 Centos 172.21.3.220内网 7.x Nginx日志切割脚本 #!/bin/bash #设置日志文件存放目录 logs_dir="/usr/local/nginx/logs" store_dir="/data/backup ...
分类:系统相关   时间:2021-06-23 17:02:55    阅读次数:0
37643条   上一页 1 2 3 4 5 6 ... 3765 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!