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
9
votes
3 answers

Java startup is very slow in AIX7.1

AIX 64bit, 7G RAM $ uname -a AIX server3 1 7 00036073D600 $ java -version java version "1.6.0" Java(TM) SE Runtime Environment (build pap6460_26sr1-20111114_01(SR1)) IBM J9 VM (build 2.6, JRE 1.6.0 AIX ppc64-64 20111113_94967 (JIT enabled, AOT…
culy
  • 193
  • 1
  • 2
  • 8
8
votes
3 answers

Using ofstream on AIX

I am trying to write a simple C++ program on an AIX Box. The program is given below: # include # include using namespace std ; int main() { ofstream of ; of.open("license.txt") ; of<<"hello"<
Ricketyship
  • 644
  • 2
  • 7
  • 22
8
votes
2 answers

How to autocomplete at the KornShell command line with the vi editor

In the KornShell (ksh) on AIX UNIX Version 5.3 with the editor mode set to vi using: set -o vi What are the key-strokes at the shell command line to autocomplete a file or directory name?
David
  • 14,047
  • 24
  • 80
  • 101
8
votes
6 answers

Sed on AIX does not recognize -i flag

Does sed -i work on AIX? If not, how can I edit a file "in place" on AIX?
rajeev
  • 91
  • 1
  • 1
  • 2
8
votes
1 answer

sequentially executing background processes unix

I have two scripts say 'S1' and 'S2'. I execute these scripts as, nohup S1 & nohup S2 & But I would like them to execute sequentially. ie., S2 should execute only on successful completion of S1. How should I go about doing this?. How can I know…
wowrt
  • 737
  • 2
  • 8
  • 9
8
votes
1 answer

How to set the Kerberos default_ccache_name attribute on a client without using KRB5CCNAME?

According to the MIT Kerberos documentation, the default credential cache name is determined as follows: Default ccache name The default credential cache name is determined by the following, in descending order of priority: 1. The KRB5CCNAME…
Squirrel
  • 2,262
  • 2
  • 18
  • 29
8
votes
1 answer

how to pass each shell parameter in new line

I had a shell script that takes 3 parameters test.sh a b c I want to give each parameter in a new line some thing like this : test.sh a b c i am on AIX Thanks.
user2711819
  • 960
  • 3
  • 16
  • 29
8
votes
4 answers

Why this warning from IBM XL C/C++ compiler?

Here's a minimum code example that illustrates the problem: #include class Thing { // Non-copyable Thing(const Thing&); Thing& operator=(const Thing&); int n_; public: Thing(int n) : n_(n) {} int getValue() const {…
Fred Larson
  • 60,987
  • 18
  • 112
  • 174
8
votes
2 answers

Unable to connect to AIX(Unix) box with SSH.NET Library - Error : Value cannot be null

I am trying to connect to an AIX box and execute some commands using SSH.NET library. The following is the code snipplet KeyboardInteractiveAuthenticationMethod kauth = new…
BlackCursor
  • 1,492
  • 1
  • 17
  • 29
7
votes
2 answers

Handling null pointers on AIX with GCC C

We have a code written in C that sometimes doesn’t handle zero pointers very well. The code was originally written on Solaris and such pointers cause a segmentation fault. Not ideal but better than ploughing on. Our experience is that if you read…
justintime
  • 3,601
  • 4
  • 22
  • 37
7
votes
4 answers

Could not find TLS ALPN provider; no working netty-tcnative, Conscrypt, or Jetty NPN/ALPN available

What version of gRPC are you using? 1.13.1 I am using java 8 to build an executable jar. Below is the java version: $ /usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin/java -version openjdk version "1.8.0_171" OpenJDK Runtime Environment (build…
Ankit Shubham
  • 2,989
  • 2
  • 36
  • 61
7
votes
5 answers

Slow Dynamic GSP Reloading in Production on AIX

We are using Grails 2.2.4, WebSphere 8.0.0.5 all running on AIX 6.1.0.0. Websphere is using the IBM JDK: Java(TM) SE Runtime Environment (build pap6460_26sr3ifix-20121005_02(SR3+IV27268+IV27928+IV28217+IV25699)) IBM J9 VM (build 2.6, JRE 1.6.0 AIX…
Alex Beardsley
  • 20,988
  • 15
  • 52
  • 67
7
votes
1 answer

How to prevent ksh on Linux to overwrite a global variable by a local variable?

I am involved in the process of porting a system containing several ksh scripts from AIX 6.1 to SUSE-Linux. I have come across the following difference in the way ksh behaves on the two systems: # LocalVar.sh test_loc_var() { typeset -t var…
6
votes
2 answers

Java System.loadLibrary("m") fails on AIX 6.1

On AIX 6.1 ppc64, in order to load libm.a, our application uses the System.loadLibrary("m"). Or it fails with an error message the module has invalid magic number According to IBM documentation, this can happen when there is a mismatch between 32…
6
votes
8 answers

How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?

I am involved in the process of porting a system containing several hundreds of ksh scripts from AIX, Solaris and HPUX to Linux. I have come across the following difference in the way ksh behaves on the two systems: #!/bin/ksh flag=false echo "a\nb"…
Andrew Stein
  • 12,880
  • 5
  • 35
  • 43