aix

'Estamos exaustos': escala 6x1 e baixos salários turbinam insatisfação mesmo com taxa recorde de emprego

Geração de emprego atinge patamar recorde, mas esconde problemas como altos índices de informalidade, subutilização da força de trabalho e jornadas exaustivas




aix

Tips to install Oracle 11gr2 RAC on AIX (6.1/7.1)

AIX is like an Unix environment awesome original, same to HP-Unix, and, if you have a plan to install Oracle RAC, you need to pay attention. I note some tips in this article to help.

1. Checking Operating System Packages

# lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.libperfstat 
bos.perf.perfstat bos.perf.proctools rsct.basic.rte rsct.compat.clients.rte 
xlC.aix61.rte

If not, install on AIX source by smity. It's easy, but remember, some packaged requires your IBM's account to download.

2. Verify UDP and TCP Kernel Parameters

# /usr/sbin/no -a | fgrep ephemeral

If you expect your workload to require a high number of ephemeral ports, then update
the UDP and TCP ephemeral port range to a broader range. For example:

# /usr/sbin/no -p -o tcp_ephemeral_low=9000 -o tcp_ephemeral_high=65500
# /usr/sbin/no -p -o udp_ephemeral_low=9000 -o udp_ephemeral_high=65500

3. Checking Resource Limits:
To ensure that these resource limits are honored, confirm that the line login
session required /usr/lib/security/pam_aix is set in /etc/pam.conf.For example:

dtsession auth required /usr/lib/security/pam_aix
dtlogin session required /usr/lib/security/pam_aix
ftp session required /usr/lib/security/pam_aix
imap session required /usr/lib/security/pam_aix
login session required /usr/lib/security/pam_aix
rexec session required /usr/lib/security/pam_aix
rlogin session required /usr/lib/security/pam_aix
rsh session required /usr/lib/security/pam_aix
snapp session required /usr/lib/security/pam_aix
su session required /usr/lib/security/pam_aix
swrole session required /usr/lib/security/pam_aix
telnet session required /usr/lib/security/pam_aix
xdm session required /usr/lib/security/pam_aix
OTHER session required /usr/lib/security/pam_prohibit
websm_rlogin session required /usr/lib/security/pam_aix
websm_su session required /usr/lib/security/pam_aix
wbem session required /usr/lib/security/pam_aix

4. Tuning AIX System Environment
Confirm the aio_maxreqs value using the procedure for your release:
AIX 6.1 and 7.1:

# ioo -o aio_maxreqs
aio_maxreqs = 65536

The aio is Asynchronous Input Output is an exciting parameter, I tried to control and modified it many times, but it's strongly to do from Oracle advices,

Quote:

Adjust the initial value of aio_maxservers to 10 times the number of logical disks divided by the number of CPUs that are to be used concurrently but no more than 80

Oracle document refer: https://docs.oracle.com/database/121/AXDBI/app_manual.htm#AXDBI7880

5. Tuning Virtual Memory Manager

vmo -p -o minperm%=3
vmo -p -o maxperm%=90
vmo -p -o maxclient%=90
vmo -p -o lru_file_repage=0
vmo -p -o strict_maxclient=1
vmo -p -o strict_maxperm=0

Note: You must restart the system for these changes to take effect

6. Increase System block size allocation

# /usr/sbin/chdev -l sys0 -a ncargs='128'

7. Configure SSH LoginGraceTime Parameter
On AIX systems, the OpenSSH parameter LoginGraceTime by default is commented
out, and the default behavior of OpenSSH on AIX can sometimes result in timeout
errors. To avoid these errors, complete the following procedure:
7.1. Log in as root.
7.2. Using a text editor, open the OpenSSH configuration file /etc/ssh/sshd_config.
7.3. Locate the comment line #LoginGraceTime 2m.
7.4. Uncomment the line, and change the value to 0 (unlimited). For example:
LoginGraceTime 0
7.5. Save /etc/ssh/sshd_config.
7.6. Restart SSH.

8. Setting priviledge to Oracle ASM Luns
Same to Solaris, HP-Unix. Remember, when you've got failure of ASM configuration, you need to flush out the disk's slice/partition by OS command "dd". And the slice/partition/LUN allocated from storage to IBM, has got different first alphabet to other platform. The alphabet begins by "r", example:

7.1 ORC and Voting disk
# chown grid:asmadmin /dev/rhdisk5 -> OCR
# chmod 660 /dev/rhdisk5 
# chown grid:asmadmin /dev/rhdisk6 -> Voting Disk
# chmod 660 /dev/rhdisk6
7.2 Datafile, Archivelog and Backup 
# chown grid:asmadmin /dev/rhdisk2
# chmod 660 /dev/rhdisk2
# chown grid:asmadmin /dev/rhdisk3
# chmod 660 /dev/rhdisk3
# chown grid:asmadmin /dev/rhdisk4
# chmod 660 /dev/rhdisk4
# chown grid:asmadmin /dev/rhdisk9
# chmod 660 /dev/rhdisk9
# chown grid:asmadmin /dev/rhdisk10
# chmod 660 /dev/rhdisk10

9. Enable simultaneous access to a disk device from multiple nodes
To enable simultaneous access to a disk device from multiple nodes, you must set the appropriate Object Data Manager (ODM) attribute, depending on the type of reserve attribute used by your disks. The following section describes how to perform this task using hdisk logical names

8.1. determine the reserve setting your disks use, enter the following command,where n is the hdisk device number

# lsattr -E -l hdiskn | grep reserve_

The response is either a reserve_lock setting, or a reserve_policy setting. If the attribute is reserve_lock, then ensure that the setting is reserve_lock = no. If the attribute is reserve_policy, then ensure that the setting is reserve_policy = no_reserve.

8.2. If necessary, change the setting with the chdev command using the following syntax, where n is the hdisk device number:

chdev -l hdiskn -a [ reserve_lock=no | reserve_policy=no_reserve ]

For example:
# chdev -l hdisk5 -a reserve_lock=no
# chdev -l hdisk5 -a reserve_policy=no_reserve

8.3. Enter commands similar to the following on any node to clear the PVID from each disk device that you want to use:

# /usr/sbin/chdev -l hdiskn -a pv=clear

When you are installing Oracle Clusterware, you must enter the paths to the appropriate device files when prompted for the path of the OCR and Oracle Clusterware voting disk. For example: /dev/rhdisk10

9.Configure Shell Limits
9.1. Add the following lines to the /etc/security/limits file:

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

9.2.Enter the following command to list the current setting for the maximum number of process allowed by the Oracle software user:

/usr/sbin/lsattr -E -l sys0 -a maxuproc

If necessary, change the maxuproc setting using the following command:

/usr/sbin/chdev -l sys0 -a maxuproc=16384

10. Configure User Process Parameters (Verify that the maximum number of processes allowed for each user is set to 2048 or greater)
Enter the following command:

# smit chgsys

Verify that the value shown for Maximum number of PROCESSES allowed for each user is greater than or equal to 2048. If necessary, edit the existing value.
When you have finished making changes, press Enter, then Esc+0 (Exit) to exit.

11. Configure Network Tuning Parameters:
To check the current values of the network tuning parameters:

# no -a | more

If the system is running in compatibility mode, then follow these steps to change the parameter values:

Enter commands similar to the following to change the value of each parameter:

# no -o parameter_name=value

For example:

# no -o udp_recvspace=655360

Add entries similar to the following to the /etc/rc.net file for each parameter that you changed in the previous step:

if [ -f /usr/sbin/no ] ; then
/usr/sbin/no -o udp_sendspace=65536
/usr/sbin/no -o udp_recvspace=655360
/usr/sbin/no -o tcp_sendspace=65536
/usr/sbin/no -o tcp_recvspace=65536
/usr/sbin/no -o rfc1323=1
/usr/sbin/no -o sb_max=4194304
/usr/sbin/no -o ipqmaxlen=512
fi

For the ISNO parameter tcp_sendspace, use the following command to set it:

# ifconfig en0 tcp_sendspace 65536

By adding these lines to the /etc/rc.net file, the values persist when the system restarts.

12. Automatic SSH configuration
By default, OUI searches for SSH public keys in the directory /usr/local/etc/, and ssh-keygen binaries in /usr/local/bin. However, on AIX, SSH public keys typically are located in the path /etc/ssh, and ssh-keygen binaries are located in the path /usr/bin. To ensure that OUI can set up SSH, use the following command to create soft links:

# ln -s /etc/ssh /usr/local/etc
# ln -s /usr/bin /usr/local/bin

In rare cases, Oracle Clusterware installation may fail during the "AttachHome" operation when the remote node closes the SSH connection. To avoid this problem, set the following parameter in the SSH daemon configuration file /etc/ssh/sshd_config on all cluster nodes to set the timeout wait to unlimited:

LoginGraceTime 0

13. Shell Limit
Adding these line in /etc/security/limits

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

14. Create groups and users

# mkgroup -'A' id='1000' adms='root' oinstall
# mkgroup -'A' id='1031' adms='root' dba
# mkgroup -'A' id='1032' adms='root' oper
# mkgroup -'A' id='1020' adms='root' asmadmin
# mkgroup -'A' id='1022' adms='root' asmoper
# mkgroup -'A' id='1021' adms='root' asmdba
# mkuser id='1100' pgrp='oinstall' groups='dba,asmadmin,asmoper,asmdba' home='/portalgrid/grid' grid
# mkuser id='1101' pgrp='oinstall' groups='dba,oper,asmdba' home='/portaloracle/oracle' oracle

# mkdir -p /portalapp/app/11.2.0/grid
# mkdir -p /portalapp/app/grid
# mkdir -p /portalapp/app/oracle

# chown grid:oinstall /portalapp/app/11.2.0/grid <- GRID_HOME
# chown grid:oinstall /portalapp/app/grid <- GRID_BASE (ORACLE_BASE for Grid user)
# chown -R grid:oinstall /portalapp
# chown oracle:oinstall /portalapp/app/oracle
# chmod -R 775 /portalapp/

15. Setting the profile
15.1. Grid Profile

export TEMP=/tmp
export TMP=/tmp
export TMPDIR=/tmp
umask 022

export ORACLE_HOSTNAME=portal1
export ORACLE_BASE=/portalapp/app/grid
export ORACLE_HOME=/portalapp/app/11.2.0/grid
export GRID_HOME=/portalapp/app/11.2.0/grid
export CRS_HOME=/portalapp/app/11.2.0/grid
export ORACLE_SID=+ASM1

export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib

16. Prevent Xserver does not display correct term

# startsrc -x

17. Create the following softlink needed for some Oracle utilites

# ln -s /usr/sbin/lsattr /etc/lsattr

To check existing capabilities, enter the following command as root; in this example,
the Grid installation user account is grid:

# /usr/bin/lsuser -a capabilities grid

To add capabilities, enter a command similar to the following:

# /usr/bin/chuser capabilities=CAP_NUMA_ATTACH,CAP_BYPASS_RAC_VMM,CAP_PROPAGATE grid

18. Remember to run the Installation fixup scripts

$ ./runcluvfy.sh stage -pre crsinst -n node -fixup -verbose

With Oracle Clusterware 11g release 2, Oracle Universal Installer (OUI) detects when the minimum requirements for an installation are not met, and creates shell scripts,
called fixup scripts, to finish incomplete system configuration steps. If OUI detects an incomplete task, then it generates fixup scripts (runfixup.sh). You can run the fixup script after you click the Fix and Check Again Button.

19. In the installation progressing, when root.sh at node 2, can the error such as "CRS appear in node 1, did not attemp to stop cluster, re-join cluster, by pass and continue installation.
- If Xterm did not occur, then do: $ export ORACLE_TERM=dtterm
- Manually export ORACLE_BASE, ORACLE_HOME when make an installation before running runInstaller.sh
- If /tmp is too small <500MB, then make a private directory point to other directory, change owner to grid, oracle user, example:

A. Grid

# cd /portallog
# mkdir /portallog/tmp
# chown -R grid:oinstall /portallog/tmp

B. Oracle

# cd /portal
# mkdir tmp
# chown -R oracle:dba /portal/tmp 

C. Export

# export TMP=/portallog/tmp
# export TEMPDIR=/portallog/tmp
# export TMPDIR=/portallog/tmp

Hope this help.
End.
TAT




aix

No Comment : manifestation pour la paix à la COP 29

No Comment : manifestation pour la paix à la COP 29




aix

Marquis Who's Who Honors Ivo Caixeiro for Excellence in the Furniture Industry

Ivo Caixeiro serves as the executive vice president of the Living Style – Fung Group Company




aix

Van Aert sella su triplete en la Vuelta tras culminar una fuga de 130 kilómetros por las Rías Baixas

El belga se anota, en Baiona, su tercera victoria en una vibrante etapa desaprovechada por los rivales de Ben O'Connor Leer




aix

La vaga de lloguers, una eina sense encaix legal que alguns experts veuen viable com a litigi contra fons d’inversió

“O s’abaixen els preus, o vaga de lloguers”. Aquesta és la consigna que han llançat les organitzacions en defensa de l’habitatge en els últims mesos. via Pocket




aix

Un citoyen souverain qui se présente comme un «gentilhomme de la paix» encore coupable d’entrave

Amoury Lapointe a résisté à son arrestation lors d’une intervention de routine à laquelle il refusait de se soumettre dans son «véhicule diplomatique»




aix

Boonen wins Paris-Roubaix classic

Belgian Tom Boonen becomes only the second rider to win the Paris-Roubaix classic for the fourth time.




