- 浏览: 3199285 次
- 性别:
- 来自: 北京
最新评论
-
happyqing:
skyshowshow 写道[b][/b]DTO类呢baseD ...
Java打印条码,使用佳博条码打印机 -
skyshowshow:
[b][/b]DTO类呢baseDto呢
Java打印条码,使用佳博条码打印机 -
happyqing:
一般使用公钥加密,私钥解密。
java RSA加密生成license,用CPU序列号生成机器码 -
allmyteacher:
楼主。使用分布式session后,能解决freemarker无 ...
spring session redis 配置 -
masuweng:
代码报异常啊
纯java获取CPU序列号,生成机器码
文章列表
TortoiseSVN下载地址
http://tortoisesvn.net/downloads.html
有32位的,64位的
下面有中文包,中文包右边有文档
Language Packs
再下面有历史版本的
Order Releases
https://sourceforge.net/projects/tortoisesvn/files/
eclipse SVN1.6x,1.8x,1.10x插件下载地址
http://happyqing.iteye.com/blog/1808242
Subclipse 1.6.x includes and requires Subversion 1.6.x client features and working copy format.
Subclipse 1.8.x includes and requires Subversion 1.7.x client features and working copy format.
Subclipse 1.10.x includes and requires Subversion 1.8.x client features and working copy format.
L ...
Window--Preferences
选择Tomcat版本
其中:Download链接可以下载没有的服务器,如weblogic
选择Tomcat主目录
Window--Preferences--JAVA--Installed JREs--选中JDK--EDIT
Deault VM Arguments:-Djava.net.preferIPv4Stack=true
http://tomcat.apache.org/
tomcat6下载地址
http://tomcat.apache.org/download-60.cgi
32-bit/64-bit Windows Service Installer 是exe格式的
安装好的服务名是:Apache Tomcat 6.0 Tomcat6
tomcat7下载地址
http://tomcat.apache.org/download-70.cgi
tomcat插件下载地址
tomcatPluginV33.ziphttp://www.eclipsetotale.com/tomcatPl ...
nginx下载地址
http://nginx.org/en/download.html
windows版的左边是linux版的
要下载Stable version版的,稳定版
中文站点
http://nginx.org/cn/
文档
http://nginx.org/cn/docs/
linux下nginx安装,启动,停止
http://happyqing.iteye.com/admin/blogs/1806561
nginx上传模块下载安装
http://happyqing.iteye.com/admin/blogs/1956639/ed ...
oracle is not in the sudoers file. This incident will be reported.
解决方法如下: 1>、进入超级用户模式。也就是输入"su -",系统会让你输入超级用户密码,输入密码后就进入了超级用户模式。 2>、添加文件的写权限。也就是输入命令"chmod u+w /etc/sudoers"。 3>、编辑/etc/sudoers文件。也就是输入命令"vim /etc/sudoers",输入"i"进入编辑模式,找到这一行: ...
nginx安装
可以用root安装,也可以用其他用户sudo安装,还是用root安装简单
需要先装gcc,我的已经安了,
[oracle@dev Server]$ rpm -q gccgcc-4.1.2-51.el5
pcre也安了,不是最新的
[oracle@dev sbin]$ rpm -q pcrepcre-6.6-6.el5_6.1
安装pcre (让nginx支持rewrite)
下载最新PCRE(Perl Compatible Regular Expressions)源码包
http://www.pcre.org/
ftp://ftp.csx.cam ...
>show parameter <keyword> 查询参数
作用:记录了数据库的配置。内存分配、进程数、会话数等分类:pfile类型 ---文本文件
$ORACLE_HOME/dbs/init$ORACLE_SID.ora(9i,10g默认不使用)$ORACLE_BASE/admin/$ORACLE_SID/pfile/init.ora.xxxx(10g初始化时使用一次)
spfile类型 ---二进制文件$ORACLE_HOME/dbs/spfile$ORACLE_SID.ora,服务器端(9i开始使用)能够被rman备份(rman只能备份二进制文件 ...
数据库默认用spfile启动,可以指定用pfile启动,再创建spfile,不启动也可以用pfile创建spfile
pfile在/u01/app/oracle/admin/orcl/pfile/init.ora.115201373031,你也有,结尾数据会不同,
创建好的spfile在/u01/app/oracle/product/11.2.0/dbhome_1/dbs/spfileorcl.ora (spfile+SID)
参考:http://happyqing.iteye.com/admin/blogs/1801069
[oracle@dev ~]$ sqlplus / ...
添加controlfile,重新创建spfile
1.编辑init.ora文件
指定需要添加的控制文件的路径
control_files=("E:\oracle\product\10.1.0\oradata\orcl\control01.ctl", "E:\oracle\product\10.1.0\oradata\orcl\control02.ctl", "E:\oracle\product\10.1.0\oradata\orcl\control03.ctl", "E:\oracle\product\10.1.0\o ...
在重新配置EM时发生如下错误
严重: 'job_queue_processes' 必须大于等于 1。
此参数在配置文件中
/u01/app/oracle/product/11.2.0/dbhome_1/dbs/spfileorcl.ora
此文件不可手工修改,可用vi查看到部分内容。
修改参数SQL> alter system set job_queue_processes=2;
/etc/profile
profile就好比系统环境变量配置文件,可在末尾加入如下代码
用户的环境变量配置文件在 /home/oracle/.bash_profile,其中oracle为用户名,此文件是隐藏的。
#jdKexport JAVA_HOME=/opt/jdk1.6.0_39export PATH=$JAVA_HOME/bin:$PATHexport CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
#oracleexport ORACLE_SID=orclexport ORACLE_HOME ...
linux查看端口号是否被占用
- 博客分类:
- Linux
netstat -anp |grep 端口号
root用户执行
netstat -ntupl
n表示不查询dns
t表示tcp协议
u表示udp协议
p表示查询占用的程序
l表示查询正在监听的程序
查看那个进程占用了xxx端口lsof -i:xxx查看进程号为xxx的进程在哪里ps -ef|grep xxxps -ef |grep 程序名netstat -nltp |grep 端口号或服务名
转:正确修改sysman用户的密码
Oracle 10g 以上密码失效问题oracle em无法登录,我自己遇到的问题总结如下:
其中有两个用户可能密码失效1、 sysman2、 dbsnmp
首先,以SYS DBA身份进入sqlpuls打开sqlpuls
SQL->请输入用户名:sys a ...