重新安裝postgresql+apache+php

來源:互聯網
上載者:User
1、卸載:
rpm -e httpd --nodeps卸載apache
rpm -qa | grep postgresql 找出相關的包,倒序刪除。
刪除掉/usr/local下的php5檔案夾,卸載php

2、分別從官網下載tar.gz的包,其中apache對應的是httpd包。用tar -xzvf解壓縮。

3、首先安裝postgresql:
進入到postgresql-8.3.3目錄,首先./configure --help|less 搞清楚裡面一些選項的作用。
./configure --prefix=/usr/local/pgsql

make

make install
安裝完畢。

sudo useradd postsql並且sudo passwd postsql設定密碼,使用usermod 加入到wheel組中賦予sudo許可權。
進入到/usr/local/pgsql中,建立data檔案夾,並賦予postsql存取權限(這相等於使用postsql作為postsql的超級使用者了)。初始化:
$POSTPATH/bin/initdb -D $POSTPATH/data
pg_ctl -D $POSTPATH/data -l logfile start啟動postgresql服務。
然後建立db,檢驗安裝正確。
可能需要修改$POSTPATH/data下的pg_hba.conf和postgresql.conf檔案賦予存取權限等。

4、安裝apache :
./configure --prefix=/server/soft/apache2

--enable-proxy

--enable-proxy-ajp

--enable-ssl

--enable-dav

--enable-dav-fs

--enable-dav-lock

--enable-rewrite

--enable-so

make

make install
進入到apache/bin下,sudo ./apachectl -k start啟動httpd服務。

5、安裝PHP:
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-zlib --with-gd --with-jpeg-dir --with-png-dir --enable-mbstring -with-pdo-pgsql=/server/soft/postgresql/ --with-pgsql=/server/soft/postgresql/ --with-libxml-dir=/usr/lib/libxml2
make
make install
make test檢查

6、安裝之後對httpd進行配置 /usr/local/apache/conf/httpd.conf,增加了下面兩段:
Options FollowSymLinks

AllowOverride None

Order allow,deny

Allow from all

……

ServerName test.cy.cn

DocumentRoot /ms/wwwroot/test

DirectoryIndex index.php index.htm index.html

並且在/ms/wwwroot/test目錄下寫了test.php:

echo "hello";

這時,配了host之後,就可以訪問test.cy.cn了。但是現在的apache還不支援解析php檔案,所以僅將該文本(包括echo)列印出來了。

7、配置apache解析php檔案,在httpd.conf中添加:
LoadModule php5_module modules/libphp5.so
……
AddType application/x-httpd-php .php
AddType application/x-httpd-php .inc
AddType application/x-httpd-php .cfm
AddType application/x-httpd-php .aspx
重啟apache即可。

8、發現安裝之後可以用phpinfo()將configure時使用的參數列印出來,這樣可以方便配置同其他機器相同的參數。

9、使用pg_dump匯出表
pg_dump -F p -Z 0 empress_by_cy > ~/empress_by_cy.sql
匯入的時候,先建立db,比如為test_cy,
然後 psql -d test_cy -f /home/chengyi/impress/sql/empress_by_cy.sql
這樣可以方便的在其他機器產生同樣的表結構

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.