Sponsored Content
Full Discussion: AIX server patching
Operating Systems AIX AIX server patching Post 302967542 by JAR1 on Wednesday 24th of February 2016 06:12:39 PM
Old 02-24-2016
Do you even have a support contract with IBM? Do you have the ability to download the various TL's/SP's?
 

10 More Discussions You Might Find Interesting

1. AIX

gkrellmd server on AIX

I've been googling for quite some time now, and I can't seem to find any reference to a port of gkrellmd for AIX. Does anyone out there know of where I can grab a copy, if indeed one exists? (0 Replies)
Discussion started by: willwork4foo
0 Replies

2. AIX

X server on AIX 5.2

Hello, is it possible to connect to AIX with cygwin/X? I have the AIX CDE 1.0 installed but am unable to connect to the CDE from my windows machine via cygwin. I have a Red Hat server that I can connect to and get the GNOME desktop from cygwin. Is there a certain process or subsystem that needs... (2 Replies)
Discussion started by: zuessh
2 Replies

3. AIX

X Server on AIX

Hello, I am new to AIX. I am trying to upgrade one of our Oracle database and the Oracle Universal Installer requires X. All I have on my PC is Putty. Does Putty suppport X? When I log into the AIX server I set the display as follows: setenv DISPLAY 10.15.197.157:0.0 10.15.197.157 is... (4 Replies)
Discussion started by: dkranes
4 Replies

4. AIX

AIX 6.1 SMTP Server ?

Hello, Looking for Document how to install / configure SMTP Server on AIX 6.1 is it through smitty menu ? (3 Replies)
Discussion started by: filosophizer
3 Replies

5. AIX

Patching AIX - best practice? how to? anything?

Hi everyone, Can anyone explain the best practice for keeping an AIX environment up to date? I have 12 AIX LPARs and a whole slew of vulnerabilities. These vulnerabilities vary from OS issues to WebSphere/MQ issues and more. I went through all of them and created a list of APARs I need to apply... (3 Replies)
Discussion started by: need2bageek
3 Replies

6. AIX

Transferring files from one AIX server to another AIX server in binary mode

Hi, I am a newbie to AIX. We have 2 AIX5.3 servers in our environment, I need to transfer some files in Binary mode from one server to another and some files in ASCII mode from one server to another server. Could you please help me as to how I need to do that? Thanks, Rakesh (4 Replies)
Discussion started by: rakeshc.apps
4 Replies

7. AIX

AIX Server

Hello Everyone, I am looking for material or videos on how to build an AIX server from scratch i.e from starting. If anybody has it please let me know. I want to learn building aix servers. Thanks, sameer (2 Replies)
Discussion started by: sameer_224
2 Replies

8. Shell Programming and Scripting

Send email from sendmail on AIX using exchange server as SMTP server

i am new in AIX i am trying to write a script to take a backup for specific files on server to and check error log if backup success send email to administrator , script done except for sending mail , i try to configure sendmail on aix to use our exchange server to send emails but still get error... (0 Replies)
Discussion started by: ahmed_salah
0 Replies

9. AIX

Will it affect my AIX LPAR security, when i set up email alerts on AIX server.

Hello, I've set up email alerts on AIX Servers. so that i can get email notifications (via mail relay server) when ever there is abnormal behavior. for example 1) my script monitors CPU/disk/memory etc... when it reaches high water ark, it will send an email alert. 2) disk usage alerts 3)... (5 Replies)
Discussion started by: System Admin 77
5 Replies

10. AIX

How to ssh from an AIX OS server to a Fabric OS server without password?

Hi I'd like to ssh from an AIX OS server ( v5.3) to a Fabric OS server ( v6.1.2 ) without password. I tried using dsa or rsa keys but it didn't work, the aix server still asked for the password. Somebody help, please :(:(:( (8 Replies)
Discussion started by: bobochacha29
8 Replies
ct_ctl_adopt(3CONTRACT) 												   ct_ctl_adopt(3CONTRACT)

NAME
ct_ctl_adopt, ct_ctl_abandon, ct_ctl_newct, ct_ctl_ack, ct_ctl_qack - common contract control functions SYNOPSIS
cc [ flag... ] file... -D_LARGEFILE64_SOURCE -lcontract [ library... ] #include <libcontract.h> int ct_ctl_adopt(int fd); int ct_ctl_abandon(int fd); int ct_ctl_newct(int fd, uint64_t evid); int ct_ctl_ack(int fd, uint64_t evid); int ct_ctl_qack(int fd, uint64_t evid, int templatefd); These functions operate on contract control file descriptors obtained from the contract(4) file system. The ct_ctl_adopt() function adopts the contract referenced by the file descriptor fd. After a successful call to ct_ctl_adopt(), the con- tract is owned by the calling process and any events in that contract's event queue are appended to the process's bundle of the appropriate type. The ct_ctl_abandon() function abandons the contract referenced by the file descriptor fd. After a successful call to ct_ctl_abandon() the process no longer owns the contract, any events sent by that contract are automatically removed from the process's bundle, and any critical events on the contract's event queue are automatically acknowledged. Depending on its type and terms, the contract will either be orphaned or destroyed. The ct_ctl_ack() function acknowledges the critical event specified byevid. If the event corresponds to an exit negotiation, ct_ctl_ack() also indicates that the caller is prepared for the system to proceed with the referenced reconfiguration. The ct_ctl_qack() function requests a new quantum of time for the negotiation specified by the event ID evid. The ct_ctl_newct() function instructs the contract specified by the file descriptor fd that when the current exit negotiation completes, another contract with the terms provided by the template specified by templatefd should be automatically written. Upon successful completion, ct_ctl_adopt(), ct_ctl_abandon(), ct_ctl_newct(), ct_ctl_ack(), and ct_ctl_qack() return 0. Otherwise, they return a non-zero error value. The ct_ctl_adopt() function will fail if: EBUSY The contract is in the owned state. EINVAL The contract was not inherited by the caller's process contract or was created by a process in a different zone. The ct_ctl_abandon(), ct_ctl_newct(), ct_ctl_ack(), and ct_ctl_qack() functions will fail if: EBUSY The contract does not belong to the calling process. The ct_ctl_newct() and ct_ctl_qack() functions will fail if: ESRCH The event ID specified by evid does not correspond to an unacknowledged negotiation event. The ct_ctl_newct() function will fail if: EINVAL The file descriptor specified by fd was not a valid template file descriptor. The ct_ctl_ack() function will fail if: ESRCH The event ID specified by evid does not correspond to an unacknowledged critical event. The ct_ctl_qack() function will fail if: ERANGE The maximum amount of time has been requested. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ libcontract(3LIB), contract(4), attributes(5), lfcompile(5) 22 Aug 2005 ct_ctl_adopt(3CONTRACT)
All times are GMT -4. The time now is 01:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy