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.
1
vote
2answers
39 views
sed command that works for Solaris, Linux and HPUX
I need to change a directive in a config file and got it working in Linux but in Solaris, it says command garbled.
Here is the directive
enable-cache passwd yes
I need to ...
0
votes
3answers
50 views
Socket doesn't receive complete data on HPUX
I really don't understand what is going wrong here, so I hope somebody may spot something I missed.
I'm writing a user daemon which is accepting a client that I develop in java. For now this client ...
0
votes
1answer
52 views
Creating my own implementation of DBI::Iterator in perl
UPDATE:
Right now I am trying to take in to an array around 120M of rows. Reason I'm not doing this over UTL_file is because in our production server it requires oracle user access to write and move ...
0
votes
0answers
32 views
PCC-F-02044, CMD-LINE: Illegal or out of range value for option: +W829,890
I am trying to compile an old C/pro*C application on HPUX comipler aCC ( HP C/aC++ B3910B A.06.26 [Apr 12 2011]).
I am getting the below error during the compilation,it seems related to some pro*C ...
0
votes
0answers
44 views
sh (shell), SEGV_MAPERR, Segmentation Fault [closed]
We have a strange situation with the core dumps.
'sh' (Shell) generates a core dump with the following information (when seen with gdb).
Core was generated by `sh'.
Program terminated with signal 11, ...
0
votes
0answers
33 views
flex on HP-UX 64-bit fails
System is HP-UX 11.31:
HP-UX XXX B.11.31 U ia64 2121756102 unlimited-user license
flex is built from source,
jbaltz@xxx[~]>flex -V
flex 2.5.37
Trying to build gSOAP, I consistently get this ...
0
votes
0answers
60 views
pro*C keyword “Execute” not recognized
I am using HP-UX aCC compiler [HP C/aC++ B3910B A.06.26] to compile an old C/Pro*C application (already compiled with an older version of aCC compiler).
The compilation is always failing with the ...
-2
votes
2answers
63 views
how to find the difference b/w to dates stored in a variable in shell script ( KSH shell )
In hp-ux as there is no GNU date available, i.e the -d and -s options of the date command are not available. How do I find the difference between two given dates in days (as we do in Solaris or bash ...
0
votes
0answers
25 views
hp-ux 11.31 fork() inside a long running porcess fails with 11 resource temporarily unavailable
One of my long running process fails to fork new process and sets errno 11. If I restart the process, it is working for some time handling forks() for 1 to 2 hours and again fails with same error.
OS ...
0
votes
1answer
61 views
extern “C” error #2040: expected an identifier
I still struggling to compile a C console application, the compiling procedure still failing with the error below:
"Main.c", line 51: error #2040: expected an identifier
extern "C" void ...
0
votes
2answers
72 views
identifier “snprintf” is undefined
I am trying to compile a console C application on HP-UX machine using the aCC compiler [HP C/aC++ B3910B A.06.26].The compilation always failing with the below error :
******"Common/Common.c", line ...
0
votes
0answers
47 views
ld: Mismatched ABI (not an ELF file) cannot compile
i have simple C hello world program and i wanted to compile it on HP-UX ia64 11.31,but i get the following error
/* Hello World program */
#include<stdio.h>
main()
{
printf("Hello ...
0
votes
1answer
38 views
Why does “git fetch” fail on HTTPS URLs with “Function is not available” on HP-UX?
When I run git fetch I get the following:
$ git fetch
Password for 'xxx':
error: cannot create thread: Function is not available
fatal: cannot start thread to parse advertised refs
$
0
votes
0answers
32 views
Python build error on HPUX
I am trying to build both Python 2.7.4 and Python 3.3.1 on HPUX 11.31 Itanium with gcc 4.7.0. For both projects, I am getting the same build error:
make
...
running build scripts
...
/bin/sh[5]: ...
1
vote
0answers
46 views
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 ...
0
votes
2answers
72 views
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
...
0
votes
1answer
53 views
[unixODBC][Driver Manager]Invalid cursor state on HP -UX
I am using open source ODBC driver manager with our driver and i am getting this error
24000(0)[unixODBC][Driver Manager]Invalid cursor state
I tried to debug in my driver but no help there.
Please ...
1
vote
1answer
48 views
How to make find return the target of a symbolic link in hpux?
I want to execute the find command but I want it to return the target instead of the symbolic link itselft.
Is that possible to do in HP-UX?
For example, with:
security -> ...
0
votes
4answers
243 views
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:"
...
0
votes
1answer
36 views
Common Issue: Table to be displayed in mail content and not as an attachment
The requirement is to send a report from an UNIX server. I have a list of data to be shown on the report, let's say from database. I am using sendexchange to send mail. It always sends in plain text ...
0
votes
0answers
75 views
How to detect moving file event without inotify
I'm coding a log monitoring application and need to detect the log rotation event without inotify by C. It works similar to "tail -f" with polling architecture.
If the log file was rotated, I want to ...
0
votes
0answers
25 views
HPUX Not allowed to create logical volumes larger than 2TB
I have 40TB logical volume on HPUX but even after I installed the patch(PHCO_37939) as suggested in this link ...
0
votes
1answer
106 views
Shell Script to for remote copy and then processing the file
The below script works fine. But when I try to add a command to remote copy and then assign the variable FILENAME with the file received from the remote copy, the while loop doesn't work. I am quite ...
5
votes
2answers
190 views
RSA_generate_key() using prngd instead of /dev/random or /dev/urandom
I want to use RSA_generate_key() on HP-UX 11.11. But hp-ux 11.11 does not provide /dev/random or /dev/urandom, so I need to use openssl prngd.
Please let me know how to use it by default in C code. I ...
2
votes
1answer
116 views
Cannot execute SELECT MAX(ORA_ROWSCN) from Embedded SQL
Environment : HP-UX 11.x C++ (ProC & aCC compiler) Oracle 10g )
I am unable to execute the following command from my C++ Embedded SQL code
EXEC SQL SELECT MAX(ORA_ROWSCN) INTO :scn_timestamp
...
0
votes
0answers
148 views
gSoap client error with thread in HP-UX
I was doing some tests with a multithreaded client written in C with gSoap. The idea was to test the concurrent capabilities of our web service. In this C client, at some point, I launched one thread ...
0
votes
1answer
63 views
Eval (java) not working when path contains escaped whitespaces in HP-UX
I have a simple script as follows:
#!/bin/ksh
JAVA_SRC="/home/myuser/Setup\ Files/jre/bin/java"
eval $JAVA_SRC
When I run this on HP-UX, I get this error:
$ spacetest.sh
...
0
votes
2answers
116 views
Compilation error in C: Inconsistent type declaration/Illegal redeclaration for identifier
I am getting the following error while compiling my source code:
Compiling lib/netapi/joindomain.c
cc: "include/smb_ldap.h", line 33: error 1584: Inconsistent type declaration: "ber_tag_t".
cc: ...
0
votes
1answer
133 views
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 ...
0
votes
2answers
300 views
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 ...
2
votes
1answer
114 views
What are the incompatibilities for ESQL/C programs while migrating from HP-UX to Red Hat Linux?
I am migrating a project and we need to migrate ESQL/C source files from HP-UX to Red Hat Linux.
What may be the incompatibilities while moving these ESQL/C files to Linux?
0
votes
1answer
77 views
postgresql on HP NonStop system
I want to install postgres on HP NonStop J series server.
Can someone who is having experience on similar configuration help me out?
I did not found any postgres libraries/installation ...
0
votes
0answers
21 views
system time drifted on HP JVM of HP-UX
I asked a question on serverfault.com, but it was closed because "it was unlikely to help any future visitors". Now my question is, is there any one setting up HP JVM on HP-UX? Do you have any problem ...
0
votes
2answers
179 views
Execute comand 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. ...
0
votes
0answers
55 views
adb: error: Invalid core file; version mismatch?
I am new to adb use and want to analyze a application core dump file generated on HP-UX 11.23 ia64 server.
I tried using adb following way:
bash-2.05$ adb install_core.smd
adb: error: Invalid core ...
0
votes
0answers
109 views
How to detect FILE descriptor leak on HP-UX
Recently I realized my application causes file descriptor leak in one exception flow. I checked the exception flow and I couldn't find anything missed like closing DB connection (pro*c connection) ...
1
vote
2answers
65 views
rexec not found in HP UX
Simple program:
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <netdb.h>
int main(int argc, char **argv)
{
...
0
votes
3answers
197 views
max file handles that can be opened in perl
I am working on a perl script that opens a huge file and which has the records in the below format. Script might run in Solaris 10 or HP UX 11.0
Filename1 , col1, col2
Filename1 , col1, col2
...
1
vote
2answers
168 views
How to reset the user password in RedHat Directory server using Java code via LDAPS?
How can I access the RedHat directory server / HP UX Directory server using LDAPS from my Java application? I am trying to access it through LDAP it's working fine but while using LDAPS it doesn't ...
2
votes
3answers
254 views
Unlock a user object in HPUX LDAP Directory Server
I am accessing the HP UX directory server through my java code, for reset & unlock a locked out user account in the Directory server.
Here is my code for user account password reset.
...
2
votes
1answer
429 views
HP-UX - Read text file in tar archive without extract it
I have a TAR archive that contains several text files. I would like to write a script to display (stdout) the content of a file without extract it in the current directory.
Actually I would like to ...
1
vote
1answer
63 views
Purify: Error: Ran out of thread local data space in purify
I am running purify 7.0 on Hp-UX 11.11B with aCC 3.85.I set the environt variable as below:
export PURIFYOPTIONS="-max_threads=4000 -enable-thread-stack-change=yes"
But still I am getting the below ...
0
votes
1answer
309 views
What do these HP-UX PA-RISC aCC compiler options mean?
I'm checking a 7 years old C/C++ system's Makefile. It was compiled by HP aCC, and it's running on HP-UX PA-RISC. I found many cflags descriptions here: ...
3
votes
2answers
1k views
vi : Line too long
When I use vi to analyize log files, it somtimes stucks with the error: 'Line too long'. I can watch the file using more but that's not what I want.
The command view leads to the same result and less ...
0
votes
0answers
31 views
Shared libraries on HP-RISC
I have few libraries (SOM) compiled on HP-RISC server which were working fine . However all of a sudden I started getting core dump and it points to code located in shared library.
Now problem here ...
0
votes
1answer
119 views
cc: error: cannot open message catalog: ecc.cat
I have a test script which is internally calling make to compile a sample C programme.
But for some unknown reasons, the compilation is not going through. It is throwing below error:
08-27 ...
0
votes
0answers
41 views
Profiling build process on HPUX
I'm trying to port an application to HPUX, and while I have managed to get the application compiling and running successfully, the build time on HPUX is incredibly slow compared to all other platforms ...
1
vote
2answers
264 views
How to set Java program memory limit on HP-UX (-Xmx doesn't work!)?
In our scenario, we launch 20+ java processes to deal with our business, we find each process eats 500M+ memory, so we consumed several G memory on the server in total, the customer complains their ...
1
vote
1answer
66 views
Wrapper link options for HPUX Itanium
With PA-RISC version linker provides the +afs flag to alias function symbols and GCC provides the -wrap option.
I am looking for a similar wrapper hook methodology to for HPUX 11iv3 Itanium. Any ...
1
vote
1answer
486 views
subtract time from current date [ bash - HP-UX ]
I would like to know how to subtract X minutes from the current system date.
I do know how to subtract hours, but I need a more flexible solution.
NEWDATE=`TZ=GMT-1 date +%y%m%d%H%M.%S`
echo ...
