随笔 - 669  文章 - 0  评论 - 56  阅读 - 320万
10 2016 档案
mysql Access denied for user root@localhost错误解决方法总结(转)
摘要:mysql Access denied for user root@localhost错误解决方法总结(转) mysql Access denied for user root@localhost错误解决方法总结(转) mysql Access denied for user \'root\'@\' 阅读全文
posted @ 2016-10-30 22:43 adolfmc 阅读(1070) 评论(0) 推荐(0) 编辑
MYSQL数据库如何赋予远程某个IP访问权限
摘要:1. 授权用户root使用密码jb51从任意主机连接到mysql服务器:代码如下:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'jb51' WITH GRANT OPTION;flush privileges; 2.授权用户root 阅读全文
posted @ 2016-10-30 22:40 adolfmc 阅读(5199) 评论(0) 推荐(0) 编辑
linux网络编程 no route to host 解决方案
摘要:linux网络编程 no route to host 解决方案 【整合资料】 (2013-05-13 21:38:12) 转载▼ linux网络编程 no route to host 解决方案 【整合资料】 转载▼ 标签: net iptables it 分类: Linux net iptables 阅读全文
posted @ 2016-10-30 21:58 adolfmc 阅读(32129) 评论(0) 推荐(0) 编辑
CentOS添加路由表
摘要:CentOS下静态路由修改命令方法一:添加路由route add -net 192.168.0.0/24 gw 192.168.0.1route add -host 192.168.1.1 dev 192.168.0.1删除路由route del -net 192.168.0.0/24 gw 192 阅读全文
posted @ 2016-10-30 18:11 adolfmc 阅读(20545) 评论(0) 推荐(0) 编辑
CentOS安装zip unzip命令
摘要:yum install zip unzip 阅读全文
posted @ 2016-10-30 18:08 adolfmc 阅读(2034) 评论(0) 推荐(0) 编辑
Linux CentOS 6.6安装JDK1.7
摘要:Linux CentOS 6.6安装JDK1.7 目录 1、下载JDK 2、卸载JDK 3、安装JDK 3.1、.rpm后缀格式JDK安装方式 3.2、.tar.gz后缀格式JDK安装方式 4、验证安装 1、下载JDK 根据操作系统的位数下载对应的JDK,操作系统是32位的就下32位的JDK,64位 阅读全文
posted @ 2016-10-30 18:05 adolfmc 阅读(275) 评论(0) 推荐(0) 编辑
linux 常用命令
摘要:更改时区 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 查看开启端口号 netstat -anplut lsof -i:80 如果有显示说明已经开放了,如果没有显示说明没有开放 centos安装wget yum -y install wget 阅读全文
posted @ 2016-10-29 21:37 adolfmc 阅读(199) 评论(0) 推荐(0) 编辑
quickstart.sh
摘要:#!/bin/bashjava_pid=`ps -ef | grep java | grep 'com.kzhong.huamu.sisyphus.QuickStartServer' | awk '{print $2}'`kill -9 ${java_pid}unzip -o *.zip chmod 阅读全文
posted @ 2016-10-29 14:04 adolfmc 阅读(206) 评论(0) 推荐(0) 编辑
CentOS6.5安装telnet命令
摘要:安装好memcache之后想进入连接测试,telnet localhost 11211发现竟然提示没有telnet这个命令,于是需要自己进行安装。 一、查看本机是否安装telnet #rpm -qa | grep telnet 如果什么都不显示。说明你没有安装telnet 二、开始安装 yum in 阅读全文
posted @ 2016-10-28 00:47 adolfmc 阅读(288) 评论(0) 推荐(0) 编辑
CentOS 6.6 新安装系统的网络IP配置
摘要:实例环境 虚拟机:VMware 11.1.0 系统:CentOS 6.6 虚拟机:VMware 11.1.0 系统:CentOS 6.6 # ifconfig -a << 查看所有网卡的状态 2. # vi /etc/sysconfig/network-scripts/ifcfg-eth0 << 编 阅读全文
posted @ 2016-10-23 19:17 adolfmc 阅读(4341) 评论(0) 推荐(0) 编辑
详解spring 每个jar的作用
摘要:spring.jar 是包含有完整发布模块的单个jar 包。但是不包括mock.jar, aspects.jar, spring-portlet.jar, and spring-hibernate2.jar。spring-src.zip就是所有的源代码压缩包。除了spring.jar 文件,Spri 阅读全文
posted @ 2016-10-17 09:09 adolfmc 阅读(2103) 评论(0) 推荐(0) 编辑
用SQL语句添加删除修改字段_常用SQL
摘要:1.增加字段 alter table docdsp add dspcodechar(200)2.删除字段 ALTER TABLE table_NAME DROP COLUMNcolumn_NAME3.修改字段类型 ALTER TABLE table_name ALTER COLUMNcolumn_n 阅读全文
posted @ 2016-10-16 17:20 adolfmc 阅读(232) 评论(0) 推荐(0) 编辑
PowerDesigner
摘要:、PowerDesigner使用MySQL的auto_increment ◇问题描述: PD怎样能使主键id使用MySQL的auto_increment呢? ◇解决方法: 打开table properties窗口 → columns → 选中id列 → 打开columns properties窗口 阅读全文
posted @ 2016-10-16 14:15 adolfmc 阅读(697) 评论(0) 推荐(0) 编辑
shell脚本
摘要:nohup java -jar kzfinance-activities-0.0.1.jar --server.port=8002 >> kzfinance.out & #!/bin/bashdate=`date +'%Y%m%d %T'`pid=`ps -ef |grep Credit | gre 阅读全文
posted @ 2016-10-13 19:33 adolfmc 阅读(184) 评论(0) 推荐(0) 编辑
Spring Security
摘要:ntercept-url中access配置 IS_AUTHENTICATED_ANONYMOUSLY 允许匿名用户进入 IS_AUTHENTICATED_FULLY 允许登录用户进入 IS_AUTHENTICATED_REMEMBERED 允许登录用户和rememberMe用户进入 支持表达式 [h 阅读全文
posted @ 2016-10-11 14:00 adolfmc 阅读(546) 评论(0) 推荐(0) 编辑
maven 跳过测试 打包 及上传命令
摘要:[main] ERROR org.apache.maven.cli.MavenCli - Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.16:test (default-test) on project 阅读全文
posted @ 2016-10-09 23:22 adolfmc 阅读(642) 评论(0) 推荐(0) 编辑
apache maven pom setting
摘要:<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the 阅读全文
posted @ 2016-10-09 09:15 adolfmc 阅读(447) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示