检查CentOS版本:<code>cat /etc/centos-release</code>
我的运行结果是:CentOS Linux release 7.2.1511 (Core)安装Apache:<code>yum install httpd</code>
启动服务:<code>service httpd start</code>
停止服务:<code>service httpd stop</code>
重启服务:<code>service httpd restart</code>安装PHP 7.0
+安装epel-release:<code>rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm</code>
+安装PHP7的rpm源:<code>rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm</code>
+安装PHP7: <code>yum install php70w</code>安装MySQL(CentOS 7.0+ 安装mariadb):<code>yum install mariadb-server -y</code>
MySQL的启动与关闭(MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可 MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能轻松成为MySQL的代替品):
启动MySQL:<code>systemctl start mariadb.service</code>
创建链接:<code>systemctl enable mariadb.service</code>
停止MySQL:<code>systemctl start mariadb.service</code>
重启MySQL:<code>systemctl restart mariadb.service</code>在客户端的浏览器输入服务的IP地址,验证Apache服务安装是否成功。
安装图形界面
作为服务器的操作系统,CentOS经常是采用最小化安装(minimal CentOS)。之后如果想安装桌面环境也是十分方便。
- yum的group命令
yum可以以程序组的模式来安装成套的软件包。支持的软件包可以通过命令查询:
<code># yum grouplist</code>
对于CentOS,有KDE Plasma Workspaces和Gnome Desktop两大桌面环境。 - 安装图形桌面环境
安装KDE桌面环境命令:
<code>yum groupinstall "KDE Plasma Workspaces"</code>
启动KDE桌面
<code>startkde &</code>
*以上命令也适用于RHEL 7.