1、看是否已经有某个进程在运行了,如tomcatps -ef |grep tomcat2、查看某个端口是否被占用,如8080netstat -nap | grep 8080
分类:
系统相关 时间:
2014-07-18 20:06:28
阅读次数:
281
关于 JsonIgnore 问题,EF T4 模板 中 存在主外键关系namespace WindowsFormsApplication1{ using System; using System.Collections.Generic; using Newtonsoft.Json; public p...
分类:
Web程序 时间:
2014-07-18 16:19:57
阅读次数:
433
mvn clean、mvn package、mvn clean install -e、mvn dependency:analyze、mvn denpendency:tree -Dincludes=*:junit -Dverbose、mvn help:effective-pom/mvn help:ef...
分类:
其他好文 时间:
2014-07-16 18:17:22
阅读次数:
1393
public List FillsToCheck(int sid,int eid) { using (DAL.ExamSysEntities db = new DAL.ExamSysEntities()) { r...
分类:
Web程序 时间:
2014-07-16 17:38:50
阅读次数:
269
重置mysql的root密码# /etc/init.d/mysql stopShutting down MySQL. [ OK ]# ps -ef |grep mysqlroot 25174 24030 0 0...
分类:
数据库 时间:
2014-07-16 15:54:20
阅读次数:
311
1.Model compatibility cannot be checked because the EdmMetadata type was not included in the model. Ensure that IncludeMetadataConvention has been add...
分类:
Web程序 时间:
2014-07-16 13:44:15
阅读次数:
255
1,查看端口被那个进程占用
例如: netstat -anp | grep 1160
ps:查看端口1169被那个进程占用。
2,查找进程
例如 :ps -ef | grep 'tomcat'
ps:查找出进程名里含有 tomcat的进程
3,终止进程
一般终止进程的方法是如:
kill 8080
ps:终止进程号为8080的进程
如果上面的命令终止不了进程可...
分类:
系统相关 时间:
2014-07-15 10:21:35
阅读次数:
324
zhuan :http://www.raywenderlich.com/zh-hans/36079/afnetworking%E9%80%9F%E6%88%90%E6%95%99%E7%A8%8B%EF%BC%881%EF%BC%89操作JSONAFNetworking通过网络来加载和处理结构化的数...
分类:
Web程序 时间:
2014-07-15 09:25:03
阅读次数:
490
1. 固定一个MAC地址,特别是在使用多个虚拟机的时候
linux环境下:
用root身份登录,在/etc/rc.d/rc.local里加上这三句
ifconfig eth0 down
ifconfig eth0 hw ether 00:0C:18:EF:FF:ED
ifconfig eth0 up
这样重新reboot后就不怕MAC复原了。
2. ifconfig命令(转...
分类:
系统相关 时间:
2014-07-13 16:14:11
阅读次数:
322