码迷,mamicode.com
首页 >  
搜索关键字:zabbix nginx status    ( 43145个结果
zabbix latest.php SQL注入漏洞(CVE-2016-10134)
Zabbix 2.2.14之前的版本和3.0.4之前的3.0版本 latest.php页面提取cookie中的zbx_sessionid的后16位 246c58ba963457ef http://192.168.49.2:8080/latest.php?output.php=ajax&sid=246 ...
分类:数据库   时间:2021-03-02 12:07:31    阅读次数:0
进程管理
1.定时任务 crontab -e s m h d month w cmd 2.任务后台执行 command & 3.查看进程 ps -ef|grep prcss 4.杀死进程 kill -9 pid 5.服务状态 service prcss_name status|start|stop|resta ...
分类:系统相关   时间:2021-03-01 14:17:23    阅读次数:0
【CentOS7】Apache发布的网站无法在本机上访问
问题:已配置好桥接模式,虚拟机和本机能够相互ping通的情况下,Apache上发布的网站可以在虚拟机上访问,但无法在本机上访问。 1、为了能够远程访问服务器的网页,要确保Apache服务httpd运行中 查看http的服务状态:service http的 status 开启httpd服务:servi ...
分类:Web程序   时间:2021-03-01 13:51:11    阅读次数:0
nginx实例
1. 域名代理实例: #user nobody; user root; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; p ...
分类:其他好文   时间:2021-03-01 13:32:37    阅读次数:0
k8s kubectl 常用命令,使用yaml部署
# 生成命令对应的yaml文件(资源清单)kubectl create deployment xxxxxxxxxxx --image=nginx --dry-run -o yamlkubectl create deployment xxxxxxxxxxx --image=nginx --dry-ru ...
分类:其他好文   时间:2021-03-01 13:16:39    阅读次数:0
docker-compose安装zabbix
version: '3' services: zabbix-mysql: image: mysql:5.7 hostname: zabbix-mysql restart: always networks: - zabbix-net ports: - "3306:3306" command: --ch ...
分类:其他好文   时间:2021-03-01 13:11:33    阅读次数:0
nginx location / 区别
nginx服务器地址及端口:127.0.0.1:80 后端服务地址及端口:127.0.0.1:8080 测试URL:http://127.0.0.1:80/api/upload 一 nginx配置: location /api/ { proxy_pass http://127.0.0.1:8080/ ...
分类:其他好文   时间:2021-03-01 13:05:41    阅读次数:0
我的vimrc
call plug#begin('~/.vim/plugged')""Plug 'itchyny/lightline.vim'"Plug 'Yggdroot/LeaderF', { 'dir': '~/LeaderF', 'do': './install --all' }" Plug 'junegu ...
分类:系统相关   时间:2021-03-01 13:04:40    阅读次数:0
linux查看防火墙
CentOS7 的防火墙配置跟以前版本有很大区别,CentOS7这个版本的防火墙默认使用的是firewall,与之前的版本Centos 6.x使用iptables不一样 一、iptables防火墙 1、基本操作 查看防火墙状态 service iptables status 停止防火墙 servic ...
分类:系统相关   时间:2021-02-27 13:22:40    阅读次数:0
nginx 请求多个域名指定对应的根目录
同一个nginx配置文件,请求不同的域名可以指定对应的目录 nginx配置 cat long.conf server { listen 80; server_name a.com b.com c.com; location / { root /home/long/$host/; index inde ...
分类:其他好文   时间:2021-02-27 13:10:39    阅读次数:0
43145条   上一页 1 ... 33 34 35 36 37 ... 4315 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!