CentOS 7 nextcloud 설정

1. 시스템 설치 & 네트워크 설정
· 우선 CentOS 7 64 비트 시스템 설 치 · 설치 시 최소 화 설 치 · 시스템 설치 완료 후 네트워크 카드 정보 조회
IP ADDR

· 네트워크 카드 정 보 를 eno 1 로 조회 하고 네트워크 카드 설정 디 렉 터 리 에 들 어가 네트워크 정 보 를 설정 합 니 다.
cd /etc/sysconfig/network-scripts/
vi ifcfg-eno1

· 프로필 을 열 고 다음 내용 을 변경 하고 추가 합 니 다
BOOTPROTO=static  #dhcp  static    IP  
ONBOOT=no  # no  yes
IPADDR=192.168.1.21  #  IP  
PREFIXO=24  #      
GATEWAY=192.168.1.1  #    
DNS1=8.8.8.8  #   DNS
DNS2=8.8.4.4  #   DNS

· esc 편집 모드 종료,: wq 저 장 · 시작 네트워크 카드
ifup eno1

· 네트워크 카드 재 부팅
service network restart

· ping www. baidu. com 인증 네트워크 를 시도 할 수 있 습 니 다.
2. LNAP 실행 환경 설정
1. yum 명령 으로 기본 도구 wget unzip gcc 설치
yum -y install epel-release wget unzip gcc

설치 완료 후 SElinux 를 닫 아야 합 니 다. sestatus - v 명령 을 통 해 SELinux 가 열 렸 는 지 확인 할 수 있 습 니 다.
/usr/sbin/sestatus -v

수정 / etc / selinux / config, 'SELINUX = enforcing' 을 'SELINUX = disabled' 로 변경 하고 리 셋 시스템 을 저장 하면 효력 이 발생 하거나, 이번 에는 'setenforce 0' 을 사용 하여 임시 종료 할 수 있 으 므 로 직접 닫 는 것 을 권장 합 니 다.
2. Nginx 설치
yum -y install epel-release
yum -y install nginx
mkdir /var/www
chown -R nginx:nginx /var/www

nextcloud 데이터 디 렉 터 리 만 들 기
mkdir /data/nextcloud/data
chown -R nginx:nginx /data/nextcloud/data

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

2. PHP 7 을 설치 하고 PHP 7 - FPM webtatic 창 고 를 추가 하 며 php 7 주체 와 nextcloud 를 설치 하 는 데 필요 한 모듈 을 설치 합 니 다.
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum -y install php71w-fpm php71w-cli php71w-gd php71w-mcrypt php71w-mysql php71w-pear php71w-xml php71w-mbstring php71w-pdo php71w-json php71w-opcache php71w-pecl-apcu php71w-pecl-apcu-devel php71w-pecl-igbinary php71w-pecl-igbinary-devel php71w-pecl-imagick php71w-pecl-imagick-devel php71w-pecl-redis php71w-pecl-redis-devel
vi /etc/php-fpm.d/www.conf

PHP 7 설치 완료 후 편집 / etc / php - fpm. d / www. conf
vi /etc/php-fpm.d/www.conf
;   8     10 ,user   group     nginx。
user = nginx
group = nginx

;   22  ,   php-fpm        。
listen = 127.0.0.1:9000

;    366-370     ,   php-fpm        。
env[HOSTNAME] = $HOSTNAME
env[PATH] = /usr/local/bin:/usr/bin:/bin
env[TMP] = /tmp
env[TMPDIR] = /tmp
env[TEMP] = /tmp

/ var / lib / 디 렉 터 리 에 새 폴 더 session 을 만 들 고 소유 자 를 nginx 사용자 로 변경 합 니 다.
mkdir -p /var/lib/php/session
chown nginx:nginx -R /var/lib/php/session/

/ etc / php. d / opcache. ini 를 수정 하여 다음 줄 의 설명 을 제거 하고 해당 하 는 설정 값 으로 변경 합 니 다.
vi /etc/php.d/opcache.ini
zend_extension=opcache.so
opcache.enable=1
opcache.enable_cli=1
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=10000
opcache.revalidate_freq=1
opcache.save_comments=1

smbclient 확장 모듈 설치
yum -y install libsmbclient libsmbclient-devel
pecl install smbclient
vi /etc/php.d/smbclient.ini

새 / etc / php. d / mbclient. ini 를 만 들 고 다음 내용 을 추가 하여 저장 합 니 다.
extension=smbclient.so

php - fpm 를 시작 하여 부팅 에 따 른 서비스 로 설정 합 니 다.
systemctl enable php-fpm.service
systemctl start php-fpm.service

