Ubuntu下最簡單安裝設定LAMP(Linux+Apache+Mysql+Perl/PHP/Python)套件

來源:互聯網
上載者:User

 

在終端下輸入
sudo  tasksel
然後會出現一個軟體包的介面,移動游標到LAMP server 這一項,按空格,就會選擇這一項,其他的可以不選,然後點OK。
接下來呢,會讓你輸入MySQL的root使用者的密碼,這個得記住的,後面安裝php程式時用的上。然後就裝好了LAMP,

在瀏覽器上輸入http://127.0.0.1,測試下apache2

 

如果出現  100錯誤 

是開啟了新立得軟體管理器     關掉 重啟安裝  就OK了

 

 

######################Ubuntu 10.10安裝LAMP超級簡單的方法:

$sudo apt-get install tasksel

$sudo  tasksel

##And select LAMP Server:

$sudo vi /var/www/info.php  //添加以下三行代碼

<

phpinfo();

?>

$sudo /etc/init.d/apache2 restart

以下是傳統安裝方法:

Installing Apache MySQL, PHP and phpmyadmin on Ubuntu10.10 Maverick Meerkat is far easier and less complicated than doing the same on Fedora 13, (my own experience).

Step 1: You start by installing mysql

sudo apt-get install mysql-client mysql-server

Specify new password for the MySQl “root” user when prompted. Repeat it for a second time and you would have MySQL server and client installed.

Step 2: Next, install Apache2:

sudo apt-get install apache2

And you get apache2 installed as well. To double check, point your browser to http://localhost, and you should see the Apache2 placeholder page like this.

Step 3: To install support for PHP, do the usual

sudo apt-get install php5 libapache2-mod-php5

To verify that everything installed correctly and php support is enabled, you need torestart apache by doing this

sudo /etc/init.d/apache2 restart

Create a test php file called info.php, using a text editor of your choice (say gedit)

sudo gedit /var/www/info.php

and paste the following content and save the file

<?php phpinfo(); ?>

Now open the following page http://localhost/info.php and you should see something like this

Step 4: To make MySQL, php and apache talk among themselves, you would have to install php5-mysql, below I am listing some more useful packages that you might want to install

sudo apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-common

Now refresh the info.php page that you have open in your browser and you should be able to see the support for mysql if you search for it by doing Ctrl+f, but before that don’t forget to restart apache again (sudo /etc/init.d/apache2 restart)

Step 5: Finally install phpmyadmin

sudo apt-get install phpmyadmin

It would ask if you want to configure it automatically for apache or lightppd choose apache (by pressing “spacebar” to display a star as shown below and then use tab to navigate to Ok and press enter.

It would be automatically configured, however it would ask if you want a database installed and configured, choose yes and press enter

On the next screen you would be asked to enter the MySQL root password, that you provided in first step

next it would ask you to enter a password to be used by phpmyadmin to register with thedatabase (basically it would create a user called “phpmyadmin” the password is for that, most likely you won’t be needing this password ever. You can even choose to assign a random password for it.

Confirm that password on the next screen. Once you have made your choices the installation would finish and you should be able to access phpmyadmin by pointing your web browser to http://localhost/phpmyadmin/

You might need to restart apache again, for the above link to start working! (I didn’t have to restart apache, though.)

Super easy installation…

轉載自:www.hackourlife.com/install-apache-mysql-php-phpmyadmin-lamp-on-ubuntu-10-10/

相關文章

聯繫我們

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