Remember a CentOS7 deployment of kodexplorer private network disk

1. Introduction

KodExplorer, formerly known as Mango Cloud, is a private cloud and online file management system based on Web technology. Committed to providing users with secure, controllable, reliable, easy-to-use, and highly scalable private cloud solutions. Users can use KodExplorer to quickly complete the deployment and construction of the private cloud/private network disk/online document management system by simply setting up the environment. Kedaoyun provides a classic Windows-like user interface, which continues the user interface, operation logic and usage habits of the windows platform, supports online previews of more than 100 file formats, and solves online file storage and management, sharing and cross-platform access, and online A series of issues such as office audio, video and entertainment make users' private cloud products have the same convenient, fast and safe experience as local operations.

Full platform support: Linux, Windows, Mac; only need php5 or higher server environment.

Official website

https://kodcloud.com/

download

https://gitee.com/kalcaddle/KODExplorer

2. Features

  • Use the experience like using the operating system, right-click operation, drag and drop, shortcut keys...
  • Box selection, drag and drop to move, drag and drop to upload, online editor, audio and video player, decompression. Comprehensive ajax guarantees performance and experience!
  • Various functions are directly and seamlessly connected; exist in the form of dialog boxes, multi-task management and other functions
  • Complete Chinese support to solve garbled characters in various situations;

Three, function introduction

  • Convenient file selection: single selection, mouse frame selection, shift continuous selection, ctrl optional selection, keyboard up and down, left and right, home, end selection; at the same time, it supports the keyboard letter shortcut location file function similar to windows
  • File operation: After selecting the file, you can copy, cut, delete, view attributes, compress, rename, open preview and other operations...
  • File upload: batch upload of multiple files; html5 drag and drop upload (drag and drop to the window for seamless upload)
  • Right-click function: file right-click, folder right-click, right-click operation after multiple selection, desktop right-click, tree directory right-click operation, right-click menu binding shortcut keys (select all-copy-cut-paste-delete-rename , Settings...)
  • File browsing: list mode, icon mode; double-click to enter sub-folders; address bar operations; open folders to record contrarian operation records (forward and backward)
  • Drag and drop operation: drag and drop after selection to realize the function of cutting to the specified folder; support drag and drop to folder, address bar path, recycle bin, left tree directory, etc.
  • Shortcut key operation: delete delete, ctrl+A select all, ctrl+C copy, ctrl+X cut, up/down/left/right/home/end select files, etc., almost restore all shortcut key operations of windows
  • Powerful view: integrated windows and mac system file management, integrated icon mode, list mode, and column mode; greatly facilitates the operating experience in different scenarios
  • Multi-user support, custom role groups.
  • Clipboard: copy, cut, paste, clear
  • Favorites: add files and folders to favorites
  • Quick sharing: Share files or folders with others.
  • Search: supports quick search of files and folders; also supports full-text search of text file contents; search results directly jump to the corresponding line of the file
  • Upload: Support file multi-selection upload, folder upload, drag and drop files, direct folder upload (webkit kernel); support breakpoint resumable upload, automatic upload in blocks
  • Offline download: support download link to download directly to server
  • Download: support multiple selection or direct download from folder; download supports resumable download and multi-thread download
  • Online decompression: Full-featured online decompression: zip, rar, 7z, tar, gzip, tgz; and perfectly solves the problem of garbled Chinese decompression in the linux to windows compressed package
  • Other features: perfect solution to various system Chinese garbled problems; natural sorting of file names; automatic calculation of the number and size of selected files; automatic thumbnail display of pictures

Fourth, online preview

  • Open method support: you can choose the corresponding open method associated with the extension, and you can expand various file opening methods by installing plug-ins;
  • Text file: view, edit and save the content of the text file;
  • Picture files: automatically generate thumbnails, picture slide shows;
  • Audio playback: online music and video files; support mp3, wav, wma, m4a, aac, oga, ogg, webma, wav and other common formats
  • Video playback: online video file playback, support formats: flv, f4v, mp4, mkv, wmv, rmvb, vob, webm, webmv and other video formats
  • Office documents: support online preview of various file formats under pdf, word, excle, and ppt
  • Compressed files: support zip, rar, 7z, tar, gzip, tgz and other compressed files to preview directly online, without first decompressing; you can open the files in the compressed package, and support the selection of opening methods
  • Engineering documents: support AutoCAD various drawing formats, 3d model online preview
  • Other documents: swf, pdf, epub and other files to achieve online preview support

Five, the editor

  • Syntax highlighting in more than 120 languages, automatic error correction in some programming languages; support html, js, php and other language code formatting
  • Support multiple tags: edit multiple files at the same time, drag the tags to switch the order; support the maximize mode
  • automatic completion
  • Multi-cursor support: Supports simultaneous editing of multiple cursors, drag and drop in the middle of the mouse to directly select multiple cursors
  • Theme switching: choose your favorite programming style
  • Web development: Support Emmet plug-in (html/js/css) for extremely fast programming
  • Quick preview: Support quick preview of html, php and other file results
  • Find and replace; Undo/Undo, maintain history records; Support regular expression search and replace
  • Automatic completion [], {}, (), "","; automatic line wrapping, custom fonts, mouse drag and drop text, code folding and many other useful functions
  • Markdown support: support syntax highlighting, shortcut toolbar; support real-time preview; support advanced features such as latex formulas, flowcharts, sequence diagrams, Gantt charts, class diagrams, etc.

Six, installation and deployment

1. Install Ali yum source

[root@localhost ~]# yum install -y wget 
[root@localhost ~]# mkdir /etc/yum.repos.d/bak/
[root@localhost ~]# mv /etc/yum.repos.d/*po /etc/yum.repos.d/bak/
[root@localhost ~]# wget -O /etc/yum.repos.d/CenOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

2. Install basic tools

[root@localhost ~]# yum install -y vim wget rpm zip unzip tree httpd git net-tools php php-mbstring php-gd php56w-cli php56w-common php56w-fpm php56w-gd php56w-mbstring php56w-xml php56w php56w-opcache
[root@localhost ~]# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
[root@localhost ~]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

3. Firewall operation

# 停止防火服务
[root@localhost ~]# systemctl stop firewalld
# 查看防火墙的当前状态
[root@localhost ~]# systemctl status firewalld
# 开机禁止启动防火墙
[root@localhost ~]# systemctl disable firewalld

Or the firewall opens the designated port

https://blog.csdn.net/llwy1428/article/details/99676257

4. Configure SELINUX

#重启后永久生效
[root@localhost ~]# vi /etc/selinux/config
SELINUX=disabled
#临时生效
[root@localhost ~]# setenforce 0

5. Create a directory

[root@localhost ~]# mkdir -p /var/www/html/kodcloud/
[root@localhost ~]# cd  /var/www/html/kodcloud/

6. Download the installer and grant permissions

[root@localhost kodcloud# wget wget http://static.kodcloud.com/update/download/kodexplorer4.37.zip
[root@localhost kodcloud]# unzip wget http://static.kodcloud.com/update/download/kodexplorer4.37.zip
[root@localhost kodcloud]# chmod 755 -R /var/www/html/kodcloud/*

7. View the catalog

[root@localhost ~]# ll /var/www/html/kodcloud/

8. Modify the configuration file of httpd

[root@localhost ~]# vi /etc/httpd/conf/httpd.conf
DocumentRoot /var/www/html 改为:DocumentRoot "/var/www/html/kodcloud"
<Directory "/var/www/html/"> 改为:<Directory "/var/www/html/kodcloud">

9. Start/restart httpd service

[root@localhost ~]# systemctl restart httpd

10. View the startup status of system services

[root@localhost ~]# netstat -lntp

Seven, initialization, configuration, view

1. Enter the browser address bar: http://192.168.11.123   (Note: 192.168.11.123  is the IP of my virtual machine)

Initialize, set the administrator password
Administrator: admin/(set the password below)
Ordinary user: demo/demo
Guest user: guest/guest

2. Log in

 

3. File management

4. Desktop

 

 

 

So far, CentOS7 deployment of kodexplorer private network disk is completed!

Guess you like

Origin blog.csdn.net/llwy1428/article/details/109315429