要用vim命令,系统自带vi,却无vim去官网相应版本的vim,这边我选的是7.3版的ftp://ftp.vim.org/pub/vim/unix/解压后,会生成个vim73的文件夹,不同版本可能数字不同./configure报错,提示如下:noterminallibraryfound
checkingfortgetent()…configure:error:NOTFOUND!
Youne..
分类:
系统相关 时间:
2017-03-27 20:02:24
阅读次数:
380
以centos6.5为例1登录Nginx下载页面http://nginx.org/en/download.html2下拉点击stableversion跳转Pre-BuiltPackagesLinuxpackagesforstableversionLinuxpackagesformainlineversion3vim/etc/yum.repos.d/nginx.repo[nginx]
name=nginxrepo
baseurl=http://nginx.org/packages/..
分类:
其他好文 时间:
2017-03-27 20:01:32
阅读次数:
145
1.在项目上右键properties,选择Resource,更改Textfileencoding设置(bgk或者utf-8等...)2.在IDE(Eclipse),选择Window--->preferences---->General---->Workspace----找到Textfileencoding设置编码格式3.(我使用的)在IDE(Eclipse),选择Window--->prefere..
分类:
编程语言 时间:
2017-03-27 20:01:16
阅读次数:
148
当前系统环境#hostnamectlStatichostname:localhost.localdomainIconname:computer-vmChassis:vmMachineID:2db9c42fe2974c44a4d53161c3cd9fb4BootID:b9a685bd7d9e47eaaa5a742712c930acVirtualization:vmwareOperatingSystem:CentOSLinux7(Core)CPEOSName:cpe:/o:centos:centos:..
分类:
数据库 时间:
2017-03-27 20:00:59
阅读次数:
251
quartz默认是并发执行的,如果不要并发执行,可以defconcurrent=false1、配置文件2、Job文件
分类:
其他好文 时间:
2017-03-27 20:00:38
阅读次数:
122
一、Zabbix简介Zabbix是完全开源的工具,整合了Cacti和Nagios等特性Cacti:SnmpNagios:Linux主机:Nrpe设备:Snmp附:SNMP(udp161udp162)众多网络工具都支持此协议,比如常见路由交换,常见OS其既可以做管理端也可以做被管理端Snmp协议大致有3个版本分别是v1、v2、v3无论是v1和v2..
分类:
其他好文 时间:
2017-03-27 20:00:05
阅读次数:
520
1.服务端配置实验环境系统版本:CentOSLinuxrelease7.3.1611(Core)1)安装软件包yum-yinstalltargetcli2)创建要输出的iscsi存储可输出的设备有如下几种:a、lvm卷设备;b、由文件组成的块设备(经过tgtimg工具处理过的);c、单一的分区;d、整个磁盘;e、RAID组成的卷设备;这..
分类:
系统相关 时间:
2017-03-27 19:59:45
阅读次数:
276
Sayyouhaveanarrayforwhichtheithelementisthepriceofagivenstockondayi.
Designanalgorithmtofindthemaximumprofit.Youmaycompleteatmosttwotransactions.
Note:
Youmaynotengageinmultipletransactionsatthesametime(ie,youmustsellthestockbeforeyoubuyagain).
Subscribeto..
分类:
编程语言 时间:
2017-03-27 19:59:25
阅读次数:
165
在最近的开发过程中,遇到了在service中访问session、request、params等对象中的一些内容,解决方法如下importorg.codehaus.groovy.grails.web.util.WebUtilsimportorg.springframework.web.context.request.RequestContextHolderclassWebUtilTools{defstaticgetRequest(){defw..
分类:
其他好文 时间:
2017-03-27 19:59:05
阅读次数:
152
HashMap如何实现hahsMap是基于哈希表的Map接口的非同步实现。此实现提供所有可选的映射操作,并允许使用null值和null建。此类不保证映射的顺序,特别是它不保证该顺序恒久不变。HashMap实际上是一个链表散列的数据结构,即数组和链表的结合体。JAVAHibernate工作原理及为什么要..
分类:
Web程序 时间:
2017-03-27 19:58:45
阅读次数:
166
Nginx允许用户定义Locationblock,并指定一个匹配模式(pattern)匹配特定的URI。除了简单的字符串(比如文件系统路径),还允许使用更为复杂的匹配模式(pattern)。Locationblock的基本语法形式是:location[=|~|~*|^~|@]pattern{...}#pattern模式的意思[=|~|~*|^~|@]被称作l..
分类:
其他好文 时间:
2017-03-27 19:58:26
阅读次数:
162
shell实例(一)实例一:等于-eq(equal)不相等-ne(notequal)大于-gt(greaterthan)小于-lt(lessthan)大于或等于-ge(greaterthanorequal)小于或等于-le(lessthanorequal)举例如下:#!/bin/bashd=`date`echo$da=1if[$a-lt3]==if(($a<3))thenecho"thisisok"fi结果截图如下..
分类:
系统相关 时间:
2017-03-27 19:56:15
阅读次数:
226
opencv代码版本:opencv-3.2.0-vc14.exe编译环境VS2010参考http://blog.csdn.net/jarvischu/article/details/8468894注意事项:CMake点击Configure配置完成之后,BUILD_CUDA_STUBS取消生成,详细资料可以搜索cuda,否则编译的时候出现没有找打cuda_runtime.h文件的错误CMake生成..
分类:
其他好文 时间:
2017-03-27 19:55:58
阅读次数:
170
下载地址:http://www.openssl.org/source/#cd/usr/local/src/#wgethttp://www.openssl.org/source/openssl-1.1.0e.tar.gz#tarxfopenssl-1.1.0e.tar.gz#cd/openssl-1.1.0e#./configsharedzlib--prefix=/usr/local/openssl&&make&&makeinstall#./config-t#maked..
分类:
其他好文 时间:
2017-03-27 19:55:39
阅读次数:
1210
1、开启rewrite_module鼠标左键点击PHPStudy的其他选项菜单,在PHP扩展及设置->Apache模块找到rewrite_module,点击即开启本模块。PHPStudy会自动重启服务。2、修改httpd.conf文件在其他选项菜单->打开配置文件->httpd.conf,点击即可打开httpd.conf文件。找到:Allow..
分类:
数据库 时间:
2017-03-27 19:55:21
阅读次数:
234
准备工作1.安装JDK,集群内各成员主机安装JDK的路径和版本必须统一。2.在集群内主机安装一台MySQLServer(MySQL为选装,Ambari默认的数据库为PostgreSQL)1.MySQL配置创建ambari-server的数据库以及连接用户,且授权
#mysql-uroot-p
CREATEDATABASEambariDEFAULTCHARSET=utf8;
..
分类:
其他好文 时间:
2017-03-27 19:54:59
阅读次数:
405
测试环境系统版本:CentOSLinuxrelease7.3.1611(Core)1.安装mariadb软件包这个软件包包含了mariadb-server和一些工具包[root@localhostconf.d]#yumgroupinfomariadb
Loadedplugins:fastestmirror
Loadingmirrorspeedsfromcachedhostfile
Group:MariaDBDatabaseServer
Group-Id:..
分类:
数据库 时间:
2017-03-27 19:53:59
阅读次数:
277