Questions tagged [aix]

AIX (Advanced Interactive eXecutive, pronounced "a i ex") is a series of proprietary Unix operating systems developed and sold by IBM for several of its computer platforms.

AIX (Advanced Interactive eXecutive, pronounced "a i ex") is a series of proprietary Unix operating systems developed and sold by IBM for several of its computer platforms.

Resources

1819 questions
0
votes
1 answer

Error Separating ftp file listing of 130 files - using vb.net

So I have a vb.net application, running on a windows server, that has an ftp class that we call to interact with our files on our unix server. The application had been running fine for years, until we started interacting with a large group (~130…
Off The Gold
  • 1,228
  • 15
  • 28
0
votes
1 answer

sh - Split File to Multiple Files

I need a unix (aix) script to split a file to multiple files, basically one file per line, where the content of the file like: COL_1 ROW 1 1 1 COL_2 ROW 2 2 2 COL_3 ROW 3 3 3 ... and the name of each file is the 1st column, and the content of the…
tiago
  • 39
  • 10
0
votes
4 answers

I am having trouble understanding what ${@} means in KSH

Not a long question, what does this mean? LogMsg "File:${@}" LogMsg() is a method that logs a message with a timestamp. But what the heck does ${@} mean? I should also mention the script also has $1 and $2 as well. Google produces no results. …
R4F6
  • 782
  • 1
  • 9
  • 26
0
votes
1 answer

OutOfMemoryException - GC verbose confirmed a memory leak, what now?

I'm monitoring an app whose GC verbose log looks like this: The graph draws the amount of Used Tenured after the GC runs. As you can see, there's an obvious memory leak, but I was wondering what would be the best next step to find out which…
0
votes
1 answer

difference between 2 commands in Unix AIX

I need to find difference between 2 Cmd outputs. I found this Cmd for Linux but it is not working for Unix AIX server. diff <(cmd1) <(cmd2) Please let me know the equivalent UNIX command.
0
votes
1 answer

aix unix 6.1 - 'find' command not executing via cronjob; but ok from shell

non-recursively find files older than 1 minute within my home directory and update their timestamp * * * * * /usr/bin/find /home/me/ \( ! -name . -prune \) \( -type f -mmin +1 -name "*" \) -exec /usr/bin/touch {} \; it runs like a charm from shell…
user2585000
  • 113
  • 1
  • 9
0
votes
1 answer

find text between 2 strings if not found blank

I am trying to get string between device_uuid: and , d device_uuid:xxx, ptr device_uuid:2, command: sed -e 's/device_uuid:\(.*\),/\1/g' d Output : xxx ptr 2 Expected output: xxx == > blank as there is no pattern 2
user2711819
  • 960
  • 3
  • 16
  • 29
0
votes
1 answer

Script to generate a list to run a command

Sorry for the semi-vague title, I wasn't exactly sure how to word it. I'm looking to generate a list, excluding devices without a matching major/minor number, and run lkdev -l hdiskn -a -c DATAn where the hdisk and the DATA device having…
PassLin3
  • 3
  • 2
0
votes
0 answers

Unix: ls -la reveals 4 files, one of which should be impossible, affecting other files

Ive got a directory that contains a parmFile. I need to read a text file by line and input the parsed text into the parmFile. In my parmFile directory, when I type the list all command, I have the following: bash: $ ls -la total 8 -rw-r--r-- 1…
R4F6
  • 782
  • 1
  • 9
  • 26
0
votes
1 answer

Renaming files starting with particular chars to a particular name in AIX

I have multiple files which are starting with error_* and i want to rename all of those with a particular name. I am using the below script to do that but it is not working. counter=1 for i in `ls error*` do mv $i ABC$counter_$i $(( counter++…
Gaurav Parek
  • 317
  • 6
  • 20
0
votes
1 answer

seting ODBC Datasource in IBM AIX server

I have develop IBM Message broker flow database application in windows xp environment. the database accessed using ODBC datasource. basically, I use compute node with esql programming to select query in database, and I set the datasource in the…
Adi Sembiring
  • 5,798
  • 12
  • 58
  • 70
0
votes
1 answer

Java 8 options for AIX

Does anyone have any information about JDK8 options for AIX environment? As per my information IBM has yet to release Java 8. Are there any other releases of JDK8 for AIX?
user3189384
  • 53
  • 1
  • 8
0
votes
1 answer

AIX 6.1 If command not found in Bash script

typeset -i STARTTIME=`expr $STARTHOUR \* 60 \* 60 + $STARTMINUTE \* 60 + $STARTSECOND` echo $STARTTIME typeset -i ENDTIME=`expr $ENDHOUR \* 60 \* 60 + $ENDMINUTE \* 60 + $ENDSECOND` echo $ENDTIME typeset -i ELAPSED=`expr $ENDTIME - $STARTTIME` …
Kyle
  • 15
  • 3
0
votes
1 answer

shell scripting, how to run different code based on selection?

I have a shell script as below... #!/bin/ksh set_logging() { if [ -f "$LOG_FILE" ] then mv $LOG_FILE $LOG_FILE.$SYNCDATE else touch $LOG_FILE fi # set logging for stdout and stderr (run this if user selects start) exec >> $LOG_FILE exec 2>&1 #…
user1709091
0
votes
2 answers

MongoDB on AIX Server

I am new to mongoDb. I am trying to install mongo Db on AIX server. Can someone suggest whether AIX supports MongoDb and specify which version, installation steps as well. Thanks in advance.
Priyanka
  • 3
  • 3
1 2 3
99
100