|
|||||||||||||||||||||||||||||||
|
Skip navigation links
Additional languages MySQL 5.0 Reference Manual :: 2 Installing and Upgrading MySQL :: 2.4 Installing MySQL Community Server :: 2.4.12 Installing MySQL on i5/OS Section Navigation [Toggle]
The i5/OS POWER MySQL package was created in cooperation with IBM. MySQL works within the Portable Application Solution Environment (PASE) on the System i series of hardware and will also provide database services for the Zend Core for i5/OS.
MySQL for i5/OS is provided as a save file
(
MySQL is only supported on i5/OS V5R4 or later releases. The i5/OS
PASE must be installed for MySQL to operate. You must be able to
login as a user in You should the installation notes and tips for i5/OS before starting installation. See i5/OS Installation Notes. Note
The installation package will use an existing configuration if
you have previously installed MySQL (which is identified by
looking for the file
If you want to change these parameters during a new install, you
should temporarily rename To install MySQL on i5/OS, follow these steps:
To start MySQL:
If you are having problems starting MySQL server, see Section 2.4.16.2.3, âStarting and Troubleshooting the MySQL Serverâ. To stop MySQL:
© 1995-2008 MySQL AB. All rights reserved. |
||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||



User Comments
I have automated the startup process by creating a CLP and having it autostart in the ZENDCORE PHP SBS. So that when the Zend SBS is available, so is the MySQL daemon. I hope it may help.
Regards
Richard.
Senior iSeries Systems Engineer
Microlise Group Limited.
If anyone wants the source here it is:
PGM
DCL VAR(&CMD) TYPE(*CHAR) LEN(80)
DCL VAR(&PARM1) TYPE(*CHAR) LEN(20)
DCL VAR(&NULL) TYPE(*CHAR) LEN(1) VALUE(X'00')
CHGVAR VAR(&CMD) VALUE('/usr/local/mysql-5.0.37-aix5.2-powerpc-64bit/bin/mysql+
d_safe ')
CHGVAR VAR(&PARM1) VALUE(' --user=mysql &')
CHGVAR VAR(&CMD) VALUE(&CMD *TCAT &NULL)
CHGVAR VAR(&PARM1) VALUE(&PARM1 *TCAT &NULL)
PASESHELL:
CALL PGM(QP2SHELL) PARM(&CMD)
ENDPGM
Add your own comment.