坦率短靴

文章
5
资源
0
加入时间
2年10月20天

Ganglia安装1.前期准备2.集群规划5.访问的地址

1.前期准备1.1.节点准备修改主机名、ip、iptables关闭;时间同步 关闭防火墙 service iptables stop 查看防火墙开机启动状态 chkconfig iptables –list 关闭防火墙的开机启动 chkconfig iptables off1.2.软件准备ganglia-3.7.1.tar.gz、ganglia-web-3.7.0.tar.gz 地址:h

MSSQL站库分离情况的渗透思路

本文转自:http://bbs.blackbap.org/thread-6203-1-2.html1. 服务器属内网环境,站库分离,通过web.config找到数据库服务库SA帐号密码,成功添加用户(192.168.0.206) 。2. Web服务器(192.168.0.203) 、数据库服务器(192.168.0.206)都存在symantec杀毒软件,不能转lcx.exe工具转发 ...

ARC 060F Best Representation KMP(循环节)

题意:定义一个字符串合法:当该字符串没有循环节存在,给出string s,令F=(f1,f2..fm) 满足fi为s的某一部分.f1,f2,..fm连起来为s.并且任意fi为合法|s|求最小m 利用next求出最小循环节,若f[i]=1 则m=len,若len%(len-f[len])!=0 则m=1其余有循环节情况,都可以按照前len-1个分一组,最后一个字符分一组 则m

js获取url中get传参以及预览图片等...几个

1.js获取url中get方式传输的参数://获取url中get方式传的参数function getPar(par){ //比如获取id xxx.html?id=100 var local_url = document.location.href; //获取要取得的get参数位置 var get = local_url.indexOf(par + "=");