CentOS6环境部署OWNCLOUD5
owncloud版本又更新了,貌似这次添加了很多功能。于是准备部门里面部署一个,平时一些资料共同维护下。——owncloud就类似与金山快盘,360云盘,百度云盘之类的产品,不过数据存在自己服务器里面。 安装过程其实很简单,首先部署mysql数据库——可参见我之前
owncloud版本又更新了,貌似这次添加了很多功能。于是准备部门里面部署一个,平时一些资料共同维护下。——owncloud就类似与金山快盘,360云盘,百度云盘之类的产品,不过数据存在自己服务器里面。
安装过程其实很简单,首先部署mysql数据库——可参见我之前的博客,其次安装httpd、php及相关组件:
<font color="#0000ff">yum -y install httpd php php-mysql unzip php-json php-xml php-mbstring php-zip php-gd curl php-curl php-pdo php-intl mod-ssl</font>
然后下载owncloud5.0版本
<font color="#0000ff">tar -xjf owncloud-5.0.0.tar.bz2</font>
<font color="#0000ff">mv owncloud /opt/www/owncloud</font>
<font color="#0000ff">chown -R apache.apche /opt/www/owncloud</font>
配置httpd.conf文件,将DocumentRoot指向/opt/www/owncloud,访问http://ip/owncloud/
可以点击“进阶”选择mysql数据库,填入用户名/密码/数据库名即可,安装成功后显示:
OK了,下面才是关键啊!安装好要配置的吧:
1、修改上传文件大小限制
<font color="#0000ff">vim /etc/php.ini</font>
<font color="#000000">修改里面upload_max_filesize和post_max_size大小,然后重启httpd </font>
2、修改web界面语言
在web界面,右上角选择如图“私人”进入选择用户语言
3、创建用户权限设置
这步比较悲剧,我创建的用户,创建的组,你妹各个都能看到和再次新建用户…官方文档找不到,官方论坛也没有…后来查数据库,终于找到了,进入oc_group_admin,把里面的列表清空!
终于,终于ok了!!!!!其他剩下的就是各种app安装配置了。下次再说。
原创文章,转载请注明: 转载自三叶草
本文链接地址:http://www.anjing.me/1441.html
特别声明:商业网站转载需经作者同意,否则视为侵权!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Windows Recovery Environment (WinRE) is an environment used to repair Windows operating system errors. After entering WinRE, you can perform system restore, factory reset, uninstall updates, etc. If you are unable to boot into WinRE, this article will guide you through fixes to resolve the issue. Unable to boot into the Windows Recovery Environment If you cannot boot into the Windows Recovery Environment, use the fixes provided below: Check the status of the Windows Recovery Environment Use other methods to enter the Windows Recovery Environment Did you accidentally delete the Windows Recovery Partition? Perform an in-place upgrade or clean installation of Windows below, we have explained all these fixes in detail. 1] Check Wi

In this article, we will learn about the differences between Python and Anaconda. What is Python? Python is an open source language that places great emphasis on making the code easy to read and understand by indenting lines and providing whitespace. Python's flexibility and ease of use make it ideal for a variety of applications, including but not limited to scientific computing, artificial intelligence, and data science, as well as creating and developing online applications. When Python is tested, it is immediately translated into machine language because it is an interpreted language. Some languages, such as C++, require compilation to be understood. Proficiency in Python is an important advantage because it is very easy to understand, develop, execute and read. This makes Python

How to use JenkinsPipeline to build a continuous packaging and deployment process for PHP programs? Jenkins is a very popular continuous integration and deployment tool. It provides a wealth of plug-ins and functions to make the build and deployment process simple and efficient. JenkinsPipeline is the latest plug-in for Jenkins, which allows us to use a complete and extensible DSL (DomainSpecificLanguage) to define continuous integration and deployment.

How to deploy a trustworthy web interface on a Linux server? Introduction: In today's era of information explosion, Web applications have become one of the main ways for people to obtain information and communicate. In order to ensure user privacy and information reliability, we need to deploy a trustworthy Web interface on the Linux server. This article will introduce how to deploy a web interface in a Linux environment and provide relevant code examples. 1. Install and configure the Linux server. First, we need to prepare a Li

How to use Docker containerization to deploy applications in FastAPI Introduction: Docker is a containerization technology that packages applications and their dependencies into an independent, portable container to achieve rapid deployment and expansion. FastAPI is a modern, high-performance web framework based on Python that provides a simple and fast API development experience. This article will introduce how to use Docker containerization to deploy applications in FastAPI and provide corresponding code examples.

1. Introduction Over the past few years, YOLOs have become the dominant paradigm in the field of real-time object detection due to its effective balance between computational cost and detection performance. Researchers have explored YOLO's architectural design, optimization goals, data expansion strategies, etc., and have made significant progress. At the same time, relying on non-maximum suppression (NMS) for post-processing hinders end-to-end deployment of YOLO and adversely affects inference latency. In YOLOs, the design of various components lacks comprehensive and thorough inspection, resulting in significant computational redundancy and limiting the capabilities of the model. It offers suboptimal efficiency, and relatively large potential for performance improvement. In this work, the goal is to further improve the performance efficiency boundary of YOLO from both post-processing and model architecture. to this end

How to solve the problem that Tomcat cannot successfully access the war package after deploying it requires specific code examples. As a widely used Java Web server, Tomcat allows developers to package their own developed Web applications into war files for deployment. However, sometimes we may encounter the problem of being unable to successfully access the war package after deploying it. This may be caused by incorrect configuration or other reasons. In this article, we'll provide some concrete code examples that address this dilemma. 1. Check Tomcat service

How to deploy Flask application using Gunicorn? Flask is a lightweight Python Web framework that is widely used to develop various types of Web applications. Gunicorn (GreenUnicorn) is a Python-based HTTP server used to run WSGI (WebServerGatewayInterface) applications. This article will introduce how to use Gunicorn to deploy Flask applications, with
