共计 3491 个字符,预计需要花费 9 分钟才能阅读完成。
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