RHELCentOSApacheLAMPMariaDB
我
是新的 Red Hat Enterprise Linux 版本 7 用户/系统管理员/开发人员。此版本对 RHEL 7/CentOS 7 进行了重大更改。如何使用 CLI 或基于 ssh 的会话在 RHEL 版本 7 或 CentOS Linux 版本 7 上安装 LAMP(Linux、Apache、MariaDB、PHP)堆栈?Tutorial details | |
---|---|
Difficulty | Easy(rss) |
Root privileges | Yes |
Requirements | CentOS/RHEL v7.x |
Estimated completion time | 20m |
RHEL 7 已经发布,CentOS Linux 7 即将推出,其中有许多显着的变化。本指南介绍如何安装 LAMP 服务器。
LAMP 只是一个软件包或一个由 Linux 操作系统、Apache Web 服务器、MySQL 数据库服务器和 PHP 组成的平台(或 Perl/Python)脚本语言。 LAMP 堆栈用于完全使用免费开源软件构建重型动态网站。在本教程中,我将解释如何在 CentOS 7 或 RHEL 7 上使用 Linux、Apache、MySQL/MariaDB(替代 MySQL)、PHP (LAMP) 堆栈。
说得够多了,让我们设置 LAMP 堆栈。
输入以下 yum 命令来安装 Apache web-server:
sudo yum install httpd
示例输出:
Loaded plugins: amazon-id, rhui-lbResolving Dependencies--> Running transaction check---> Package httpd.x86_64 0:2.4.6-17.el7 will be installed--> Processing Dependency: httpd-tools = 2.4.6-17.el7 for package: httpd-2.4.6-17.el7.x86_64--> Processing Dependency: /etc/mime.types for package: httpd-2.4.6-17.el7.x86_64--> Running transaction check---> Package httpd-tools.x86_64 0:2.4.6-17.el7 will be installed---> Package mailcap.noarch 0:2.1.41-2.el7 will be installed--> Finished Dependency Resolution Dependencies Resolved ====================================================================================================== PackageArchVersion Repository Size======================================================================================================Installing: httpdx86_642.4.6-17.el7rhui-REGION-rhel-server-releases1.2 MInstalling for dependencies: httpd-toolsx86_642.4.6-17.el7rhui-REGION-rhel-server-releases 77 k mailcapnoarch2.1.41-2.el7rhui-REGION-rhel-server-releases 31 k Transaction Summary======================================================================================================Install1 Package (+2 Dependent packages) Total download size: 1.3 MInstalled size: 3.9 MIs this ok [y/d/N]: yDownloading packages:(1/3): httpd-tools-2.4.6-17.el7.x86_64.rpm |77 kB00:00:00(2/3): httpd-2.4.6-17.el7.x86_64.rpm | 1.2 MB00:00:00(3/3): mailcap-2.1.41-2.el7.noarch.rpm |31 kB00:00:00------------------------------------------------------------------------------------------------------Total 2.0 MB/s | 1.3 MB00:00:00Running transaction checkRunning transaction testTransaction test succeededRunning transactionInstalling : httpd-tools-2.4.6-17.el7.x86_641/3Installing : mailcap-2.1.41-2.el7.noarch2/3Installing : httpd-2.4.6-17.el7.x86_643/3Verifying: mailcap-2.1.41-2.el7.noarch1/3Verifying: httpd-tools-2.4.6-17.el7.x86_642/3Verifying: httpd-2.4.6-17.el7.x86_643/3 Installed:httpd.x86_64 0:2.4.6-17.el7 Dependency Installed:httpd-tools.x86_64 0:2.4.6-17.el7 mailcap.noarch 0:2.1.41-2.el7 Complete!
确保 httpd 服务在启动时自动启动,输入:
sudo systemctl enable httpd.service
示例输出:
ln -s '/usr/lib/systemd/system/httpd.service' '/etc/systemd/system/multi-user.target.wants/httpd.service'
以下命令将在启动时禁用 httpd 服务:
sudo systemctl disable httpd.service
示例输出:
rm '/etc/systemd/system/multi-user.target.wants/httpd.service'
sudo systemctl start httpd.service
在此阶段,您可以将 Web 浏览器指向服务器的 IP 地址,例如 http:// /10.41.143.156)。屏幕上应显示以下页面:
图 01:检查 Apache 是否在 CentOS/RHEL 7 服务器上运行
sudo systemctl stop httpd.service
sudo systemctl restart httpd.service
到验证 httpd 服务是否正在运行,输入:
systemctl is-active httpd.service
示例输出:
active
sudo apachectl graceful
sudo apachectl configtest
示例输出:
Syntax OK
MariaDB MySQL 服务器的增强型直接替代品。 RHEL/CentOS v7.x 从 MySQL 转向 MariaDB 以满足其数据库管理系统需求。键入以下 yum 命令来安装 MariaDB 服务器:
sudo yum install mariadb-server mariadb
要启动 mariadb,请键入:
sudo systemctl start mariadb.service
要确保 mariadb 服务在启动时自动启动,请输入:
sudo systemctl enable mariadb.service
示例输出:
ln -s '/usr/lib/systemd/system/mariadb.service' '/etc/systemd/system/multi-user.target.wants/mariadb.service'
要停止/重新启动和禁用 mariadb 服务,请使用以下命令:
sudo systemctl stop mariadb.service #<-- Stop mariadb serversudo systemctl restart mariadb.service #<-- Restart mariadb serversudo systemctl disable mariadb.service #<-- Disable mariadb serversudo systemctl is-active mariadb.service #<-- Is mariadb server running?
键入以下命令:
sudo /usr/bin/mysql_secure_installation
示例输出:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDBSERVERS IN PRODUCTION USE!PLEASE READ EACH STEP CAREFULLY!In order to log into MariaDB to secure it, we'll need the currentpassword for the root user.If you've just installed MariaDB, andyou haven't set the root password yet, the password will be blank,so you should just press enter here.Enter current password for root (enter for none): <strong>PRESS-ENTER-KEY</strong>OK, successfully used password, moving on...Setting the root password ensures that nobody can log into the MariaDBroot user without the proper authorisation.Set root password? [Y/n] YNew password: <strong>YOUR-NEW-PASSWORD-HERE</strong>Re-enter new password: <strong>YOUR-NEW-PASSWORD-HERE</strong>Password updated successfully!Reloading privilege tables.. ... Success!By default, a MariaDB installation has an anonymous user, allowing anyoneto log into MariaDB without having to have a user account created forthem.This is intended only for testing, and to make the installationgo a bit smoother.You should remove them before moving into aproduction environment.Remove anonymous users? [Y/n] <strong>Y</strong> ... Success!Normally, root should only be allowed to connect from 'localhost'.Thisensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] <strong>Y</strong> ... Success!By default, MariaDB comes with a database named 'test' that anyone canaccess.This is also intended only for testing, and should be removedbefore moving into a production environment.Remove test database and access to it? [Y/n] <strong>Y</strong> - Dropping test database... ... Success! - Removing privileges on test database... ... Success!Reloading the privilege tables will ensure that all changes made so farwill take effect immediately.Reload privilege tables now? [Y/n] <strong>Y</strong> ... Success!Cleaning up...All done!If you've completed all of the above steps, your MariaDBinstallation should now be secure.Thanks for using MariaDB!
键入以下命令
mysql -u root -p
示例输出:
图 02:CentOS / RHEL Linux v7.x 上的 Mariadb 测试连接
要安装 PHP 和 gd/msyql 等模块,请输入以下 yum 命令:
sudo yum install php php-mysql php-gd php-pear
You must restart the httpd (Apache) service, enter:
sudo systemctl restart httpd.service
To search all other php modules, type:
sudo yum search php-
Sample outputs:
php-cli.x86_64 : Command-line interface for PHPphp-common.x86_64 : Common files for PHPphp-gd.x86_64 : A module for PHP applications for using the gd graphics libraryphp-ldap.x86_64 : A module for PHP applications that use LDAPphp-mysql.x86_64 : A module for PHP applications that use MySQL databasesphp-odbc.x86_64 : A module for PHP applications that use ODBC databasesphp-pdo.x86_64 : A database access abstraction module for PHP applicationsphp-pear.noarch : PHP Extension and Application Repository frameworkphp-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemonphp-pgsql.x86_64 : A PostgreSQL database module for PHPphp-process.x86_64 : Modules for PHP script using system process interfacesphp-recode.x86_64 : A module for PHP applications for using the recode libraryphp-soap.x86_64 : A module for PHP applications that use the SOAP protocolphp-xml.x86_64 : A module for PHP applications which use XMLphp-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
To find more info about a module type:
sudo yum info php-pgsql
To install php module called php-pgsql type:
sudo yum install php-pgsql
Create a file called /var/www/html/test.php as follows:
sudo vi /var/www/html/test.php
Append the following code:
<?php phpinfo(INFO_GENERAL);?>
Save and close the file. Point your web-browser to your server's IP address such as http://10.41.143.156/info.php (feel free to replace the 10.41.143.156 with your actual IP address):
http://10.41.143.156/info.php