Ubuntu PHP基礎環境配置(含Memcached),ubuntumemcached

來源:互聯網
上載者:User

Ubuntu PHP基礎環境配置(含Memcached),ubuntumemcached

首先,自然是安裝Apache

sudo apt-get install apache2

之後,啟動服務

sudo /etc/init.d/apache2 start


然後是PHP

sudo apt-get install libapache2-mod-php5 php5

如果你需要,還可以繼續安裝GD庫

sudo apt-get install php5-gd

php5-mysql等其它庫類似,不一一列舉了。


重啟服務

sudo /etc/init.d/apache2 restart


接著是mysql

sudo apt-get install mysql-server mysql-client


這個時候基礎環境就OK了。你可以訪問http://127.0.0.1 測試一下。



然後繼續memcached 安裝
sudo apt-get install memcached

memcached 參數說明
memcached -d -m 50 -p 11211 -u root
-m 指定使用多少兆的緩衝空間;-p 指定要監聽的連接埠; -u 指定以哪個使用者來運行

安裝php-memcache模組
sudo apt-get install php5-memcache

編輯設定檔
sudo vi /etc/php5/conf.d/memcache.ini

;uncomment the next line to enable the module
extension=memcache.so

[memcache]
memcache.dbpath="/var/lib/memcache"
memcache.maxreclevel=0
memcache.maxfiles=0
memcache.archivememlim=0
memcache.maxfilesize=0
memcache.maxratio=0


:wq! 退出 vi 即可。


在phpinfo()查看配置好的環境吧!


備用,如果安裝過程中出錯,還可以試試


卸載php:

    sudo apt-get autoremove php5-common

卸載 mysql:

    sudo aptitude purge mysql-server mysql-server-5.0


強制卸載apache2.2:

    $ sudo apt-get --purge remove apache2.2-common

    $ sudo apt-get --purge remove apache2.2



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.