我想在CentOS的安裝Apache PHP MYSQL phpMyAdmin的Drupal的5.5如何在CentOS安裝AMP 5.5
我想安裝的軟件 最後一個版本,我不知道Linux專業,我知道一點點基礎的Linux的
謝謝
我想在CentOS的安裝Apache PHP MYSQL phpMyAdmin的Drupal的5.5如何在CentOS安裝AMP 5.5
我想安裝的軟件 最後一個版本,我不知道Linux專業,我知道一點點基礎的Linux的
謝謝
我不是故意的,但this tutorial *字面意思是* first result on google。
主要位:
#install Apache
yum install httpd httpd-devel
/etc/init.d/httpd start
#install MySQL
yum install mysql mysql-server mysql-devel
/etc/init.d/mysqld start
#set MySQL pass
mysql
這裏, 「MySQL的>」 意味着你在MySQL提示。
mysql> USE mysql;
mysql> UPDATE user SET Password=PASSWORD('newpassword') WHERE user='root';
mysql>FLUSH PRIVILEGES;
檢查,以確保您的密碼的工作原理:
mysql -u root -p
Enter Password: <your new password>
安裝PHP:
yum install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml
/etc/init.d/httpd restart
創建一個名爲/var/www/html/test.php
具有下列文件:
<?php
phpinfo();
?>
你可能想要插入高phpMyAdmin:
yum install phpmyadmin
如果你想要最新的穩定版本的PHP和MySQL。 您必須先安裝軟件包並進行更新。 您可以在yum命令下使用groupinstall。
MySQL的
#check the packages under MySQL group
yum groupinfo "MySQL Database"
#you will see the list of mandatory, default and optional packages
#install the group package
yum groupinstall "MySQL Database"
#after install, check installed packages
rpm -qa | grep -i mysql
對於PHP
#check the packages under Web Server group
yum groupinfo "Web Server"
#install the group package
yum groupinstall "Web Server"
您還可以安裝附加/可選包,如PHP,MySQL的。等等。
yum install php-mysql
現在,更新已安裝的軟件包。我通過網絡發現了這個存儲庫,它非常可靠。
更新PHP和MySQL
#update remi and rpm
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
#update PHP and MySQL
yum --enablerepo=remi update php-\*
yum --enablerepo=remi update mysql-\*
#start the service
service httpd start
service mysqld start
#check the versions
php -v
mysql -v
希望有所幫助。
我知道,我在谷歌搜索,但使用此命令時,安裝PHP 5.1和MySQL 5.0.1和...我想安裝最新版本 – reza 2011-03-24 14:18:33
你不會從基礎知識庫獲取最新版本。如果你想要這些,你將不得不添加第三方回購。 [這裏是PHP的一個](http://www.webtatic.com/packages/php53/),[這裏是MySQL](http://www.webtatic.com/packages/mysql55/)。 – bhamby 2011-03-24 14:23:10