1、环境介绍操作系统:HP-UX B.11.31
ia64安装介质:mysql-5.1.48-hpux11.31-ia64-64bit.depot.gz2、安装过程(1)创建mysql用户、用户组#
groupadd mysql# useradd -g mysql -d /home/mysql -s...
分类:
数据库 时间:
2014-06-06 22:51:55
阅读次数:
863
1、建用户:adduser phpq //新建phpq用户passwd phpq
//给phpq用户设置密码2、建工作组groupadd test //新建test工作组3、新建用户同时增加工作组useradd -g test phpq
//新建phpq用户并增加到test工作组注::-g 所属组 ...
分类:
系统相关 时间:
2014-06-06 22:38:14
阅读次数:
343
虽然在windows上搭建SVN很简单,但是效能却不高,这当然是和linux相比了.然而在linux上搭建SVN却非常繁琐,所以今天这篇文章就来一步一步教您如何在Centos上搭建SVN安装#yum
install subversion1)创建svn用户#groupadd svn#useradd ....
分类:
系统相关 时间:
2014-06-03 16:32:51
阅读次数:
335
Te Regular Expression literal also creates new
objects in ECMA Script 5. And one last note that calling RegExp() without new(as
a function, not as a c...
分类:
编程语言 时间:
2014-06-02 15:50:52
阅读次数:
280
原文信息原文地址原文作者信息Justin GreenwoodMyGeneration
Softwarehttp://www.mygenerationsoftware.com/October 7, 2004系统需求:Microsoft
Windows 2000/XPMicrosoft .Net Fra...
分类:
Web程序 时间:
2014-06-02 13:33:13
阅读次数:
729
using System;using System.Data;using
System.Configuration;using System.Collections;using System.Web;using
System.Web.Security;using System.Web.UI;usin...
分类:
Web程序 时间:
2014-06-02 09:44:06
阅读次数:
237
安装mysql-5.0.45.tar.gz(该软件包下载地址:http://www.filewatcher.com/m/mysql-5.0.45.tar.gz.24433261-0.html)#groupaddmysql#添加mysql组#useradd-gmysqlmysql#添加mysql用户,且加入mysql组--------------------编译过程----------------------------------#tarzxvfmysql..
分类:
数据库 时间:
2014-06-02 04:00:00
阅读次数:
379
#过滤oracle警告日志文件ORA-错误
$c=Get-ContentC:\script.txt|select-string-pattern"ora-"
#判断ORA-错误存在条件
#若$c返回值为null,则输出1返回值结束循环
if($c-eq$null)
{
write-host"STATE_OK"
$STATE_OK={return1;}
$b=&$STATE_OK
$b
}
#若$c返回值不为空,..
分类:
其他好文 时间:
2014-06-02 03:26:07
阅读次数:
197
写了一个powershell脚本测试脚本,结果执行的时候报错
$a=Get-ContentC:\script.txt|select-string-pattern"ora"
if($a-eq$null)
{
write-host"error"
}
else
{
write-host"OK"
}
PSD:\>.\pshell.ps1
无法加载文件D:\pshell.ps1,因为在此系统中禁止执行脚本。有关详..
分类:
其他好文 时间:
2014-06-02 03:17:04
阅读次数:
244
导入MyEclipse的主题后,打开jsp或者html文件,jsvascript部分就蒙受上了一层白色,弄不掉了。症状如下:
解决办法如下:...
分类:
Web程序 时间:
2014-06-01 18:25:21
阅读次数:
460