Discussion:Php 5 mysql 5 : Différence entre versions
(→==) |
|||
Ligne 1 : | Ligne 1 : | ||
bonjour a tous, j'ai mis a jour vers php5 et mysql5 avec cette methode (legerement modifiée par rapport au wiki car trop de petites erreurs): | bonjour a tous, j'ai mis a jour vers php5 et mysql5 avec cette methode (legerement modifiée par rapport au wiki car trop de petites erreurs): | ||
+ | ==mysql5== | ||
− | + | ===STEP 1: MAKE A BACKUP OF YOUR DATABASES=== | |
− | + | ||
− | + | ||
− | + | ||
− | |||
− | |||
− | |||
Code: | Code: | ||
mysqldump -aec >backup_mysql_databases.sql | mysqldump -aec >backup_mysql_databases.sql | ||
Ligne 14 : | Ligne 9 : | ||
− | === | + | ===STEP 2: GET THE NEW RPM'S=== |
− | STEP 2: GET THE NEW RPM'S | + | |
− | === | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
Code: | Code: | ||
/etc/rc.d/init.d/mysqld stop | /etc/rc.d/init.d/mysqld stop | ||
Ligne 57 : | Ligne 20 : | ||
mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE ON horde.* TO 'horde'@'localhost';FLUSH PRIVILEGES" | mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE ON horde.* TO 'horde'@'localhost';FLUSH PRIVILEGES" | ||
+ | ===STEP 3: ADD MISSING MySQL-TABLES TO MYSQL DATABASE: (for instance with PhpMyAdmin)=== | ||
− | |||
− | |||
− | |||
− | |||
− | |||
Code: | Code: | ||
DROP TABLE IF EXISTS proc; | DROP TABLE IF EXISTS proc; | ||
Ligne 101 : | Ligne 60 : | ||
− | === | + | ===STEP 4: RESTART MySQL:=== |
− | STEP 4: RESTART MySQL: | + | |
− | + | ||
You simply reboot the server | You simply reboot the server | ||
Ligne 116 : | Ligne 73 : | ||
− | ==== | + | ==PHP5== |
− | + | ||
− | + | ||
PHP 5 | PHP 5 | ||
Ligne 124 : | Ligne 79 : | ||
yum --enablerepo=centosplus update php | yum --enablerepo=centosplus update php | ||
+ | |||
2 verifiez voir corrigez ceci: | 2 verifiez voir corrigez ceci: | ||
Ligne 246 : | Ligne 202 : | ||
PHP 4.1.1 doesn't like some of the database calls that IMP uses, even though they still work. To avoid having errors clutter up your screen, you'll want to find the line that says display_errors and set that to Off . If you want them to be logged, set log_errors to On , and error_log to syslog. | PHP 4.1.1 doesn't like some of the database calls that IMP uses, even though they still work. To avoid having errors clutter up your screen, you'll want to find the line that says display_errors and set that to Off . If you want them to be logged, set log_errors to On , and error_log to syslog. | ||
+ | |||
+ | |||
+ | |||
+ | == ebauche nouvelle version PHP5== | ||
+ | |||
+ | yum --enablerepo=centosplus php | ||
+ | ============================================================================= | ||
+ | Package Arch Version Repository Size | ||
+ | ============================================================================= | ||
+ | Installing: | ||
+ | php-xml i386 5.1.6-3.el4s1.8 centosplus 85 k | ||
+ | replacing php-domxml.i386 4.3.9-3.22.9 | ||
+ | |||
+ | Updating: | ||
+ | php i386 5.1.6-3.el4s1.8 centosplus 1.1 M | ||
+ | Installing for dependencies: | ||
+ | mysql-libs i386 5.0.58-1.el4.centos centosplus 1.8 M | ||
+ | php-cli i386 5.1.6-3.el4s1.8 centosplus 2.0 M | ||
+ | php-common i386 5.1.6-3.el4s1.8 centosplus 136 k | ||
+ | php-pdo i386 5.1.6-3.el4s1.8 centosplus 220 k | ||
+ | Updating for dependencies: | ||
+ | php-gd i386 5.1.6-3.el4s1.8 centosplus 102 k | ||
+ | php-imap i386 5.1.6-3.el4s1.8 centosplus 48 k | ||
+ | php-ldap i386 5.1.6-3.el4s1.8 centosplus 31 k | ||
+ | php-mbstring i386 5.1.6-3.el4s1.8 centosplus 970 k | ||
+ | php-mysql i386 5.1.6-3.el4s1.8 centosplus 77 k | ||
+ | php-pear noarch 1:1.4.11-1.el4s1.1 centosplus 345 k | ||
+ | |||
+ | Transaction Summary | ||
+ | ============================================================================= | ||
+ | Install 5 Package(s) | ||
+ | Update 7 Package(s) | ||
+ | Remove 0 Package(s) | ||
+ | Total download size: 6.9 M | ||
+ | Is this ok [y/N]: |
Version du 23 mai 2008 à 17:06
bonjour a tous, j'ai mis a jour vers php5 et mysql5 avec cette methode (legerement modifiée par rapport au wiki car trop de petites erreurs):
mysql5
STEP 1: MAKE A BACKUP OF YOUR DATABASES
Code: mysqldump -aec >backup_mysql_databases.sql
STEP 2: GET THE NEW RPM'S
Code: /etc/rc.d/init.d/mysqld stop yum --enablerepo=centosplus update mysql /etc/rc.d/init.d/mysqld start
To fix the privileges on Horde:
Code:
mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE ON horde.* TO 'horde'@'localhost';FLUSH PRIVILEGES"
STEP 3: ADD MISSING MySQL-TABLES TO MYSQL DATABASE: (for instance with PhpMyAdmin)
Code: DROP TABLE IF EXISTS proc; CREATE TABLE proc ( db char( 64 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default , name char( 64 ) NOT NULL default , type enum( 'FUNCTION', 'PROCEDURE' ) NOT NULL , specific_name char( 64 ) NOT NULL default , language enum( 'SQL' ) NOT NULL default 'SQL', sql_data_access enum( 'CONTAINS_SQL', 'NO_SQL', 'READS_SQL_DATA', 'MODIFIES_SQL_DATA' ) NOT NULL default 'CONTAINS_SQL', is_deterministic enum( 'YES', 'NO' ) NOT NULL default 'NO', security_type enum( 'INVOKER', 'DEFINER' ) NOT NULL default 'DEFINER', param_list blob NOT NULL , returns char( 64 ) NOT NULL default , body longblob NOT NULL , definer char( 77 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default , created timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP , modified timestamp NOT NULL default '0000-00-00 00:00:00', sql_mode set( 'REAL_AS_FLOAT', 'PIPES_AS_CONCAT', 'ANSI_QUOTES', 'IGNORE_SPACE', 'NOT_USED', 'ONLY_FULL_GROUP_BY', 'NO_UNSIGNED_SUBTRACTION', 'NO_DIR_IN_CREATE', 'POSTGRESQL', 'ORACLE', 'MSSQL', 'DB2', 'MAXDB', 'NO_KEY_OPTIONS', 'NO_TABLE_OPTIONS', 'NO_FIELD_OPTIONS', 'MYSQL323', 'MYSQL40', 'ANSI', 'NO_AUTO_VALUE_ON_ZERO', 'NO_BACKSLASH_ESCAPES', 'STRICT_TRANS_TABLES', 'STRICT_ALL_TABLES', 'NO_ZERO_IN_DATE', 'NO_ZERO_DATE', 'INVALID_DATES', 'ERROR_FOR_DIVISION_BY_ZERO', 'TRADITIONAL', 'NO_AUTO_CREATE_USER', 'HIGH_NOT_PRECEDENCE' ) NOT NULL default , comment char( 64 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default , PRIMARY KEY ( db , name , type ) ) ENGINE = MYISAM DEFAULT CHARSET = utf8 COMMENT = 'Stored Procedures';
DROP TABLE IF EXISTS procs_priv; CREATE TABLE procs_priv ( Host char(60) collate utf8_bin NOT NULL default , Db char(64) collate utf8_bin NOT NULL default , User char(16) collate utf8_bin NOT NULL default , Routine_name char(64) collate utf8_bin NOT NULL default , Routine_type enum('FUNCTION','PROCEDURE') collate utf8_bin NOT NULL, Grantor char(77) collate utf8_bin NOT NULL default , Proc_priv set('Execute','Alter Routine','Grant') character set utf8 NOT NULL default , Timestamp timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (Host,Db,User,Routine_name,Routine_type), KEY Grantor (Grantor) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges';
STEP 4: RESTART MySQL:
You simply reboot the server
OR
without rebooting the server: Code: /etc/rc.d/init.d/mysqld stop; /etc/rc.d/init.d/mysqld start; /etc/rc.d/init.d/mysql.init restart;
PHP5
PHP 5 1 installez les mise à jour de php 5 sur centosplus
yum --enablerepo=centosplus update php
2 verifiez voir corrigez ceci:
php.ini
vi /etc/e-smith/templates/etc/php.ini/50PathsDirectories extension_dir = /usr/lib/php/modules . Si ce n'est pas le cas faites ceci cp /etc/e-smith/templates/etc/php.ini/50PathDirectories /etc/e-smith/templates-custom/etc/php.ini/50PathDirectories mcedit /etc/e-smith/templates-custom/etc/php.ini/50PathDirectories et modifiez en consequence... Puis: expand-template /etc/php.ini
httpd.conf
mcedit /etc/e-smith/templates/etc/httpd/conf/httpd.conf/20loadModule80PHP verifiez que la ligne est pressente: return "LoadModule php5_module modules/libphp5.so";
si ce n'est pas le cas :
cp /etc/e-smith/templates/etc/httpd/conf/httpd.conf/20loadModule80PHP /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/20loadModule80PHP mcedit /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/20loadModule80PHP et modifiez en consequence... Puis: expand-template /etc/httpd/conf/httpd.conf
3 verifiez le bon fonctionnement de
/etc/rc.d/init.d/httpd restart (puis n'oubliez pas php-domxml)
par contre maintenant j'ai en erreur sur mes log:
Code:
Nov 27 15:47:03 localhost httpd: PHP Notice: Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Cipher/BlockMode.php on line 48
Nov 27 16:18:47 localhost httpd: PHP Notice: Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/DataTree.php on line 1180
Nov 27 16:18:47 localhost httpd: PHP Notice: Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Perms.php on line 347
Nov 27 16:18:47 localhost httpd: PHP Notice: Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Auth.php on line 1168
en voyant ce message et le probleme des variable, je me demandais si c'etait lié et si c'etait risqué en production d'avoir ce genre de log ?? Sachant que je n'ai pas de scripts perso !!
De meme lors d'un yum update, j'obtient ca maintenant:
Code: --> Finished Dependency Resolution
Error: Missing Dependency: php >= 4.3.0 is needed by package turba-h3
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-imap
Error: Missing Dependency: php is needed by package pear-mail
Error: Missing Dependency: php >= 4.3.0 is needed by package ingo-h3
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-ldap
Error: Missing Dependency: php is needed by package e-smith-ingo
Error: Missing Dependency: php >= 5.1.0-1 is needed by package php-pear
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-gd
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-pdo
Error: Missing Dependency: php is needed by package pear-mail_mime
Error: Missing Dependency: php >= 4.3.0 is needed by package imp-h3
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-mysql
Error: Missing Dependency: php is needed by package pear-file
Error: Missing Dependency: php is needed by package e-smith-imp
Error: Missing Dependency: php is needed by package pear-date
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-mbstring
Error: Missing Dependency: php is needed by package pear-db
Error: Missing Dependency: php >= 4.3.0 is needed by package horde
Error: Missing Dependency: php is needed by package pear-log
Error: Missing Dependency: php >= 4.0.1 is needed by package e-smith-php
Error: Missing Dependency: php = 4.3.9-3.15 is needed by package php-domxml
====================================================
No new rpms were installed. No additional commands are required.
====================================================
sachant qu'avec un rpm -qa '*php*" j'ai
Code: php-mbstring-5.1.6-1.2.1.centos php-5.1.6-1.2.1.centos e-smith-php-1.12.0-01 php-mysql-5.1.6-1.2.1.centos php-ldap-5.1.6-1.2.1.centos php-imap-5.1.6-1.2.1.centos php-xml-5.1.6-1.2.1.centos php-pdo-5.1.6-1.2.1.centos php-gd-5.1.6-1.2.1.centos php-pear-1.4.9-1.2.centos
Ca me fout un peu les boules tout ca, donc merci par avance pour vos feedback et aide.
Reponse
salut
apparement ces problemes avec horde existait deja avec SME5 lors d emsie à jour de php, voila les suggestions de l'époque :
PHP 4.1.1 doesn't like some of the database calls that IMP uses, even though they still work. To avoid having errors clutter up your screen, you'll want to find the line that says display_errors and set that to Off . If you want them to be logged, set log_errors to On , and error_log to syslog.
ebauche nouvelle version PHP5
yum --enablerepo=centosplus php
=================================================================
Package Arch Version Repository Size
=================================================================
Installing:
php-xml i386 5.1.6-3.el4s1.8 centosplus 85 k replacing php-domxml.i386 4.3.9-3.22.9
Updating:
php i386 5.1.6-3.el4s1.8 centosplus 1.1 M
Installing for dependencies:
mysql-libs i386 5.0.58-1.el4.centos centosplus 1.8 M php-cli i386 5.1.6-3.el4s1.8 centosplus 2.0 M php-common i386 5.1.6-3.el4s1.8 centosplus 136 k php-pdo i386 5.1.6-3.el4s1.8 centosplus 220 k
Updating for dependencies:
php-gd i386 5.1.6-3.el4s1.8 centosplus 102 k php-imap i386 5.1.6-3.el4s1.8 centosplus 48 k php-ldap i386 5.1.6-3.el4s1.8 centosplus 31 k php-mbstring i386 5.1.6-3.el4s1.8 centosplus 970 k php-mysql i386 5.1.6-3.el4s1.8 centosplus 77 k php-pear noarch 1:1.4.11-1.el4s1.1 centosplus 345 k
Transaction Summary
=================================================================
Install 5 Package(s) Update 7 Package(s) Remove 0 Package(s) Total download size: 6.9 M Is this ok [y/N]: