11.Nas_1


새창 작성 수정 목록 링크 Edit G카랜다 HDD HDD HDD 게시물 주소 복사


성공)시놀로지 docker에서 seafile 설치작업 /docker 이미지 : m3adow/seafile

♨ 카랜더 일정 :
  • 링크

  • 첨부

  • 컨텐츠 정보

    본문

    시놀로지 docker에서 seafile 설치작업 성공

    docker 이미지 : m3adow/seafile

    웹에 파일 공유에 편리한 웹하드 입니다

    사용설치는 처음에 하루종일 실패을 거듭하여 무지에서 설치 작업 성공입니다.

    3232235521_1546790452.1074.png

     상기 m3adow/seafile를 사용 아래와같이 자동으로 설치 합니다

     파일은 다운로드 하지 않아도 정상적으로 다운로드 설치 됩니다.

    한번 다운로드 된것은 실패시 수정 재설치 빠르게 가능

    <<< purtty  root 접속 설치>>>

    sudo -i

    3232235521_1546793046.4079.png

    복사 붙이기 부분 =============================

    mkdir -p /volume1/docker/seafile/m3adow/seafile2

    chmod 777 -R /volume1/docker/seafile/m3adow/seafile2

    docker run -d \

    --name=seafile_11qkr \

    -p 8000:8000 \

    -p 8082:8082 \

    -e SEAFILE_NAME=Seaflail \

    -e SEAFILE_ADDRESS=11q.kr \

    -e SEAFILE_ADMIN=shim414@n****** \

    -e SEAFILE_ADMIN_PW=****** \

    -e PUID=0 -e PGID=0 -e TZ=Asia/Seoul \

    -v "/volume1/docker/seafile/m3adow/seafile2:/seafile" \

    m3adow/seafile

    =============>>>
    상기 내용중에 아래 내용만 변경 설치 환경 구성 하세요
    --name=seafile_11qkr \

    -e SEAFILE_ADDRESS=11q.kr \

    -e SEAFILE_ADMIN=shim414@*****m \

    -e SEAFILE_ADMIN_PW=****** \

    노량색 부분 변경 사용하시면 시놀로지 docker에서 seafile 사용 가능합니다

    주) 상기 포트 부분은 공유기에서 포트 포워딩을 꼭해야 합니다

    3232235521_1546791377.4284.png

    아래와같이  ui로 설치도 가능하며 설치 내용 사용기 입니다.

    3232235521_1546790955.6621.png

    3232235521_1546791019.0115.png

    3232235521_1546791138.6036.png
    3232235521_1546791240.788.png
    <<< seafile 웹접속 >>>
    3232235521_1546791596.8736.png
    업로드 성공
    3232235521_1546791675.8331.png
    비디오 영상은 일부 형식에 플레이가 가능합니다 
    3232235521_1546792102.5449.png
    Share billiards_best_shot.mp4
    를 링크만들어 공유 합니다.
    3232235521_1546792330.6552.png
    SAMPLE TEST demo

    3232235521_1546792417.1808.png
    추가 작업 필요 : 시놀로지 E-MAIL 적용 바로 이메일 전송이 숙제 입니다.
    파일링크 HTTPS에서는 되지않고 IE부라우즈에서 http://  만 됩니다.

    ◎ ■ ▶ ☞ ♠ 정보찾아 공유 드리며 출처는 링크 참조 바랍니다. https://11q.kr ♠

    m3adow/seafile

    https://hub.docker.com/r/m3adow/seafile/

    Seafile Docker container based on Ubuntu

    Features

    • Tailored to use the newest seafile version at rebuild (so it should always be up-to-date)
    • Running under dumb-init to prevent the "child reaping problem"
    • Configurable to run with MySQL/MariaDB or SQLite
    • Auto-setup at initial run

    Quickstart

    If you want to run with sqlite:

    docker run -d -e SEAFILE_NAME=Seaflail \
        -e SEAFILE_ADDRESS=seafile.adminswerk.de \
        -e SEAFILE_ADMIN=seafile@adminswerk.de \
        -e SEAFILE_ADMIN_PW=LoremIpsum \
        -v /home/data/seafile:/seafile \
      m3adow/seafile
    

    If you want to use MySQL:

    docker run -d -e SEAFILE_NAME=Seaflail \
        -e SEAFILE_ADDRESS=seafile.adminswerk.de \
        -e SEAFILE_ADMIN=seafile@adminswerk.de \
        -e SEAFILE_ADMIN_PW=LoremIpsum \
      -e MYSQL_SERVER=172.17.0.2 \
      -e MYSQL_USER=seafile \
      -e MYSQL_USER_PASSWORD=Seafail \
      -e MYSQL_ROOT_PASSWORD=hunter2 \
        -v /home/data/seafile:/seafile \
      m3adow/seafile
    

    Overview

    Filetree:

    /seafile/ |-- ccnet |-- conf |-- seafile-data -- seahub-data /opt/-- haiwen |-- ccnet -> /seafile/ccnet |-- conf -> /seafile/conf |-- logs |-- pids |-- seafile-data -> /seafile/seafile-data |-- seafile-server-5.1.3 |-- seafile-server-latest -> seafile-server-5.1.3 `-- seahub-data -> /seafile/seahub-data

    All important data is stored under /seafile, so you should be mounting a volume there (recommended) or at the respective subdirectories. This will not happen automatically! There are a plethora of environment variables which might be needed for your setup. I recommend using Dockers --env-file option.

    Mandatory ENV variables for auto setup

    • SEAFILE_NAME: Name of your Seafile installation
    • SEAFILE_ADDRESS: URL to your Seafile installation
    • SEAFILE_ADMIN: E-mail address of the Seafile admin
    • SEAFILE_ADMIN_PW: Password of the Seafile admin

    If you want to use MySQL/MariaDB, the following variables are needed:

    Mandatory ENV variables for MySQL/MariaDB

    • MYSQL_SERVER: Address of your MySQL server
    • MYSQL_USER: MySQL user Seafile should use
    • MYSQL_USER_PASSWORD: Password for said MySQL User Optionali:
    • MYSQL_PORT: Port MySQL runs on

    Optional ENV variables for auto setup with MySQL/MariaDB

    • MYSQL_USER_HOST: Host the MySQL User is allowed from (default: '%')
    • MYSQL_ROOT_PASSWORD: If you haven't set up the MySQL tables by yourself, Seafile will do it for you when being provided with the MySQL root password

    If you plan on omitting /seafile as a volume and mount the subdirectories instead, you'll need to additionally specify SEAHUB_DB_DIR which containes the subdirectory of /seafile the seahub.db file shall be put in.

    There are some more variables which could be changed but have not been tested and are probably not fully functional as well. Therefore those not mentioned here. Inspect the seafile-entrypoint.sh script if you have additional needs for customization.

    Web server

    This container does not include a web server. It's intended to be run behind a reverse proxy. You can read more about that in the Seafile manual: http://manual.seafile.com/deploy/

    [ 추가 정보 ... 더보기) ]
    뷰PDF 1,2



    office view

    관련자료

    댓글목록

    profile_image

    배움이님의 댓글

    no_profile 배움이 쪽지보내기 자기소개 아이디로 검색 전체게시물 아이피 (116.♡.179.144) 작성일

    seafile에 올린 자료들은 형태 그대로 저장되는 것이 아니라 암호화되어서 저장되는데 이래서는 파일관리자나 webDAV 등으로 접속해서 자료를 삭제하고 관리하는 등의 작업을 하기가 어려워 보입니다. 암호화 되지 않고 저정되게 하는 방법은 없을까요? 좋은 파일 공유 프로그램을 소개해주셔서 고맙습니다.

    profile_image

    배움이님의 댓글

    no_profile 배움이 쪽지보내기 자기소개 아이디로 검색 전체게시물 아이피 (116.♡.179.144) 작성일

    혹시 사용하고 계시는 Next cloud 도 seafile 처럼 설치 성공기를 올려두셨나요? 검색해서는 보이지 않아서 혹시나 해서 여쭤봅니다. ^^

    profile_image

    배움이님의 댓글

    no_profile 배움이 쪽지보내기 자기소개 아이디로 검색 전체게시물 아이피 (116.♡.179.144) 작성일

    참고해서 해놀로지 Docker로 seafile을 설치해봤습니다. 설치는 잘 된 것 같은데 파일을 다운로드 하거나 업로드 할 수 없는데 어디를 수정해야 하는지 모르겠습니다.

    목록

    새창 작성 수정 목록 링크 Edit G카랜다 HDD HDD HDD 게시물 주소 복사




    Total 1,674 / 16 Page
    [ 아미나 림스모바일 움직인는 gif 추가하기 ]

    .첨부를 아미나 림스모바일에 index.php에 추가\r\n<!-- 베너 또는 그림 추가 불러오기 m/head.php 시작 -->\r…

    [ 관리자 특정게시물 비밀번호 게시 공지 ]

    ..Shims HomePage[https://11q.kr 홈피] .\n[이 게시물은 관리자님에 의해 2013-11-18 21:29:50 11.H…

    [ 하단메뉴 모바일 이동및 로그인 추가 ]

    <!-- 아미나 하단에 login 모바일 이동 추가하기 w:\pc\amina\thema\basic\html\footer.php에서 추가 -…

    [ 갤러리형 최근글 리스트스킨 - basic_gallery ] 댓글 2

    갤러리형 최근글 리스트스킨 - basic_galleryAD한별아빠신고글주소트랙백스크랩00조회391목록2013.04.21 00:30첨부파일 -ba…

    [ 부띠끄 로테이션 최근 게시물 ]

    부띠끄 로테이션 최근 게시물\r\n\r\n\r\n시하\r\n작성일시2011.10.14 00:45:10\r\n조회6,281\r\n댓글70관련링크\…

    [ 최고관리자 자동로그인 가능하게 하기 extend 디렉토리에 추가및 초기자동로그인후 한글깨지고 다시 로당시 이… ]

    \r\n\r\n\r\n\r\n최고관리자 자동로그인 가능하게 하기 extend 디렉토리에 추가및 초기자동로그인후 한글깨지고 다시 로당시 이상무최고…

    [ g4(배추라이트)와 amina v3 스킨/테마 모바일 적용 ]

    g4(배추라이트)와 amina v3 스킨/테마 모바일 적용\r\n\r\n1) 배추 빌더라이트 정상설치\r\n- 주) 아미나테마 적용카피전 아미나…

    [ 그룹 메뉴 시작 // 배추빌더 라이트에서 head.php에서 그룹메뉴시작 다음줄에 아래 추가하면 메뉴 첫번… ]

    <!-- 그룹 메뉴 시작 // 배추빌더 라이트에서 head.php에서 그룹메뉴시작 다음줄에 아래 추가하면 메뉴 첫번째 메인으로 메뉴 추가-…

    [ 웹캠으로 nas 시놀로지에 카메라를 붙이자 ] 댓글 12

    웹캠으로 nas 시놀로지에 카메라를 붙이자http://forum.synology.com/enu/viewtopic.php?p=191016#p191…

    [ pc에서 diskstation web 접속불가 ]

    갑자기 diskstation및 web 홈페이지가 접속 되지 안는다공유기에 80,5000퐅트를 포트 포워드 하면 해결###■ https://11q…

    [ sftp / webftp /Secure FTP Applet Connection reset by peer:so… ]

    11q.kr 는 네이버/구글에서 검색 찾아오세요------------------------------------------------------…

    [ ★★★ 림스 모바일 2.6.3버전 설치 방법 메뉴얼 1월14일 이후 config.php 적용 방법및 저의 홈… ] 댓글 5

    림스 모바일 2.6.3버전 1월14일 이후 config.php 수정 적용 방법1) 수정 1 m폴더 적용 // config.php 가 있는곳의 웹…

    [ homepage 그림에 링크 넣기 ]

    ###■ https://11q.kr는 정보를 찾아 공유 합니다..■ https://11q.kr\r\n<ahref="https://11q.k…

    [ [아미나 기본 빌더]아미나 기본 빌더 웹진 최신글 설정 최진글 v3-img 사용 하기 ] 댓글 1

    <?php// 아미나 기본 빌더 웹진 최신글 설정 최진글 v3-img 사용 하기 // v3-img는 W:\pc\amina\misc\late…

    [ Rims mobile 림스모바일 설치 주인장 파일 ]

    > 설치 방법은 링크 참조>■ 11q.kr은 정보를 찾아 공유 합니다. https://11q.kr.comhttps://11q.kr h…


    ♥간단_메모글♥


    최근글


    새댓글



    PHP 안에 HTML ☞ 홈페이지 화면갱신 시간은 ♨
    ▶ 2024-06-10 19:22:17

    오늘의 홈 현황


    • 현재 접속자♨ 376 명
    • 오늘 가입자※ 4 명
    • 어제 가입자※ 5 명
    • 주간 가입자※ 22 명
    • 오늘 방문자 1,936 명
    • 어제 방문자 1,974 명
    • 최대 방문자 13,042 명
    • 전체 방문자 4,370,197 명
    • 전체 게시물※ 8,635 개
    • 전체 댓글수※ 24,723 개
    • 전체 회원수 11,034 명

    QR코드


    ☞ QR코드 스캔은 kakao앱 자체 QR코드

    알림 0








    최신글↑