如何在基于linux / unix的操作系统上单独安装php mysql apache和phpmyadmin,不带灯泡或任何软件包。
答案 0 :(得分:1)
只需通过从相应网站下载源代码压缩包或使用您的包管理器单独安装它们。在基于Debian的系统(Debian,Ubuntu等)上,aptitude
或apt-get
。在基于Red Hat的系统(如CentOS)上,它是yum
。例如,在CentOS系统上你会:
yum install httpd php5 mysqld
PHPmyAdmin不在所有的pacakge存储库中,因此您可能必须单独安装,这不过是将tarball解压缩到Web服务器的DocumentRoot(Web文件所在的位置),然后调整配置文件。
答案 1 :(得分:0)
step 1. Installing Apache
Open terminal (press Ctrl+Alt+t) and execute the command -
sudo apt-get install apache2
step 2. Installing MySQL
Execute the command -
sudo apt-get install mysql-server
step 3. Installing PHP
Execute the command -
sudo apt-get install php5 libapache2-mod-php5 php5-mysql
Then restart the Apache server to load php modules -
sudo /etc/init.d/apache2 restart
step 4. install phpMyAdmin on Ubuntu
just execute the command -
sudo apt-get install phpmyadmin