原创官网
http://www.howtoing.com/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu/
关于LAMP
LAMP是一组用于使Web服务器启动和运行的开源软件。首字母缩写代表Linux,Apache,MysqL和PHP。由于虚拟专用服务器已经在运行Ubuntu,所以linux部分被处理。这里是如何安装其余的。@H_301_7@
建立
本教程中的步骤要求用户对您的VPS具有root权限。你可以看到如何设置了在初始服务器设置在第3步和4。@H_301_7@
第1步:安装Apache
Apache是一个免费开源软件,可运行世界上50%的Web服务器。@H_301_7@
要安装apache,打开终端并键入以下命令:@H_301_7@
sudo apt-get update sudo apt-get install apache2
而已。要检查是否安装了Apache,请将浏览器指向您服务器的IP地址(例如http://12.34.56.789)。该页面应该显示的话“它的工作!”像这样。@H_301_7@
如何查找您的服务器的IP地址
您可以运行以下命令来显示您的服务器的IP地址。@H_301_7@
ifconfig eth0 | grep inet | awk '{ print $2 }'
第2步:安装MysqL
MysqL是一个强大的数据库管理系统,用于组织和检索数据@H_301_7@
要安装MysqL,请打开终端并键入以下命令:@H_301_7@
sudo apt-get install MysqL-server libapache2-mod-auth-MysqL PHP5-MysqL
在安装过程中,MysqL会要求您设置root密码。如果你错过了在程序安装时设置密码的机会,以后很容易从MysqL shell中设置密码。@H_301_7@
一旦你安装了MysqL,我们应该用这个命令激活它:@H_301_7@
sudo MysqL_install_db
sudo /usr/bin/MysqL_secure_installation
输入。@H_301_7@
Enter current password for root (enter for none): OK,successfully used password,moving on...
然后提示将询问您是否要更改root密码。继续,选择N并继续下一步。@H_301_7@
这是最简单只是说是的所有选项。最后,MysqL将重新加载和实现新的更改。@H_301_7@
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...
第3步:安装PHP
PHP是一种开源的Web脚本语言,广泛用于构建动态网页。@H_301_7@
sudo apt-get install PHP5 libapache2-mod-PHP5 PHP5-mcrypt
在您对提示两次回答yes之后,PHP将自行安装。@H_301_7@
它也可能是有用的添加PHP到目录索引,以提供相关的PHP索引文件:@H_301_7@
sudo nano /etc/apache2/mods-enabled/dir.conf
将index.PHP添加到索引文件的开头。页面现在应该如下所示:@H_301_7@
<IfModule mod_dir.c> DirectoryIndex index.PHP index.html index.cgi index.pl index.PHP index.xhtml index.htm </IfModule>
PHP模块
PHP还有各种有用的库和模块,您可以将其添加到虚拟服务器上。您可以查看可用的库。@H_301_7@
apt-cache search PHP5-
PHP5-cgi - server-side,HTML-embedded scripting language (CGI binary) PHP5-cli - command-line interpreter for the PHP5 scripting language PHP5-common - Common files for packages built from the PHP5 source PHP5-curl - CURL module for PHP5 PHP5-dbg - Debug symbols for PHP5 PHP5-dev - Files for PHP5 module development PHP5-gd - GD module for PHP5 PHP5-gmp - GMP module for PHP5 PHP5-ldap - LDAP module for PHP5 PHP5-MysqL - MysqL module for PHP5 PHP5-odbc - ODBC module for PHP5 PHP5-pgsql - Postgresql module for PHP5 PHP5-pspell - pspell module for PHP5 PHP5-recode - recode module for PHP5 PHP5-snmp - SNMP module for PHP5 PHP5-sqlite - sqlite module for PHP5 PHP5-tidy - tidy module for PHP5 PHP5-xmlrpc - XML-RPC module for PHP5 PHP5-xsl - XSL module for PHP5 PHP5-adodb - Extension optimising the ADOdb database abstraction library PHP5-auth-pam - A PHP5 extension for PAM authentication [...]
一旦您决定安装该模块,请键入:@H_301_7@
sudo apt-get install name of the module
通过使用空格分隔每个模块的名称,可以一次安装多个库。@H_301_7@
恭喜!你现在有LAMP在你的Droplet!@H_301_7@
第4步:结果 - 请参阅您的服务器上的PHP
虽然安装了LAMP,我们仍然可以通过创建一个快速的PHP信息页面来查看组件在线@H_301_7@
sudo nano /var/www/info.PHP
<?PHP PHPinfo(); ?>
重新启动apache以使所有更改生效:@H_301_7@
sudo service apache2 restart
访问您的PHP信息页面完成(确保您替换示例IP地址与您正确的IP地址):http://12.34.56.789/info.PHP@H_301_7@
查看更多
安装LAMP后,您可以设置的phpMyAdmin,安装WordPress,继续使用MysqL(做多一个基本的MySQL教程),创建一个SSL证书,或安装FTP服务器。@H_301_7@
原文链接:https://www.f2er.com/ubuntu/354883.html