Questions tagged [hp-ux]

HP-UX (Hewlett-Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on UNIX System V (initially System III) and first released in 1984.

HP-UX (Hewlett-Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on UNIX System V (initially System III) and first released in 1984.

Resources

368 questions
1
vote
1 answer

Shared Library Linker Path Search algorithm in HP-UX

What is the shared library linking path search algorithm for HP-UX (IPF-64Bit ) used while compiling with aCC ? I am trying to build a project but it looks like SHLIB_PATH environment variable is never used for library searching. I've to explicitly…
Cerberuz
  • 155
  • 2
  • 15
1
vote
0 answers

Does system properties have size limit?

I am using HP-Unix server. One of system property has a very long string as its value. We notice that the value of the system property gets corrupted. While the other system properties are in-tact. I am wondering, if there is any size limitation for…
Vinod Jayachandran
  • 3,726
  • 8
  • 51
  • 88
1
vote
2 answers

UNIX Sendmail Change Sender in Header

I need to change the "Received: (from pseudouser@localhost)" in the email header to "Received: (from pseudouser@company.com). My domain name has already been set in the sendmail.cf, and I've already set masquerade to "company.com." Any ideas on…
caw04005
  • 23
  • 1
  • 4
1
vote
1 answer

Why SIGALRM can't happen in thread on HPUX?

I found that on HPUX, a SIGALRM signal can be created by system and captured by process correctly in a single thread application. However, if I set SIGALRM in a thread, the SIGALRM will not happen anymore. Why? This issue only occurs on HPUX…
1
vote
1 answer

HP UX insert text to specific location

I have a text file in HPUX and I have to insert some xml at a specific location in the file, for example, I have to insert some text after this ...my text here in linux i have done this using 'sed'…
Techie
  • 25
  • 5
1
vote
0 answers

UNIX alternative for two functions in pstat on HPUX

We are moving a project from HP-UX to Redhar Linux. We have a problem with library pstat which only exists on HP-UX. We are looking for a replacement for two functions that call functions in pstat library. Function 1: look whether a command 'cmd'…
Arthur bauer
  • 633
  • 7
  • 11
1
vote
2 answers

Idle tcp file descriptor after failed connect on HPUX

I have a client tcp socket (in c++) that has a loop where it retries to open a socket and connect to a server at a certain interval until it succeeds. A bug in the program caused close not to be called on the file descriptor after a failed connect,…
user204884
  • 1,745
  • 2
  • 19
  • 27
1
vote
2 answers

Why does “git push” to HP-UX fail on SSH URLs with “Function is not available”?

Compare: Why does "git fetch" fail on HTTPS URLs with "Function is not available" on HP-UX? Environment: pushing from Linux client to HP-UX server I added export LD_PRELOAD=/usr/lib/libpthread.a git push to my .profile on the server using the other…
1
vote
0 answers

JMustanGo set-up

We maintained a working JMustanGo HPUX instance. However, we are migrating to HPUX 11i v3 VSE-OE and need to redeploy I don't seem to find any information on how to setup JMustanGo node. Can anyone provide some useful tips?
elderon
  • 11
  • 4
1
vote
4 answers

Can't launch sonar 2.8 (permission denied to execute wrapper )

I'm new to Sonar, and i was trying to install Sonar 2.8 on my server (Linux 64 on HP-UX) When i tried to launch it (sonar.sh start) i got the following message [myHomeDirectory]/sonar/2.8/bin/linux-x86-64/./wrapper: Execute permission denied. what…
mab
  • 176
  • 2
  • 13
1
vote
4 answers

SED or AWK command to print only lines that are between two set patterns

I need a command / script to get the CVS merge conflicts. Basically, I need a SED or AWK command to print only lines that are between the two set patterns Example: Pattern1="RCS file:" Pattern2="conflicts during merge" When I try a simple SED…
katewadi
  • 11
  • 1
  • 2
1
vote
1 answer

Get stack size of current thread in HP-UX 11

I'm trying to get stack size of current thread in my application running on HP-UX 11.31. On Linux I used pthread_getattr_np, on Solaris I can use thr_stksegment. Help me please find a way to know threads stack size please on C.
1
vote
2 answers

Unix HP-UX ksh recursive find and replace

I am trying to do a recursive find and replace in HP-UX and am missing something. What I have at the moment: find . -name "*.java" | xargs sed 's/foo/bar/g' know the problem is that it's not replacing the file inline. I believe on other OS's there…
RobM
  • 303
  • 1
  • 4
  • 14
1
vote
3 answers

Execute command ntpq -p using jsch

I am developing a JSP web application that will be used to monitor the system parameters of different HP-ux and Linux servers in my office. I am using jsch to execute commands on the remote systems. My problem is jsch is returnig null for commands…
varun
  • 341
  • 2
  • 17
1
vote
2 answers

rexec not found in HP UX

Simple program: #include #include #include #include #include int main(int argc, char **argv) { int ret = rexec((char**) 0, "", "", "", 0); return 0; } Compile: $ g++ -o…
chila
  • 2,372
  • 1
  • 16
  • 33