Nextcloud 개인 클 라 우 드 배치

Nextcloud 개인 클 라 우 드 배치
CentOS 7, MariaDB, PHP 7, Nginx 를 환경 으로 넥 스 트 클 라 우 드 를 배치한다.
운영 체제 설치
먼저 운영 체 제 를 설치 하고 넥 스 트 클 라 우 드 는 리 눅 스 만 지원 하 며, 개인 습관 상 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

2. 설치 설정 환경
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_installation

mysql_secure_installation 의 입력 은 다음 과 같 습 니 다. 자신의 데이터베이스 루트 비밀 번 호 를 기억 하 십시오.
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

my sql 셸 에 로그 인하 여 Nextcloud 에 사용자 와 데이터 베 이 스 를 만 듭 니 다.
mysql -u root -p

루트 암 호 를 검증 한 후 my sql 셸 에서 실행 합 니 다.
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 설치
PHP7 - FPM webtatic 창 고 를 추가 하고 phop 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

편집 / etc / php - fpm. d / www. conf
;  user group   ,   8   
user = nginx
group = nginx

;        ,    370   
env[HOSTNAME] = $HOSTNAME
env[PATH] = /usr/local/bin:/usr/bin:/bin
env[TMP] = /tmp
env[TMPDIR] = /tmp
env[TEMP] = /tmp

관련 디 렉 터 리 만 들 기, 관련 디 렉 터 리 권한 수정
mkdir -p /var/lib/php/session 
chown -R nginx:nginx /var/lib/php/session/
vi /etc/php.d/opcache.ini

/ 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. Nextcloud 설치
1. ww 디 렉 터 리 에 다운로드 및 압축 풀기
wget https://download.nextcloud.com/server/releases/nextcloud-12.0.2.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 서비스 프로필 / 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 로 접근 하면 초기 설정 페이지 가 나타 나 는데, 여기에 넥 스 트 클 라 우 드 관리자 아 이 디 와 비밀 번 호 를 설정 한 다음 사용 하 는 데이터 베 이 스 를 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. 메모리 캐 시 열기
메모리 캐 시 를 켜 면 응답 속 도 를 높 일 수 있 습 니 다.이전에 저 희 는 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 파일, 설정 에 추가
'memcache.local' => '\OC\Memcache\APCu',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
     'host' => 'localhost',
     'port' => 6379,
      ),

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

좋은 웹페이지 즐겨찾기