3. MariaDB 설치 yum 을 통 해 MariaDB 설치
yum -y install mariadb mariadb-server

서비스 오픈, 시작,
systemctl enable mariadb.service
systemctl start mariadb.service

실행 관리 도구
mysql_secure_installation

mysql_secure_installation 입력 후 비밀 번 호 를 설정 할 지 여 부 를 직접 확인 하고 y 를 입력 하 며 루트 비밀 번 호 를 설정 하고 자신의 데이터베이스 루트 비밀 번 호 를 기억 합 니 다.
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

다음은 nextcloud 에 데이터베이스 및 사용 자 를 만 들 기 위해 먼저 데이터베이스 에 로그 인 합 니 다.
mysql -u root -p

암호 가 정확 한 지 확인 한 후 mysql 셸 명령 줄 에 로그 인하 여 다음 명령 을 입력 하여 데이터베이스 와 사용 자 를 만 듭 니 다.
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

다음 데이터베이스 생 성: nextclouddb 사용자: nextclouduse 비밀번호: nextclouduser @
3. nextcloud 프로그램 다운로드 및 설정
1. nextcloud 를 다운로드 하고 ww 디 렉 터 리 로 압축 풀기
wget https://download.nextcloud.com/server/releases/nextcloud-12.0.4.zip
unzip nextcloud-12.0.2.zip
mv nextcloud /var/www/
chown -R nginx:nginx /var/www

2, 자체 서명 SSL 인증서 생 성
mkdir -p /etc/nginx/cert/
openssl req -new -x509 -days 365 -nodes -out /etc/nginx/cert/nextcloud.crt -keyout /etc/nginx/cert/nextcloud.key
chmod 700 /etc/nginx/cert
chmod 600 /etc/nginx/cert/*

3. Nginx 설정 nginx. conf 에서 nginx 서비스 설정 파일 / etc / nginx / nginx. conf 를 다음 내용 으로 변경 하고 "yorname. domain" 을 자신의 도 메 인 이름 으로 변경 하 며 client 를 수정 합 니 다.max_body_size 는 업로드 가능 한 최대 파일 크기 를 설정 할 수 있 습 니 다.
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    upstream php-handler {
        server 127.0.0.1:9000;
        #server unix:/var/run/php5-fpm.sock;
    }

    server {
        listen 80;
        server_name yourname.domain;
        # enforce https
        return 301 https://$server_name$request_uri;
    }

    server {
        listen 443 ssl http2;
        server_name yourname.domain;

        ssl_certificate /etc/nginx/cert/nextcloud.crt;
        ssl_certificate_key /etc/nginx/cert/nextcloud.key;

        # Add headers to serve security related headers
        # Before enabling Strict-Transport-Security headers please read into this
        # topic first.
        # add_header Strict-Transport-Security "max-age=15768000;
        # includeSubDomains; preload;";
        #
        # WARNING: Only add the preload option once you read about
        # the consequences in https://hstspreload.org/. This option
        # will add the domain to a hardcoded list that is shipped
        # in all major browsers and getting removed from this list
        # could take several months.
        add_header X-Content-Type-Options nosniff;
        add_header X-XSS-Protection "1; mode=block";
        add_header X-Robots-Tag none;
        add_header X-Download-Options noopen;
        add_header X-Permitted-Cross-Domain-Policies none;

        # Path to the root of your installation
        root /var/www/nextcloud/;

        location = /robots.txt {
            allow all;
            log_not_found off;
            access_log off;
        }

        # The following 2 rules are only needed for the user_webfinger app.
        # Uncomment it if you're planning to use this app.
        #rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
        #rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json
        # last;

        location = /.well-known/carddav {
        return 301 $scheme://$host/remote.php/dav;
        }
        location = /.well-known/caldav {
        return 301 $scheme://$host/remote.php/dav;
        }

        # set max upload size
        client_max_body_size 512M;
        fastcgi_buffers 64 4K;

        # Enable gzip but do not remove ETag headers
        gzip on;
        gzip_vary on;
        gzip_comp_level 4;
        gzip_min_length 256;
        gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
        gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;

        # Uncomment if your server is build with the ngx_pagespeed module
        # This module is currently not supported.
        #pagespeed off;

        location / {
            rewrite ^ /index.php$uri;
        }

        location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
            deny all;
        }
        location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
            deny all;
        }

        location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+)\.php(?:$|/) {
            fastcgi_split_path_info ^(.+\.php)(/.*)$;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_param PATH_INFO $fastcgi_path_info;
            fastcgi_param HTTPS on;
            #Avoid sending the security headers twice
            fastcgi_param modHeadersAvailable true;
            fastcgi_param front_controller_active true;
            fastcgi_pass php-handler;
            fastcgi_intercept_errors on;
            fastcgi_request_buffering off;
        }

        location ~ ^/(?:updater|ocs-provider)(?:$|/) {
            try_files $uri/ =404;
            index index.php;
        }

        # Adding the cache control header for js and css files
        # Make sure it is BELOW the PHP block
        location ~ \.(?:css|js|woff|svg|gif)$ {
            try_files $uri /index.php$uri$is_args$args;
            add_header Cache-Control "public, max-age=15778463";
            # Add headers to serve security related headers (It is intended to
            # have those duplicated to the ones above)
            # Before enabling Strict-Transport-Security headers please read into
            # this topic first.
            add_header Strict-Transport-Security "max-age=15768000;
            #  includeSubDomains; preload;";
            #
            # WARNING: Only add the preload option once you read about
            # the consequences in https://hstspreload.org/. This option
            # will add the domain to a hardcoded list that is shipped
            # in all major browsers and getting removed from this list
            # could take several months.
            add_header X-Content-Type-Options nosniff;
            add_header X-XSS-Protection "1; mode=block";
            add_header X-Robots-Tag none;
            add_header X-Download-Options noopen;
            add_header X-Permitted-Cross-Domain-Policies none;
            # Optional: Don't log access to assets
            access_log off;
        }

        location ~ \.(?:png|html|ttf|ico|jpg|jpeg)$ {
            try_files $uri /index.php$uri$is_args$args;
            # Optional: Don't log access to other assets
            access_log off;
        }
    }

}

Nginx 설정 다시 불 러 오기
nginx -s reload

4. 초기 화
도 메 인 이름 이나 설 정 된 IP 접근 을 사용 하면 초기 설정 페이지 가 나타 납 니 다. 첫 페이지 에 Nextcloud 관리자 의 사용자 이름과 비밀 번 호 를 설정 한 다음 에 사용 할 데이터 베 이 스 를 MySQL / MariaDB 로 선택 하고 이전에 데이터 베 이 스 를 설 정 했 을 때의 사용자 이름 (nextclouduser), 비밀번호 (nextclouduser @), 데이터 베이스 이름 (nextcloud db) 을 입력 합 니 다.그리고 초기 화 를 확인 하고 사용 할 수 있 습 니 다.
5. 신뢰 도 메 인 네 임 Nextcloud 자체 의 보안 메커니즘 을 추가 하면 방문 한 도 메 인 네 임 을 검사 합 니 다. 신뢰 도 메 인 네 임 에 설정 되 어 있 지 않 으 면 신뢰 하지 않 는 도 메 인 네 임 을 통 해 접근 하고 있 음 을 알려 줍 니 다.
Nextcloud 초기 화 완료 후 "/ var / www / nextcloud / config / config. php" 프로필 이 생 성 됩 니 다.domains' 설정 항목 은 신뢰 도 메 인 이름 입 니 다. 초기 화 완료 후 호스트 의 IP 주소 만 있 습 니 다.이 설정 항목 을 수정 하고 바 인 딩 된 도 메 인 이름 을 추가 할 수 있 습 니 다.
'trusted_domains' => 
array (
  0 => '192.168.56.101',
  1 => 'yourname.domain',
),

6. 메모리 Redis 캐 시 설치 및 열기
메모리 캐 시 를 켜 면 응답 속 도 를 높 일 수 있 습 니 다.이전에 저 희 는 yum 을 통 해 redis 서 비 스 를 설 치 했 습 니 다. pecl 을 통 해 phop 의 apcu, redis 구성 요 소 를 설 치 했 습 니 다. 다음은 redis 를 시스템 서비스 로 설정 한 다음 에 Nextcloud 의 설정 을 수정 하 겠 습 니 다.
redis 서비스 설치, 설정, 서비스 자동 시작, 시작 서비스 설정
yum -y install redis
systemctl enable redis
systemctl start redis

수정 / var / www / nextcloud / config / config. php 파일, 설정 에 다음 내용 추가
vi /var/www/nextcloud/config/config.php
'memcache.local' => '\OC\Memcache\APCu',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
     'host' => 'localhost',
     'port' => 6379,
      ),

Nginx 설정 다시 불 러 오기
nginx -s reload

이로써 nextcloud 설치 가 모두 완료 되 었 습 니 다.

좋은 웹페이지 즐겨찾기