关于LAMP
LAMP是一组用于使Web服务器启动和运行的开源软件。 首字母缩写代表Linux,Apache,MySQL和PHP。 由于虚拟专用服务器已经在运行Debian,所以linux部分被处理。 这里是如何安装其余的。
建立
在运行本教程的步骤之前,请确保所有的存储库是最新的:
apt-get update
完成后,继续并开始安装LAMP服务器。
第一步 - 安装Apache
Apache是一个免费开源软件,可运行世界上50%的Web服务器。
要安装apache,打开终端并键入以下命令:
apt-get install apache2
而已。 要检查您的VPS上是否安装了Apache,请将您的浏览器指向您服务器的IP地址(例如http://12.34.56.789)。 该页面应该显示的话“它的工作!”像 。
如何查找您的服务器的IP地址
您可以运行以下命令来显示您的VPS的IP地址。
ifconfig eth0 | grep inet | awk '{ print $2 }'
第二步 - 安装MySQL
MySQL是一个广泛部署的数据库管理系统,用于组织和检索数据。
要安装MySQL,请打开终端并键入以下命令:
apt-get install mysql-server
在安装过程中,MySQL会要求您设置root密码。 如果你错过了在程序安装时设置密码的机会,以后很容易从MySQL shell中设置密码。
通过运行MySQL设置脚本完成:
mysql_secure_installation
提示将要求您输入当前的root密码。
输入。
Enter current password for root (enter for none): OK, successfully used password, moving on...
然后提示将询问您是否要更改root密码。 继续,选择N并继续下一步。
这是最简单只是说是的所有选项。 最后,MySQL将重新加载和实现新的更改。
By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] y ... Success! By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] y ... Success! Cleaning up...
一旦你完成了,你可以通过在你的虚拟服务器上安装PHP完成。
第三步 - 安装PHP
PHP是一种开源的Web脚本语言,广泛用于构建动态网页。
要安装PHP,打开终端,并键入此命令。 注意:如果您在早于7 Debian的一个版本,包括PHP5-了Suhosin为好。apt-get install php5 php-pear php5-mysql
在您对提示两次回答yes之后,PHP将自行安装。
通过重新启动apache完成:
service apache2 restart
恭喜! 你现在有LAMP在你的Droplet!
第四步结果:请参阅您的服务器上的PHP
虽然安装了LAMP,我们仍然可以通过创建一个快速的PHP信息页面来查看组件在线
要进行设置,首先创建一个新文件:
nano /var/www/info.php
在以下行中添加:
<?php phpinfo(); ?>
然后保存并退出。
访问您的PHP信息页面完成(确保您替换示例IP地址与您正确的IP地址):http://12.34.56.789/info.php
它应该看起来像这样: