摘要: http://www.cnblogs.com/valu/p/5649689.html 一、配置防火墙,开启80端口、3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld 阅读全文
posted @ 2017-08-19 15:52 bert.zeng 阅读(203) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/fslnet/p/3143344.html 用户管理 mysql>use mysql; 查看 mysql> select host,user,password from user ; 创建 mysql> create user zx_root IDENT 阅读全文
posted @ 2017-08-19 15:03 bert.zeng 阅读(839) 评论(1) 推荐(0) 编辑
摘要: nginx -s reload :修改配置后重新加载生效 nginx -s reopen :重新打开日志文件nginx -t -c /path/to/nginx.conf 测试nginx配置文件是否正确关闭nginx:nginx -s stop :快速停止nginx quit :完整有序的停止ngi 阅读全文
posted @ 2017-08-19 13:37 bert.zeng 阅读(138) 评论(1) 推荐(0) 编辑
摘要: 4.0.0 cn.com.paic.stock.ops PrismLog 0.0.1-SNAPSHOT jar PrismLog PrismLog org.springframework.boot spring-boot-starter-parent 1.5.2.RELEA... 阅读全文
posted @ 2017-07-04 15:10 bert.zeng 阅读(188) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-12-22 21:40 bert.zeng 阅读(829) 评论(0) 推荐(0) 编辑
摘要: /* Extend Function */ function extend(subClass,superClass){ var Func = function(){} ; Func.prototype = superClass.pro... 阅读全文
posted @ 2014-12-11 00:46 bert.zeng 阅读(90) 评论(0) 推荐(0) 编辑
摘要: public interface IPluginMetadata{ string Name { get; } [DefaultValue(1)] int Version { get; }}[Export(typeof(IPlugin)), ExportMetadata("... 阅读全文
posted @ 2014-11-25 15:36 bert.zeng 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 在vs2010 .net 4.0 引用dll .net 2.0出现Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime with... 阅读全文
posted @ 2014-11-23 00:32 bert.zeng 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: public interface IEnumerable { IEnumerator GetEnumerator(); } public interface IEnumerator { bool MoveNext(); void Reset(); Object Current { g... 阅读全文
posted @ 2014-11-17 22:53 bert.zeng 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 1.select Distinct 'alter system kill session '||chr(39)||b.sid||','||b.serial#||chr(39)||';'As cmd,b.username,b.logon_timefrom v$locked_object a,v$ses... 阅读全文
posted @ 2014-11-03 15:44 bert.zeng 阅读(135) 评论(1) 推荐(0) 编辑