手机版
你好,游客 登录 注册 搜索
背景:
阅读新闻

CentOS7下Nginx+ownCloud+PHP+MySQL搭建个人私有云

[日期:2015-05-05] 来源:Linux社区  作者:linuxu [字体: ]

CentOS 7.1 1053最小化安装LNMP通过yum安装,由于CentOS 7没有MySQL的yum源,所以要自己安装MySQL的yum源,但是安装上了,在我这yum安装只有几十K的速度,所以干脆去yum源里下载了mysql-server的rpm包,然后通过yum安装的rpm包,省了不少时间,LNMP的搭建参考下面的连接,记着关闭selinux不然会提示File not found。

CentOS 6.4 下的LNMP 生产环境搭建及安装脚本 http://www.linuxidc.com/Linux/2013-11/92428.htm

生产环境实用之LNMP架构的编译安装+SSL加密实现 http://www.linuxidc.com/Linux/2013-05/85099.htm

LNMP 全功能编译安装 for CentOS 6.3笔记 http://www.linuxidc.com/Linux/2013-05/83788.htm

CentOS 6.3 安装LNMP (PHP 5.4,MyySQL5.6) http://www.linuxidc.com/Linux/2013-04/82069.htm

在部署LNMP的时候遇到Nginx启动失败的2个问题 http://www.linuxidc.com/Linux/2013-03/81120.htm

一、下载owncloud并解压的网站目录
[root@node3 ~]# axel https://download.owncloud.org/community/owncloud-8.0.3.tar.bz2

二、添加nginx虚拟主机
这个配置文件用百度找了半天都不行,最后用谷歌一下就找到了……之前去官网的文档里没找到,谷歌搜出来的……官网有两种配置一种开启ssl的,还有如何修改为没有ssl的,这里我贴出我自己使用的没有使用ssl的配置文件。
upstream php-handler {
  server 127.0.0.1:9000;
  #server unix:/var/run/php5-fpm.sock;
  }
server {
  listen 8080;
  server_name cloud.example.com;
  # Path to the root of your installation
  root /usr/share/nginx/html/owncloud/;
  # set max upload size
  client_max_body_size 10G;
  fastcgi_buffers 64 4K;
  # Disable gzip to avoid the removal of the ETag header
  gzip off;
  # Uncomment if your server is build with the ngx_pagespeed module
  # This module is currently not supported.
  #pagespeed off;
  rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect;
  rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect;
  rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect;
  index index.php;
  error_page 403 /core/templates/403.php;
  error_page 404 /core/templates/404.php;
  location = /robots.txt {
    allow all;
    log_not_found off;
    access_log off;
    }
location ~ ^/(?:\.htaccess|data|config|db_structure\.xml|README){
    deny all;
    }
  location / {
  # The following 2 rules are only needed with webfinger
  rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
  rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;
  rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
  rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;
  rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;
  try_files $uri $uri/ /index.php;
  }
  location ~ \.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_pass php-handler;
  }
  # Optional: set long EXPIRES header on static assets
  location ~* \.(?:jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
      expires 30d;
      # Optional: Don't log access to assets
        access_log off;
  }
  }

三,重启nginx并访问
访问会出错,提示缺少必须的php模块,执行如下命令即可,记得重启php-fpm。

[root@localhost ~]# yum install -y php-dom php-xmlwriter php-gd

再次刷新就可以了
四、配置数据库
mysql> grant all on *.* to 'everyoo'@'%' identified by 'everyoo';
Query OK, 0 rows affected (0.03 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.02 sec)

再次提示错误,权限问题,缺少data目录

[root@localhost owncloud]# mkdir data
[root@localhost owncloud]# chown -R apache.apache .

再次访问,不知道为什么我用localhost和127.0.0.1总是不行。

只好用了本机的ip地址,但是还是会报错,出现了一个加了前缀的数据库用户,并不是我填写的那个。

只要去修改配置文件为创建的那个就可以了。

[root@localhost owncloud]# vim config/config.php

再次配置就可以了。

Ubuntu上安装OwnCloud 7.0.4  http://www.linuxidc.com/Linux/2015-01/111710.htm

CentOS 6.3搭建个人私有云存储ownCloud http://www.linuxidc.com/Linux/2014-03/98757.htm

在Ubuntu 12.04 LTS上安装ownCloud 4.0.6平台 http://www.linuxidc.com/Linux/2012-08/68297.htm

CentOS 6.2下安装ownCloud 4.0图解 http://www.linuxidc.com/Linux/2013-03/80994.htm

Ubuntu 12.04下使用ownCloud搭建私人存储云 http://www.linuxidc.com/Linux/2013-08/89380.htm

Ubuntu/Debian/CentOS/Fedora/OpenSUSE 及衍生系统如何安装 OwnCloud 6 http://www.linuxidc.com/Linux/2014-06/102679.htm

更多CentOS相关信息见CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14

本文永久更新链接地址http://www.linuxidc.com/Linux/2015-05/117086.htm

linux
相关资讯       ownCloud 
本文评论   查看全部评论 (0)
表情: 表情 姓名: 字数

       

评论声明
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款