728x90

Informix Version : Informix 12.10.FC5W1

OS : Windows 2012 R2

 

윈도우 2012에 인포믹스 설치 중 아래와 같은 오류가 발생했습니다. 찾아보니 설치프로그램의 호환성 이슈인 것 같습니다. 설치프로그램의 호환 모드를 Windows 7으로 했을 때 잘 설치되었습니다.

 

The Application has Unexpectedly Quit



Invocation of this Java Application has caused an

Invocation TargetException. This application will not exit (LAX)



ZeroGu6: Windows DLL failed to load
    at ZeroGa4.b(DashoA10*..)
    at ZeroGa4.b(DashoA10*..)
    at com.zerog.ia.installer.LifeCycleManager.b(DashoA10*..)
    at com.zerog.ia.installer.LifeCycleManager.a(DashoA10*..)
    at com.zerog.ia.installer.Main.main(DashoA10*..)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
    at java.lang.reflect.Method.invoke(Method.java:611)
    at com.zerog.lax.LAX.launch(DashoA10*..)
    at com.zerog.lax.LAX.main(DashoA10*..)

 

http://www-01.ibm.com/support/docview.wss?uid=swg21686842

728x90
728x90

Problem(Abstract)

You see errors like these on Windows when running ontape, oninit, starts, net start and so on as user informix:

Only member of IXDBSA group (Informix-Admin, by default) can start IBM Informix Dynamic Server.
Dynamic Server failed to start in Recovery Mode. Check Event Log for errors.
System error 5 has occurred. Access is denied.

Symptom

  • Only member of IXDBSA group (Informix-Admin, by default) can start IBM Informix Dynamic Server.
  • Dynamic Server failed to start in Recovery Mode. Check Event Log for errors.
  • System error 5 has occurred. Access is denied.

Cause

The behavior you are seeing is caused by one of these:

  • Windows User Account Controls (UAC) component is enabled
  • Lack of rights for user informix
  • The user is not part of the IXDBSA group (Informix-Admin, by default)

Resolving the problem


http://www-01.ibm.com/support/docview.wss?uid=swg21430794

728x90
728x90

Problem(Abstract)

Your IBM Informix server instance terminated unexpectedly. There is no message in server log file (online.log) indicating that it came offline.

Diagnosing the problem

Check your system for a file named olsrvice.log (not olservice.log). You may find the file in the Informix server directory, C:\WINDOWS\system32, or possibly another directory. If the file contains the message that follows, then the server was not brought offline by terminating the database server service.

<timestamp>  Service was shut-down externally.

You should be able to mimic this behavior by executing a taskkill command to kill oninit.exe:

>taskkill /F /IM oninit.exe /T


http://www-01.ibm.com/support/docview.wss?uid=swg21606530

728x90
728x90
인포믹스 윈도우용 제품 설치시 기본 인스턴스명은 ol_informix1210 과 같은 형식입니다.

재미있게도 제품을 언인스톨 했다가 같은 이름으로 재설치하려고 하면 인스턴스명이 ol_informix1210_1로 지정됩니다.


ol_informix1210으로 하려고 해도 이미 인스턴스가 있다고 합니다. 지웠는데도 불구하고 말이지요.


인스턴스명과 포트명은 일반적으로 c:\windows\system32\driver\etc\services 파일에 기록이 되는데


설치제거시에는 파일에서 기록이 없어지지 않습니다.


이 파일에서 사용하지 않는 인스턴스명은 직접 삭제해주면 설치를 할 수 있습니다.



출처 : 

http://stackoverflow.com/questions/7029290/ghost-informix-instances-in-windows



728x90
728x90

One of the things I miss when on a windows machine is the command line utilities provided on a Unix machine. one of the most missed utilities is grep. As it turns out, Windows has an adequate built-in equivalent, namely findstr. In fact, Windows has several built-in command-line utilities that provide most, if not all, of the functionality of our trusty Unix tools. This article shall serve as the first of many that will describe Windows equivalents to Unix command-line tools.

Source File

For all examples, we shall use the Windows findstr help file listed below.

C:\Documents and Settings\michael>findstr /?
Searches for strings in files.

FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P] [/F:file]
        [/C:string] [/G:file] [/D:dir list] [/A:color attributes] [/OFF[LINE]]
        strings [[drive:][path]filename[ ...]]

  /B         Matches pattern if at the beginning of a line.
  /E         Matches pattern if at the end of a line.
  /L         Uses search strings literally.
  /R         Uses search strings as regular expressions.
  /S         Searches for matching files in the current directory and all
             subdirectories.
  /I         Specifies that the search is not to be case-sensitive.
  /X         Prints lines that match exactly.
  /V         Prints only lines that do not contain a match.
  /N         Prints the line number before each line that matches.
  /M         Prints only the filename if a file contains a match.
  /O         Prints character offset before each matching line.
  /P         Skip files with non-printable characters.
  /OFF[LINE] Do not skip files with offline attribute set.
  /A:attr    Specifies color attribute with two hex digits. See "color /?"
  /F:file    Reads file list from the specified file(/ stands for console).
  /C:string  Uses specified string as a literal search string.
  /G:file    Gets search strings from the specified file(/ stands for console).
  /D:dir     Search a semicolon delimited list of directories
  strings    Text to be searched for.
  [drive:][path]filename
             Specifies a file or files to search.

Use spaces to separate multiple search strings unless the argument is prefixed
with /C.  For example, 'FINDSTR "hello there" x.y' searches for "hello" or
"there" in file x.y.  'FINDSTR /C:"hello there" x.y' searches for
"hello there" in file x.y.

Regular expression quick reference:
  .        Wildcard: any character
  *        Repeat: zero or more occurances of previous character or class
  ^        Line position: beginning of line
  $        Line position: end of line
  [class]  Character class: any one character in set
  [^class] Inverse class: any one character not in set
  [x-y]    Range: any characters within the specified range
  \x       Escape: literal use of metacharacter x
  \    Word position: end of word

For full information on FINDSTR regular expressions refer to the online Command


Basic Tasks

Find lines with the word "any" in them

Unix grep:

grep any findstr_help.txt

Output:

.        Wildcard: any character
[class]  Character class: any one character in set
[^class] Inverse class: any one character not in set
[x-y]    Range: any characters within the specified range

Windows findstr:

findstr any findstr_help.txt

Output:

.        Wildcard: any character
[class]  Character class: any one character in set
[^class] Inverse class: any one character not in set
[x-y]    Range: any characters within the specified range

Recursively search a file directory for the word "any" in the files

Unix grep:

grep -R any .

Output is omitted due to size.

Windows findstr:

dir /B /S . | findstr /f:/ any

Output is ommitted due to size.


http://www.michaelmiranda.org/software-development/articles/grepforwindowsusingfindstr

728x90

+ Recent posts