在linux上安装apache+php连接oracle10g
欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 所用软件:linux AS 4 oracle-instantclient-basic-10.1.0.4-1.i386.rpm oracle-instantclient-devel-10.1.0.4-1.i386.rpm php 4.4.2 httpd-2.2.0.tar.gz 或 httpd-2.0.55.tar.gz oracle 版本是 10.1
欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入
所用软件:linux AS 4 oracle-instantclient-basic-10.1.0.4-1.i386.rpm oracle-instantclient-devel-10.1.0.4-1.i386.rpm php 4.4.2 httpd-2.2.0.tar.gz 或 httpd-2.0.55.tar.gz oracle 版本是 10.1.0.3真正成功安装, 连接成功!
gd库的安装安装freetype tar zxvf freetype-2.1.10.tar.gz./configure make && make install:安装zlib tar -zxvf zlib-1.2.3.tar.gz cd zlib.1.2.3./configure make && make install:安装libpng tar -zxvf libpng-1.2.8-config.tar.gz cd libpng-1.2.8-config cp scripts/makefile.std makefile make test make install:安装jpeg tar -zxvf jpegsrc.v6b.tar.gz cd jpeg-6b./configure ――enable-share ――enable-static make; make install:安装GD tar -zxvf gd-2.0.33.tar.gz cd gd-2.0.33./configure ――prefix=/usr/local/gd ――with-jpeg ――with-png ――with-zlib ――with-freetype=/usr/local/freetype/lib make && make install编译jpeg时报错/usr/bin/install -c -m 644 ./cjpeg.1 /usr/local/man/man1/cjpeg.1 /usr/bin/install: cannot create regular file `/usr/local/man/man1/cjpeg.1'': No such file or directory缺少/usr/local/man目录及man1子目录,新建后重新编译。
shell> mkdir /usr/local/man shell> mkdir /usr/local/man/man1安装apache先把 httpd-2.2.0.tar.gz 上传到 /root cd tar zxvf httpd-2.2.0.tar.gz cd httpd-2.2.0./configure ――prefix=/usr/local/apache2 make && make install在 Linux 上启用 PHP OCI8 扩展从 OTN 上的 Instant Client 页面下载 Basic 和 SDK Instant Client 程序包。这两个 RPM 的总大小大约为 30MB.以 root 用户的身份安装 RPM. rpm -Uvh oracle-instantclient-basic-10.1.0.4-1.i386.rpm rpm -Uvh oracle-instantclient-devel-10.1.0.4-1.i386.rpm第一个 RPM 将 Oracle 库置于 /usr/lib/oracle/10.1.0.4/client/lib 中,第二个 RPM 在 /usr/include/oracle/10.1.0.4/client 中创建头 (header)。
安装php先把 php-4.4.2.tar.gz 上传到 /root cd tar zxvf php-4.4.2.tar.gz cd php-4.4.2./configure ――prefix=/usr/local/php ――with-config-file-path=/usr/local/php/etc ――with-oci8-instant-client=/usr/lib/oracle/10.1.0.4/client/lib ――with-apxs2=/usr/local/apache2/bin/apxs ――with-mysql ――with-gd ――with-zlib ――with-png ――with-jpeg ――with-freetype ――enable-gd-native-ttf ――with-ttf make && make install cp php.ini-dist /usr/local/php/etc/php.ini在 http.conf 末添加LoadModule php4_module modules/libphp4.so AddType application/x-httpd-php .php AddType application/x-httpd-php .phtml AddType application/x-httpd-php-source .phps把 DocumentRoot "/usr/local/apache2/htdocs" 改成 DocumentRoot "你的目录" , phpinfo();?>如果里面有 oci8 的信息,则表示安装成功!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

The reasons for the installation of VS Code extensions may be: network instability, insufficient permissions, system compatibility issues, VS Code version is too old, antivirus software or firewall interference. By checking network connections, permissions, log files, updating VS Code, disabling security software, and restarting VS Code or computers, you can gradually troubleshoot and resolve issues.

vscode built-in terminal is a development tool that allows running commands and scripts within the editor to simplify the development process. How to use vscode terminal: Open the terminal with the shortcut key (Ctrl/Cmd). Enter a command or run the script. Use hotkeys (such as Ctrl L to clear the terminal). Change the working directory (such as the cd command). Advanced features include debug mode, automatic code snippet completion, and interactive command history.

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.
