代码改变世界

阅读排行榜

编码UTF-8的不可映射字符

2012-12-18 15:50 by AgileEAP, 2346 阅读, 收藏,
摘要: maven compile 报发下错误E:\GitHub\ireport\src\main\java\com\agileEAP\ireport\utils\Cryptos.java:8] 错误: 编码UTF-8的不可映射字符此问题是java文件不是UTF-8格式的,另存为UTF-8格式即可 阅读全文

Detected Maven Version: 3.0.2 is not in the allowed range 3.0.3.

2013-02-22 10:04 by AgileEAP, 1389 阅读, 收藏,
摘要: Detected Maven Version: 3.0.2 is not in the allowed range 3.0.3.遇到过这样的问题,把pom.xml中的maven-enforcer-plugin的version由3.0.3改为3.0.2就行了。 阅读全文

源码编译安装mono

2013-06-30 21:58 by AgileEAP, 708 阅读, 收藏,
摘要: Pre-compiled PackagesCentOS 5/6 / Fedora 15 / Redhat 5 32bitwget http://www.tcadmin.com/installer/mono-2.10.8-bi.i386.rpm yum -y install mono-2.10.8-bi.i386.rpm --nogpgcheckCentOS 5/6 / Fedora 15 / Redhat 5 64bitNOTE: CentOS 6.0 64bit needs to be configured with Mono 32bit. Use the commands above. C 阅读全文

Linux下Mongodb安装和启动配置.txt

2012-12-19 11:49 by AgileEAP, 295 阅读, 收藏,
摘要: 步骤一:下载文件对于32位的linux$ curl http://downloads.mongodb.org/linux/mongodb-linux-i686-1.4.4.tgz > mongo.tgz$ tar xzf mongo.tgz对于64位的linux$ curl http://downloads.mongodb.org/linux/mongodb-linux-x86_64-1.4.4.tgz > mongo.tgz$ tar xzf mongo.tgz如果没有安装curl先安装apt-get install curl步骤二:创建数据文件夹默认情况下,MongoDB会在/ 阅读全文

mysql配置修改root密码

2012-12-25 15:17 by AgileEAP, 268 阅读, 收藏,
摘要: 一、安装时修改密码 1. Linux mysql安装: $ yum install mysql-server 2. Linux mysql修改root密码: $ mysqladmin -u root password your_new_passwd 3. 启动Linux mysql服务 $ /etc/init.d/mysqld start 4. 添加为系统服务并随之自动启动: $ chkconfig --level 2345 mysqld on 5. 修改防火墙,开启3306端口,使得可以进行远程访问: System->Administration->Firewall->O. 阅读全文