溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

centos6.6系統(tǒng)安裝seafile服務

發(fā)布時間:2020-07-13 23:04:15 來源:網(wǎng)絡 閱讀:7966 作者:lel3390 欄目:MySQL數(shù)據(jù)庫

1、登錄服務器

centos6.6系統(tǒng)安裝seafile服務

2、安裝相關依賴包

yum install -y gcc zlib zlib-devel openssl openssl-develmysql mysql-server mysql-devel libjpeg-turbo-devel python-devel

centos6.6系統(tǒng)安裝seafile服務

3、配置mysql

啟動:service mysqld start  或者 /etc/init.d/mysqld start

開機自動啟動mysql

chkconfig mysqld on

拷貝配置文件

cp /usr/share/mysql/my-medium.cnf /etc/my.cnf

給root賬戶設置密碼,輸入命令:

mysql_secure_installation

第一步:直接回車;

第二步:是否設置root密碼,輸入”y“,輸入兩遍密碼;

第三步:是否刪除anonymous賬號,輸入”y“;

第四步:是否禁止root賬號遠程登陸,輸入”y“;

第五步:是否刪除test數(shù)據(jù)庫,輸入”y“;

第六步:是否重新加載授權信息,輸入”y“。

【以上根據(jù)個人實際設置】

centos6.6系統(tǒng)安裝seafile服務

centos6.6系統(tǒng)安裝seafile服務

4、安裝python2.7

Seafile 需要python 2.7+版本的支持,不要使用3.0以上的版本,支持的不太好。

Centos6.8自帶的是2.6.6版本,版本太低,所以要自己編譯安裝2.7+的版本。此處用的是2.7.10

【鏈接:http://down.51cto.com/data/2305764】

解壓安裝包

[root@VM_102_193_centos ~]# tar xvf Python-2.7.10.tar

進入解壓后的目錄

[root@VM_102_193_centos Python-2.7.10]# cd Python-2.7.10

編譯

[root@VM_102_193_centosPython-2.7.10]# ./configure--prefix=/usr/local/python

安裝

[root@VM_102_193_centos Python-2.7.10]# make &&make install

安裝完成后如果之前存在python2.6.6,則用2.7.10替換2.6.6

vim /etc/profile

在export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL下添加

PATH=$PATH:/usr/local/python/bin

保存退出

mv /usr/bin/python /usr/bin/python2.6.6

source /etc/profile

驗證版本:

python -V

centos6.6系統(tǒng)安裝seafile服務

5、解決yum與python2.7的兼容問題:

yum不兼容python2.7+所以要修改一下yum的配置文件

[root@VM_102_193_centos Python-2.7.10]# vim /usr/bin/yum

把頭文件#!/usr/bin/ypthon改成#!/usr/bin/python2.6.6

6、安裝setuptools:

【鏈接:http://down.51cto.com/data/2305764】

解壓setuptools-0.6c11.tar.gz

tar zxf setuptools-0.6c11.tar.gz

進入解壓后的目錄

[root@VM_102_193_centos setuptools-0.6c11]# cdsetuptools-0.6c11

安裝:

python setup.py build

python setup.py install

7、安裝pip:

【鏈接:http://down.51cto.com/data/2305764】

解壓pip-8.1.2.tar.gz

tar zxvf pip-8.1.2.tar.gz

安裝:

python setup.py install

8、安裝pillow:

[root@VM_102_193_centos pip-8.1.2]# pip install pillow

centos6.6系統(tǒng)安裝seafile服務

推薦執(zhí)行升級

[root@VM_102_193_centos pip-8.1.2]# pip install --upgradepip

centos6.6系統(tǒng)安裝seafile服務

9、安裝MySQL-python:

10、        下載這個包MySQL-python-1.2.3.tar.gz然后解壓,使用python安裝

【鏈接:http://down.51cto.com/data/2305764】

進入解壓后的文件夾

[root@VM_102_193_centos MySQL-python-1.2.3]# cdMySQL-python-1.2.3

執(zhí)行安裝

python setup.py build

python setup.py install

11、        部署 Seafile 服務器

創(chuàng)建服務目錄

mkdir /yunpan

下載seafile-server_6.0.9_x86-64.tar.gz

【鏈接:http://down.51cto.com/data/2305764】

解壓該文件

[root@VM_102_193_centos seafile-server-6.0.9]# tar zxvfseafile-server_6.0.9_x86-64.tar.gz

進入解壓后的目錄

[root@VM_102_193_centos seafile-server-6.0.9]# cdseafile-server-6.0.9/

12、        執(zhí)行安裝

[root@VM_102_193_centos seafile-server-6.0.9]#./setup-seafile-mysql.sh

centos6.6系統(tǒng)安裝seafile服務

centos6.6系統(tǒng)安裝seafile服務

13、啟動相關服務

[root@VM_102_193_centosseafile-server-6.0.9]# ./seafile.sh startcentos6.6系統(tǒng)安裝seafile服務

[root@VM_102_193_centos seafile-server-6.0.9]# ./seahub.sh start8000centos6.6系統(tǒng)安裝seafile服務

【注意事項】

執(zhí)行安裝,輸入IP地址時,有公網(wǎng)IP輸入公網(wǎng)IP;使用DDNS對外映射時,輸入內(nèi)網(wǎng)IP

當輸入內(nèi)網(wǎng)IP時,對外映射完成后,可以WEB界面修改為外網(wǎng)域名及端口號。

【5.0以上版本】

   centos6.6系統(tǒng)安裝seafile服務

參考鏈接

Seafile服務器手冊中文版



向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI