- 浏览: 347951 次
- 性别:
- 来自: 广州
最新评论
-
wangzi2011wang:
为java_web项目添加spring_MVC框架(JSTL表达式) -
HJFWorld:
ams-all-4.0.jar的包,哪里可以下载?
org/objectweb/asm/Type异常解决办法 -
ccy953384950:
我是用第一种方法解决的!
org/objectweb/asm/Type异常解决办法 -
bugman:
我用第三种方法解决了。谢谢
org/objectweb/asm/Type异常解决办法
文章列表
[root@master-hadoop hive]# yum install mysql-connector-java -y
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
* base: centos.ustc.edu.cn
* extras: mirrors.aliyun.com
* updates: centos.ustc.edu.cn
Setting up Install Process
Resolving Dependencies
--> Running t ...
一、PFILE
Pfile(Parameter File,参数文件)是基于文本格式的参数文件,含有数据库的配置参数。
1、PFILE - initSID.ora(默认PFILE名称),位置在$ORACLE_HOME/dbs目录下面。 这是一个文本文件,可以用任何文本编辑工具打开。
2、创建PFILE
cp init.ora $ORACLE_HOME/dbs/initorcl.ora
编辑initorcl.ora文件,修改适合自己的参数。建议不要使用oracle提供的初始化参数,这个文档有点老。
需要修改的名字有:
db_name=wilson
#添加db_block_size
db_block_ ...
下面是linux下安装apache的完整代码,系统是redhat5.5
点此查看详细图文教程
下载httpd-2.2.6.tar.bz2 把httpd-2.2.6.tar.bz2放到/soft 下
[root@localhost ~]#cd /soft
[root@localhost soft]#tar jxvf httpd-2.2.6.tar.bz2 //解压apache的压缩包
[root@localhost soft]#cd httpd-2.2.6 //定位到httpd-2.2.6 文件夹下
[root@localhost httpd-2.2.6]#ls //查看 ...
环境变量已经配好,但是仍报错:
[oracle@dg1 ~]$ vi .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME
export EDITOR=vi
export ORACLE_SID=dg1
export ORAC ...
每个Oracle用户都有一个名字和口令,并拥有一些由其创建的表、视图和其他资源。Oracle角色(role)就是一组权限(privilege)(或者是每个用户根据其状态和条件所需的访问类型)。用户可以给角色授予或赋予指定的权限,然后将角色赋给相应的用户。一个用户也可以直接给其他用户授权。
数据库系统权限(Database System Privilege)允许用户执行特定的命令集。例如,CREATE TABLE权限允许用户创建表,GRANT ANY PRIVILEGE 权限允许用户授予任何系统权限。
数据库对象权限(Database Object Privilege)使得用户能够 ...
前天无聊在虚拟机中的CentOS上装了一个mysql玩玩,突然想用jdbc连接用java操作下数据库,可是怎么都连接不上,具体情况为:
1.ping 192.168.16.128 成功
2.telnet 192.168.16.128 3306 拒绝访问 在3306端口,可见CentOS防火墙屏蔽了3306端口
修改方 ...
安装MySQL。
[root@sample ~]# yum -y install mysql-server ← 安装MySQL
[root@sample ~]# yum -y install php-mysql ← 安装php-mysql
配置MySQL
[root@sample ~]#vim /etc/my.cnf ← 编辑MySQL的配置文件
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility w ...
安装MySQL。
[root@sample ~]# yum -y install mysql-server ← 安装MySQL
[root@sample ~]# yum -y install php-mysql ← 安装php-mysql
配置MySQL
[root@sample ~]#vim /etc/my.cnf ← 编辑MySQL的配置文件
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility w ...
kill - QUIT `/usr/local/nginx/logs/nginx.pid`
出现以下问题:-bash:`/usr/local/nginx/logs/nginx.pid:Permission denied
解决方法:sudo ./sbin/nginx -t
具体情况如下:
http://user.qzone.qq.com/380922143/infocenter#!app=2&via=QZ.HashRefresh&pos=1379065657
[root@localhost conf]# /usr/local/nginx/sbin/nginx -s reload
nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)
解决方案:
于是网上用了这方法,也就是nginx -c /path/to/config/file)
在我机器上是这样的/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
重启防火墙
/etc/init.d/iptables restart
CentOS防火墙的关闭,关闭其服务即可:
查看CentOS防火墙信息:/etc/init.d/iptables status
关闭CentOS防火墙服务:/etc/init.d/iptables stop
虚拟机
root:x:0:0:root:/root:/bin/bash
改成
root:x:0:0:root:/root:/bin/csh
重启后,root的权限进不去了
解决办法
1:一、重启系统,如图:GRUB: 在引导装载程序菜单上,用上下方向键选择你忘记密码的那个系统键入“e” 来进入编辑模式。
2.接下来你可以看到如下图所示的画面,然后你再用上下键选择最新的内核(这里是第二行,kernel.......),然后在按“e”。
3、在rhgb quiet后面加“空格”。然后键入“single”,或者直接输入数字的“1”并回车确定(或加入rw init=/bin/bash,再按 ...
基于Spring的Hibernate Search全文检索功能示例
http://hi.baidu.com/zwnlavmytfbjnwd/item/e98bfc516cd72cced3e10c41
Hibernate Search牛刀小试http://blog.csdn.net/yanghuw/article/details/1808011, 蛮详细的。
Hibernate Search全面概述 http://developer.51cto.com/art/200909/154278.htm
H ...
python实例手册 下载地址发布
刚刚开始整理,请期待之后版本!
python实例手册下载地址: http://url.cn/FjDuWr
其他下载:
LazyManage系统批量管理软件下载(shell):
http://hi.baidu.com/quanzhou722/item/4ccf7e88a877eaccef083d1a
shell实例手册下载地址:
http://hi.baidu.com/quanzhou722/item/f4a4f3c9eb37f02d46d5c0d9
oracle中 connect by prior 递归算法
Oracle中start with...connect by prior子句用法 connect by 是结构化查询中用到的,其基本语法是:
select ... from tablename start with 条件1
connect by 条件2
where 条件3;
例:
select * from table
start with org_id = 'HBHqfWGWPy'
connect by prior org_id = parent_id;
简单说来是将一个树状结构存储在一张表里,比如一个 ...