利用LAMP和NextCloud搭建私有云.docVIP

  • 14
  • 0
  • 约3.68千字
  • 约 9页
  • 2020-02-21 发布于江西
  • 举报
安装Apache服务 首先安装Apache服务 # yum install httpd //安装Apache服务 它问你是否继续执行当然选择y了 输入Y按回车 以后步骤都是如此就不说了 # systemctl start httpd //启动Apache服务 注: 启动、终止、重启Apache命令 # systemctl start httpd.service //启动 # systemctl stop httpd.service //停止 # systemctl restart httpd.service //重启 设置开机启动/关闭 # systemctl enable httpd.service //开机启动 # systemctl disable httpd.service //开机不启动 检查httpd状态 # systemctl status httpd.service 开放httpd 80端口,或者关闭防火墙(2选1) 永久开放80端口命令 # firewall-cmd --zone=public --add-port=80/tcp --permanent 注1:永久关闭命令(参考) # firewall-cmd --zone=public --remove-service=ftp –permanent # firewall-cmd --zone=public --remove-port=80/tcp --permanent 注2:查询服务的启用状态 # service httpd status 关闭防火墙 # systemctl stop firewalld //临时关闭 # chkconfig firewalld off //永久关闭 # firewall-cmd –reload //重启防火墙 # service firewalld restart //重启防火墙 # service firewalld status //查看防火墙的状态 在浏览器地址栏输入你服务器的IP,出现下面这个界面了,安装完成。 如果上述操作都已操作,还不能显示上面这个界面,请关闭Selinux 查看SELinux状态,两种方式都可以查询 # /usr/sbin/sestatus -v //如果SELinux status参数为enabled即为开启状态 或 # getenforce //也可以用这个命令检查 关闭SELinux: # Setenforce 0 //设置SELinux 成为permissive模式 //Setenforce 1 设置SELinux 成为enforcing模式 禁用SELinux,修改配置文件,需要重启机器 # vim /etc/selinux/config(将SELINUX=enforcing改为SELINUX=disabled) //重新机器生效 安装PHP7.0服务 替换下载源 或者 安装epel-release 替换下载源 # yum install /yum/el7/x86_64/RPMS/webtatic-release-7-3.noarch.rpm 或 安装epel-release # yum -y install epel-release 注: 如果不替换下载源或安装epel-release,在升级php7安装包会出现以下错误提示: 升级php7安装包 # rpm -Uvh?/yum/el7/webtatic-release.rpm 安装php7 # yum install php70w //安装php7 验证安装结果 #php -v //显示当前PHP版本 出现图上信息,Centos7通过yum安装成功PHP7 安装数据库,数据库选用mariadb 安装mariadb命令 # yum -y install mariadb mariadb-server 或 # yum install mariadb-server.x86_64 启动MariaDB # systemctl start mariadb 设置开机启动 # systemctl enable mariadb 设置root账户密码 # mysql_secure_installation 出现更新密码成功提示,然后一路输入y就可以; Remove anonymous users? [Y/n] y ... Success! Disallow root login remotely? [Y/n] y ... Success! Remove test database and access to it? [Y/n] y - Dropping test databas

文档评论(0)

1亿VIP精品文档

相关文档