Installation OCI8 Oracle Linux 8.5 / Oracle 21c
Fermé
LordTde
Messages postés
1
Date d'inscription
mercredi 20 octobre 2021
Statut
Membre
Dernière intervention
17 avril 2023
-
17 avril 2023 à 15:59
mamiemando Messages postés 33401 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 28 novembre 2024 - 19 avril 2023 à 12:09
mamiemando Messages postés 33401 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 28 novembre 2024 - 19 avril 2023 à 12:09
A voir également:
- Installation OCI8 Oracle Linux 8.5 / Oracle 21c
- Installation chromecast - Guide
- Installation windows 10 sans compte microsoft - Guide
- Schéma installation rj45 maison fibre - Forum câblage
- Linux mint 32 bits - Télécharger - Systèmes d'exploitation
- Diskinternals linux reader - Télécharger - Stockage
1 réponse
mamiemando
Messages postés
33401
Date d'inscription
jeudi 12 mai 2005
Statut
Modérateur
Dernière intervention
28 novembre 2024
7 804
Modifié le 19 avril 2023 à 12:10
Modifié le 19 avril 2023 à 12:10
Bonjour,
Peux-tu clarifier le contexte (quel distribution Linux, quel serveur web). Si on s'en tient à cette documentation, voici comment je ferais sous debian avec apache2 :
# Préliminaires sudo apt update sudo apt upgrade # Apache, PHP sudo apt install apache2 libapache2-mod-php ls /etc/apache2/mods-available/php*conf # Voir la version de PHP sudo a2enmod php8.1 # À adapter avec ta version de PHP sudo systemctl restart apache2 # oci8 sudo apt install php-pear sudo pecl install oci8
Ensuite on poursuit la doc et on corrige /etc/php/8.1/apache2/php.ini en ajoutant la ligne :
extension=oci8.so
... puis on redémarre apache
sudo systemctl restart apache2
Bonne chance