以CentOS 7、MariaDB、PHP 7、Nginx为环境部署Nextcloud。
一、安装操作系统首先安装操作系统,Nextcloud只支持Linux,由于个人习惯的原因,选择了CentOS 7,使用最小化安装(为了保证之后的步骤能在只有最小化安装的VPS上重现,也为了节约硬件资源)。
最小化的CentOS 7安装完毕后,默认是没有启用网卡的,在本地登录系统后,首先进入网络配置目录,列出目录中的网卡配置文件
cd /etc/sysconfig/network-scripts/ ll | grep ifcfg-运行结果
[root@localhost network-scripts]# cd /etc/sysconfig/network-scripts/ [root@localhost network-scripts]# ll | grep ifcfg -rw-r--r--. 1 root root 312 Aug 30 10:01 ifcfg-enp0s3 -rw-r--r--. 1 root root 254 Sep 12 2016 ifcfg-lo除了ifcfg-lo以外的那个文件就是网卡配置文件,具体名称可能会有所不同。
然后使用vi编辑该文件,将最后一行“ONBOOT=no”改成“ONBOOT=yes”并保存退出。
通过命令重启网络服务,是配置生效
service network restart如果不想通过DHCP动态获取IP地址,也可以在网络配置文件中添加以下配置项指定网络参数
IPADDR0=192.168.21.128 #设置IP地址 PREFIXO0=24 #设置子网掩码 GATEWAY0=192.168.21.2 #设置网关 DNS1=8.8.8.8 #设置主DNS DNS2=8.8.4.4 #设置备DNS网卡启用后,就可以通过SSH远程操作、通过yum方便的安装程序了。
查看ip地址,可以通过ip命令
ip addr 二、安装配置环境 1、安装基本工具安装yum额外源、wget、unzip、gcc等基本工具
yum -y install epel-release wget unzip gcc yum -y install libsmbclient libsmbclient-devel redis关闭SELinux,可先通过sestatus -v命令查看SELinux是否开启
/usr/sbin/sestatus -v修改/etc/selinux/config,将’SELINUX=enforcing’改为’SELINUX=disabled’,重启系统即可生效,或者本次可以使用’setenforce 0’临时关闭。
2、安装MariaDB通过yum安装MariaDB
yum -y install mariadb mariadb-server开启、启动服务,运行管理工具
systemctl enable mariadb.service systemctl start mariadb.service MySQL_secure_installationmysql_secure_installation的输入如下,牢记自己的数据库root密码
Set root password? [Y/n] Y New password: Re-enter new password: Remove anonymous users? [Y/n] Y Disallow root login remotely? [Y/n] Y Remove test database and access to it? [Y/n] Y Reload privilege tables now? [Y/n] Y登录到mysql shell为Nextcloud创建用户和数据库。
mysql -u root -p验证root密码后,在mysql shell执行
create database nextcloud_db; create user nextclouduser@localhost identified by 'nextclouduser@'; grant all privileges on nextcloud_db.* to nextclouduser@localhost identified by 'nextclouduser@'; flush privileges; exit这样就创建了一个nextcloud_db数据库和nextclouduser用户,用户密码为’nextclouduser@’。
3、安装Nginx通过yum安装Nginx
yum -y install nginx mkdir /var/www chown -R nginx:nginx /var/www开启、启动Nginx服务
systemctl enable nginx.service systemctl start nginx.service使用nginx -s reload可以重载配置而不需要重启nginx
开放防火墙HTTP、HTTPS端口
firewall-cmd --permanent --add-service=http firewall-cmd --permanent --add-service=https systemctl restart firewalld 4、安装PHP