aix

Nauatokaixtomilistli ika kaxtiltekatlajtolli huaxtekatl uan ika huaxtekatlajtolli kaxtilan = Vocabulario nauatl-español, y español-nauatl de la Huasteca / Julio Miranda San Román, Marcos de la Cruz Reyes, Filogonio Cifuentes Ruiz, Eustaquio

Pátzcuarao, Michoacán : Programa de Etnolingüística : SEP : CIESAS : INI, 1981.




aix

After AIX Connect merger, Air India Express sets sights on capacity and market share growth

The merger enhances operational synergies and marks a step forward in the parent company’s ambitious Vihaan transformation initiative




aix

Aix-Marseille at the crossroads: Overcoming fragmentation for a stronger metropolitan area

The metropolitan region of Aix-Marseille in the south of France needs to tackle its fragmentated governance if it is to return to more inclusive and sustainable economic growth, according to a new OECD report.




aix

Performance improvement using IBM AIX flash cache

This article demonstrates how performance with IBM AIX flash can drastically improve read requests from a storage subsystem by running performance benchmark tests. The test team experimented using different performance benchmarks and measured the performance data to demonstrate the variation with and without AIX flash cache.




aix

IPsec tunnel configuration between IBM AIX and Microsoft Windows, Part 1: Generating certificates in AIX and importing certificates to Windows for IKE IPsec tunnels

Your article abstract goes here. Put the main points and key phrases at the beginning of the abstract, because it will be truncated in search results. Make your abstract enticing yet succinct. Aim for three to five sentences that express why the reader would care about the content (motive) and what he or she can gain from reading the content (benefits).




aix

IPsec tunnel configuration between IBM AIX and Microsoft Windows, Part 2: IKEv1 IPsec tunnels between AIX 6.1 or later versions and Windows 2012

Your article abstract goes here. Put the main points and key phrases at the beginning of the abstract, because it will be truncated in search results. Make your abstract enticing yet succinct. Aim for three to five sentences that express why the reader would care about the content (motive) and what he or she can gain from reading the content (benefits).




aix

IPsec tunnel configuration between IBM AIX and Microsoft Windows, Part 3: IKEv2 IPsec tunnels between AIX 6.1 or later versions and Windows 2012

Your article abstract goes here. Put the main points and key phrases at the beginning of the abstract, because it will be truncated in search results. Make your abstract enticing yet succinct. Aim for three to five sentences that express why the reader would care about the content (motive) and what he or she can gain from reading the content (benefits).




aix

Achieving high performance on IBM AIX using Coherent Accelerator Processor Interface (CAPI)

This article describes the Coherent Accelerator Processor Interface (CAPI) Flash support on IBM AIX. CAPI technology has been used on AIX to accelerate I/O operations to IBM Flash storage. AIX CAPI Flash driver stack has been optimized into a monolithic driver model which further reduced the I/O code path length. CAPI Flash technology provides a superior performance advantage in terms of IOPS per processor when compared to the traditional Fibre Channel I/O. We also describe at a high level how a user can use CAPI-based flash devices on AIX.




aix

Bank of Montreal, CaixaBank, Commerzbank, Erste Group, IBM and UBS Collaborate to Advance an Open, Blockchain-based Trade Finance Platform

Bank of Montreal (BMO), CaixaBank, Commerzbank and Erste Group have joined an initiative launched by UBS and IBM in 2016 to build a new global trade platform based on blockchain technology. This new platform, called Batavia, is built to be openly accessed by organisations of all sizes anywhere in the world, and can support trade finance for transactions across all modes of trade, whether goods are being transported by air, land or sea.



  • Banking and Financial Services

aix

Carregador de caixão dançarino de Gana celebra memes, mas lamenta pandemia: 'Derrubou meu negócio'

Repórter da BBC volta a entrevistar líder de grupo após vídeo que virou meme.




aix

CBD News: Déclaration de M. Ahmed Djoghlaf, secrétaire exécutif de la Convention sur la diversité biologique, sur le thème de l'environnement, la paix et la sécurité mondiale, Alger, Algérie, Juillet, 2009.




aix

Difficile transition vers la démocratie et la paix au Congo




aix

Espoir de paix durable au Burundi, si les derniers rebelles hutus y sont intégrés




aix

Afrique centrale : la corruption - l'obstacle majeur à la consolidation de la paix

La rechute est le risque majeur des pays post-conflit et l'une des principales raisons de cette rechute s'appelle la corruption.




aix

Danger de rechute au Burundi : question foncière et consolidation de la paix

Le Burundi est l’un des pays les plus pauvres (le taux de pauvreté atteint 67 %) et les plus petits d’Afrique (27 834 kilomètres carrés) avec l’une des plus grandes densités humaines du continent (près de 400 habitants par kilomètre carré). C’est du reste un pays profondément rural où seulement 11 % de la population réside en ville. Alors que l’accès à la terre et à la propriété est un véritable enjeu socio-économique, le Burundi fait face à de sérieux problèmes agricoles.




aix

IBM AIX HACMP Privlege Escalation

IBM AIX High Availability Cluster Multiprocessing (HACMP) suffers from a local privilege escalation vulnerability that results in root privileges.




aix

AIX 6.1 / 7.1 / 7.2.0.2 lsmcode Local Root

AIX versions 6.1, 7.1, and 7.2.0.2 lsmcode local root exploit.




aix

AIX 5.3 / 6.1 / 7.1 / 7.2 lquerylv Local Root

This exploit takes advantage of known issues with debugging functions within the AIX linker library. It takes advantage of known functionality, and focuses on badly coded SUID binaries which do not adhere to proper security checks prior to seteuid/open/writes.




aix

IBM AIX 6.1 / 7.1 / 7.2 Bellmail Privilege Escalation

IBM AIX versions 6.1, 7.1, and 7.2 suffer from a Bellmail privilege escalation vulnerability.




aix

Bull / IBM AIX Clusterwatch / Watchware File Write / Command Injection

Bull / IBM AIX Clusterwatch / Watchware suffers from having trivial admin credentials, system file writes, and OS command injection vulnerabilities.




aix

Xorg X11 Server (AIX) Local Privilege Escalation

Xorg X11 server on AIX local privilege escalation exploit.




aix

América Latina: enfrentando o duplo desafio da desigualdade e baixa produtividade para melhorar a qualidade de vida

A educação, a proteção social e o empreendedorismo estão entre as áreas em que são necessárias ações prioritárias para acelerar o crescimento e combater as desigualdades econômicas na América Latina, de acordo com a OCDE.




aix

Aix-Marseille at the crossroads: Overcoming fragmentation for a stronger metropolitan area

The metropolitan region of Aix-Marseille in the south of France needs to tackle its fragmentated governance if it is to return to more inclusive and sustainable economic growth, according to a new OECD report.




aix

Governing the City: The case study of Aix-Marseille, France

This chapter begins with a brief socio-economic and institutional overview of the Marseille metropolitan region. It then explores the current status of inter-municipal collaboration, in particular with respect to public transport and spatial planning. Lastly, it discusses the metropolitan governance reforms of 2013.




aix

China Caixin Manufacturing PMI

Manufacturing PMI in China decreased to 49.40 points in April from 50.10 points in March of 2020. Manufacturing PMI in China averaged 49.85 points from 2011 until 2020, reaching an all time high of 52.30 points in January of 2013 and a record low of 40.30 points in February of 2020. In China, the Caixin Manufacturing PMI Purchasing Managers' Index measures the performance of the manufacturing sector and is derived from a survey of private 430 industrial companies. The Manufacturing Purchasing Managers Index is based on five individual indexes with the following weights: New Orders (30 percent), Output (25 percent), Employment (20 percent), Suppliers’ Delivery Times (15 percent) and Stock of Items Purchased (10 percent), with the Delivery Times index inverted so that it moves in a comparable direction. A reading above 50 indicates an expansion of the manufacturing sector compared to the previous month; below 50 represents a contraction; while 50 indicates no change. This page provides the latest reported value for - China Manufacturing PMI - plus previous releases, historical high and low, short-term forecast and long-term prediction, economic calendar, survey consensus and news.




aix

Concours Gardien de la paix - Catégorie B - Admis - Tout-en-un

14,99 €20,90 €

François Lavedan
2e édition
mars 2020
304 pages
Conforme à la réforme du concours 2019, ce "tout-en-un" complet&nbsp;permet de&nbsp;réussir les&nbsp;nouvelles épreuves (écrites et orales) du concours de gardien de la paix !
Ouvrage tout-en-un
Nouveau
978-2-311-20815-3
Premier, second et 3e concours - 2020
Disponible
Livre




aix

Fire effects on soil properties / editors, Paulo Pereira, Jorge Mataix-Solera, Xavier Úbeda, Guillermo Rein and Artemi Cerdà

Online Resource




aix

Landscape in Western Aix-en-Provence




aix

Landscape in Western Aix-en-Provence




aix

Portrait of Achille Emperaire (1829-98), Painter of Aix




aix

Portrait of Achille Emperaire (1829-98), Painter of Aix (detail)