OwnCloud
准备10.9.1的owncloud包,使用wget或者网页上直接下都行,搭配php7.4.30
#网页默认存放目录
chmod 777 /var/www/html
#存放网页数据,放在主目录
#2配置网络源<这里使用阿里云镜像>
cd /etc/yum.repos.d/
rm -f C*
curl -o CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum clean all
yum makecache
yum reploist
yum -y install gcc gcc-c++ bzip2 unzip wget vim net-tool
#查看htpd启动
systemctl enable httpd
#5 Mariadb安装
yum -y install mariadb-serversystemctl start mariadb
systemctl enable mariadb
#6初始化数据库
mysql_secure_installation
#7PHP7.4安装
yum install epel-release
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm