摘要: 简要的分析一下WEB系统的过去和现在以及未来
阅读全文
posted @
2013-01-05 12:36 蓝剑 阅读(445) |
评论 (0) |
编辑 收藏
摘要: 简要的分析一下WEB系统的过去和现在以及未来
阅读全文
posted @
2013-01-05 12:13 蓝剑 阅读(380) |
评论 (0) |
编辑 收藏
摘要: 简要的分析一下WEB系统的过去和现在以及未来
阅读全文
posted @
2013-01-05 11:42 蓝剑 阅读(412) |
评论 (0) |
编辑 收藏
摘要: 以本人观点简要的分析一下WEB系统的过去和现在以及未来,不对之处勿喷,大家共同讨论!
阅读全文
posted @
2013-01-05 11:04 蓝剑 阅读(1758) |
评论 (2) |
编辑 收藏
在系统启动中添加如下命令:
nvidia-settings -l
posted @
2010-10-17 11:35 蓝剑 阅读(422) |
评论 (0) |
编辑 收藏
1、安装
# ./VMware-Workstation-Full-7.0.1-227600.x86_64.bundle
2、卸载
# vmware-installer -u vmware-workstation
posted @
2010-10-17 10:41 蓝剑 阅读(487) |
评论 (0) |
编辑 收藏
环境:
虚拟机软件版本:VMware-Workstation 6.5.1 build-126130
虚拟机Guest OS: Windows 2003 R2 SP2 简体中文版
场景:
由于软件license绑定到操作系统MAC地址,但是VMware Workstation限制虚拟机Guest OS的静态MAC地址必须为 00:0c:29:xx:yy:zz
解决方法:
编辑虚拟机VMX文件:添加或修改以下项
ethernet0.present = "true"
ethernet0.checkMACAddress = "FALSE"
ethernet0.addressType = "static"
ethernet0.address = "00:11:43:5a:e0:9f"
posted @
2010-09-30 16:25 蓝剑 阅读(1614) |
评论 (0) |
编辑 收藏
如何直接执行 class 文件?
Linux平台:
java -cp abc.jar AAA.GetInfo
Windows平台:
java -classpath abc.jar AAA.GetInfo
摘要: 描述:将远程服务器映射到本地服务器的URL空间
语法:ProxyPass [路径] !|url [键=值 键=值 ...]] [nocanon]
上下文: server config, virtual host, directory
状态:扩展
模块:mod_proxy
阅读全文
posted @
2010-07-02 09:36 蓝剑 阅读(6661) |
评论 (0) |
编辑 收藏
PHP5.3连接MySQL出现 mysqlnd cannot connect to MySQL 4.1+ using old authentication错误
1、编辑my.cnf注释掉一下行:
old_passwords = 1
2、重启MySQL
service mysqld restart
/etc/inint.d/mysqld restart
3、检查是否有16位的密码
SELECT user, Length(`Password`) FROM `mysql`.`user`;
4、如果有,把对应的用户名密码用以下SQL更新
UPDATE mysql.user SET Password = PASSWORD('password') WHERE user = 'username';
5、更新后要刷新
FLUSH PRIVILEGES;
posted @
2010-06-30 14:07 蓝剑 阅读(1573) |
评论 (0) |
编辑 收藏
/usr/bin/phpize
CFLAGS="-I/opt/ora11/oracle/"
CXXFLAGS="-I/opt/ora11/oracle/"
./configure --with-php-config=/usr/bin/php-config --with-oci8=/opt/ora11/oracle
make
make install
posted @
2010-06-29 18:16 蓝剑 阅读(699) |
评论 (0) |
编辑 收藏
今天在启动服务器上的ORACLE时遇到如下错误:
SQL> startup;
ORA-00119: invalid specification for system
parameter LOCAL_LISTENER
ORA-00132: syntax error or unresolved
network name 'LISTENER_ORCL'
然后,在网上找了一些资料,解决了此问题。
解决的方式如下(这是网上的一位达人解决方案,我照他的步骤顺利解决,不过决定还是做一个笔记):
第一步:复制一份pfile参数文件(注意:oracle中的pfile指的就是init<sid>.ora文件)
$ ./sqlplus / as sysdba;
SQL> create pfile from spfile='/opt/ora11/oracle/dbs/spfilesouask.ora';
第二步:修改pfile参数文件(也即修改init<sid>.ora文件)
经过第一步以后,你就会在$ORACLE_HOME/dbs目录下发现有这么一个文件init<sid>.ora,这就是你第一步创建
的文件。由于我的oracle实例名为orcl,所以我的pfile文件为initorcl.ora。
用gedit打开,找到local_listener这一行,然后将其值修改为:
(ADDRESS_LIST=(Address=(Protocol=tcp)
(Host=your_hostname)(Port=1521)))
其中的your_hostname为你的主机名,其实导致ORA-00119和ORA-00132错
误的原因就很可能是你修改了你的hostname,但是我看了一下我的tnsname.ora文件里面的那个LISTENER_ORCL(可能你不是这个
名字)和后面修改的your_hostname一致,我做的只是将tnsname.ora文件中的(ADDRESS_LIST=(Address=
(Protocol=tcp)
(Host=your_hostname)(Port=1521)))复制到pfile文件的“local_listener=”后面,然后就顺利启动了
数据库,我也不知道为什么直接用*.local_listener='LISTENER_ORCL'就找不到,而一定要*.local_listener='(ADDRESS_LIST=(Address=(Protocol=tcp)
(Host=your_hostname)(Port=1521)))'才可以,这个问题以后研究一下。
以下是我的一个修改样例:
修改之前可能是这样
*.local_listener='LISTENER_ORCL'
修改后的值大概就是这个样子了
*.local_listener='(ADDRESS_LIST=(Address=(Protocol=tcp)
(Host=your_hostname)(Port=1521)))'
然后保存退出
第三步:以pfile创建spfile
使用以下命令创建spfile
SQL> create spfile from pfile='/opt/ora11/oracle/dbs/initsouask.ora';
第四步:启动数据库
SQL> startup;
posted @
2010-06-29 13:41 蓝剑 阅读(1339) |
评论 (0) |
编辑 收藏