在Ubuntu 9.04下配置Apache和Mod-Python

來源:互聯網
上載者:User
在Ubuntu 9.04下配置Apache和Mod-Python

直接使用軟體包管理器安裝apache,瀏覽器訪問localhost,Apache返回”It works!”。

 

 

直接使用軟體包管理器安裝mod-python,參照Ubuntu Forum的這個文章配置

http://ubuntuforums.org/showthread.php?t=91101

發現第一步疑似已經被軟體包管理器做了,直接修改設定檔:

cd /etc/apache2/sites-available/

sudo gedit default

修改var/www的配置:

------------------------------------------------------------------------------------

        <Directory /var/www/>

                Options Indexes FollowSymLinks MultiViews

                AllowOverride AuthConfig

                Order allow,deny

                allow from all

 

                AddHandler mod_python .py

                PythonHandler mod_python.publisher

                PythonDebug On

 

                # Uncomment this directive is you want to see apache2's

                # default start page (in /apache2-default) when you go to /

                #RedirectMatch ^/$ /apache2-default/

        </Directory>

------------------------------------------------------------------------------------

 

在var/www檔案夾內建立一個test.py,內容為:

------------------------------------------------------------------------------------

def index(req):

  return "Test successful";

------------------------------------------------------------------------------------

 

瀏覽器訪問localhost/test.py,測試成功。

 

使用非root使用者登入,無法直接修改www的檔案,每次都要sudo gedit,十分不爽。首先進入“系統 -喜好設定 – 使用者和組”給root解鎖。然後進入“登陸服務 – 安全”設定允許本地管理員登入。

 

重啟,發現不知道root的密碼……

搜尋了一下Ubuntu的預設root密碼,得解:ubuntu預設root密碼。

首先sudo passwd,輸入原管理員密碼,再輸入兩次新密碼。之後就可以使用這個新密碼登入root了。

重啟,成功登陸root。

相關文章

聯繫我們

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