Android mobile phone to build centos7 personal cloud network disk - file storage

Android mobile phone to build centos7 cloud network disk

introduce

Realize centos7 to build cloud network disk under Android termux

Resource download address

jdk1.8   百度云下载链接: https://pan.baidu.com/s/13Tr831zl4YuVwZLHXgJ8QQ 提取码: z2p2 

Installation Tutorial

  1. install jdk
将下载好的jdk1.8的压缩包解压到/usr/local/
配置环境变量
[root@localhost ~]# vi /etc/profile

将下面类容添加进去

export JAVA_HOME=/usr/local/jdk1.8.0_202
export JRE_HOME=$JAVA_HOME/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib
export PATH=$JAVA_HOME/bin:$PATH

保存并执行生效环境变量
[root@localhost ~]# source /etc/profile

2. Install kiftd network disk

Kiftd network disk resource package download

1.将下载好的kiftd 的压缩包解压到/usr/local/   
2.进入到kiftd 文件夹中
	[root@localhost kiftd]# ls
	conf  filesystem  fonts  kiftd-1.1.0-RELEASE.jar  kiftd说明文档.pdf  libs  logs  mybatisResource  README.md  webContext  升级须知.pdf  使用许可

3.执行:java -jar  kiftd-1.1.0-RELEASE.jar  -start  >/dev/null 2>&1 &

3. Access the cloud network disk system
Open the mobile browser to access: 127.0.0.1:8080
insert image description here
insert image description here

Copyright Notice

If there is a reprint, please indicate the source of the article! ! !

Guess you like

Origin blog.csdn.net/m0_61581389/article/details/127816059