{"id":13499,"date":"2024-02-02T10:57:29","date_gmt":"2024-02-02T02:57:29","guid":{"rendered":"https:\/\/92it.top\/?p=13499"},"modified":"2024-02-02T21:16:13","modified_gmt":"2024-02-02T13:16:13","slug":"nextcloud%e7%9a%84%e4%b8%80%e4%ba%9btips","status":"publish","type":"post","link":"https:\/\/92it.top\/?p=13499","title":{"rendered":"Nextcloud\u7684\u4e00\u4e9bTips"},"content":{"rendered":"\n<p>1.<strong>\u53ef\u4ee5\u4ece\u4e0b\u9762\u7684Docker\u627e\u5230NextCloud\u7684\u5404\u79cd\u7248\u672c<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<pre class=\"wp-block-preformatted\"><a href=\"https:\/\/hub.docker.com\/_\/nextcloud\/tags\">https:\/\/hub.docker.com\/_\/nextcloud\/tag<\/a><\/pre>\n\n\n\n<p>\u547d\u4ee4\u7684\u4f8b\u5b50<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">docker pull nextcloud:28.0.1\n\ndocker run -d --name nextcloud -p 8080:80 -v \/mnt\/nextcloud:\/var\/www\/html nextcloud:28.0.1<\/pre>\n\n\n\n<p><strong>2.Python\u8c03\u7528nextcloud api<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>Python \u63a5\u53e3\u8c03\u7528\u4f8b\u5b50<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># -*- coding: utf-8 -*-\nfrom nextcloud import NextCloud\n\nNEXTCLOUD_URL = 'http:\/\/localhost'\nNEXTCLOUD_USERNAME = 'admin'\nNEXTCLOUD_PASSWORD = 'admin'\nto_js = True\n\nnxc = NextCloud(endpoint=NEXTCLOUD_URL, user=NEXTCLOUD_USERNAME, password=NEXTCLOUD_PASSWORD, json_output=to_js)\n# \u83b7\u53d6\u7528\u6237\u7684\u5217\u8868\na = nxc.get_users()\nprint(a.data)\n\n\n# \u83b7\u53d6\u7528\u6237\u7684\u6587\u4ef6\u5939\u4fe1\u606f\nc = nxc.list_folders('admin')\nprint(c.data)\n\n# \u4e0a\u4f20\u56fe\u7247\nlocal_filepath = '\/Users\/zexin.zhang\/Pictures\/pap.er\/8.jpg'\nupload_filepath = 'Photos\/8.jpg'\n\nb = nxc.upload_file('admin', local_filepath, upload_filepath)\nprint(b.data)\n\n# \u5206\u4eab\u56fe\u7247\u62ff\u5230\u516c\u5171\u94fe\u63a5\nd = nxc.create_share('Photos\/8.jpg', 3)\n\nprint(d.data)\n\nd_data = {'id': '1', 'share_type': 3, 'uid_owner': 'admin', 'displayname_owner': 'admin', 'permissions': 1,\n          'stime': 1566884948, 'parent': None, 'expiration': None, 'token': 'nc5kJe8k7ATCHy2',\n          'uid_file_owner': 'admin', 'note': '', 'label': '', 'displayname_file_owner': 'admin',\n          'path': '\/Photos\/8.jpg', 'item_type': 'file', 'mimetype': 'image\/jpeg', 'storage_id': 'home::admin',\n          'storage': 2, 'item_source': 151, 'file_source': 151, 'file_parent': 8, 'file_target': '\/8.jpg',\n          'share_with': None, 'share_with_displayname': None, 'password': None, 'send_password_by_talk': False,\n          'url': 'http:\/\/localhost\/s\/nc5kJe8k7ATCHy2', 'mail_send': 1, 'hide_download': 0}\n<\/pre>\n\n\n\n<p><strong>3. Nextcloud\u4f18\u5316<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>\u5728\u901a\u8fc7\u6d4f\u89c8\u5668\u8bbf\u95eeNextcloud\u4f1a\u53d1\u73b0\u7279\u522b\u6162\u3002\u522b\u62c5\u5fc3\uff0c\u8fd9\u5e76\u4e0d\u4e00\u5b9a\u662f\u786c\u4ef6\u8001\u65e7\u7684\u539f\u56e0\uff0c\u6211\u4eec\u53ef\u4ee5\u901a\u8fc7\u4ee5\u4e0b\u5c1d\u8bd5\u6765\u4f18\u5316nextcloud\u7684\u901f\u5ea6\uff0c\u63d0\u5347\u7528\u6237\u4f53\u9a8c\u3002<\/p>\n\n\n\n<ul><li><strong>3.1 \u4f18\u5316\u540e\u53f0\u4efb\u52a1<\/strong><\/li><\/ul>\n\n\n\n<p>\u70b9\u51fb\u7528\u6237\u5934\u50cf\uff0c\u5728\u4e0b\u62c9\u5217\u8868\u4e2d\u9009\u4e2d\u201c\u8bbe\u7f6e\u201d\u9009\u9879\uff1b<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image.png\" alt=\"\" class=\"wp-image-13504\" width=\"128\" height=\"275\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image.png 380w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-140x300.png 140w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-230x494.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-350x752.png 350w\" sizes=\"(max-width: 128px) 100vw, 128px\" \/><\/figure><\/div>\n\n\n\n<p>\u5728\u201c\u7ba1\u7406\u201d\u83dc\u5355\u9879\u4e0b\uff0c\u70b9\u51fb\u201c\u57fa\u672c\u8bbe\u7f6e\u201d\u529f\u80fd\uff0c\u6211\u4eec\u53ef\u4ee5\u770b\u5230 \u201c\u540e\u53f0\u4efb\u52a1\u201d\u529f\u80fd\u3002\u540e\u53f0\u4efb\u52a1\u9ed8\u8ba4\u662f\u4ee5\u201cAJAX\u201d\u7684\u5f62\u5f0f\u6267\u884c\u7684\uff0c\u6240\u4ee5\u6211\u4eec\u8bbf\u95ee\u9875\u9762\u65f6\u4f1a\u89c9\u5f97\u5f88\u6162\u3002\u6211\u4eec\u9009\u62e9\u63a8\u8350\u914d\u7f6e\uff0c\u9009\u4e2d\u201cCron\u201d\u3002\u5229\u7528\u7cfb\u7edf\u7684\u5b9a\u65f6\u4efb\u52a1\u6267\u884c\u76f8\u5173\u7684\u540e\u53f0\u4efb\u52a1\uff0c\u63d0\u9ad8\u9875\u9762\u7684\u54cd\u5e94\u901f\u5ea6\u3002<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">    AJAX\uff1a\u8c03\u5ea6\u65b9\u6cd5\u662f\u9ed8\u8ba4\u9009\u9879\u3002\u4e0d\u5e78\u7684\u662f\uff0c\u5b83\u4e5f\u662f\u6700\u4e0d\u53ef\u9760\u7684\u3002\u6bcf\u6b21\u7528\u6237\u8bbf\u95eeNextcloud\u9875\u9762\u65f6\uff0c\u90fd\u4f1a\u6267\u884c\u4e00\u4e2a\u540e\u53f0\u4f5c\u4e1a\u3002\u8fd9\u79cd\u673a\u5236\u7684\u4f18\u70b9\u662f\u5b83\u4e0d\u9700\u8981\u8bbf\u95ee\u7cfb\u7edf\u4e5f\u4e0d\u9700\u8981\u6ce8\u518c\u7b2c\u4e09\u65b9\u670d\u52a1\u3002\u4e0eWebcron\u670d\u52a1\u76f8\u6bd4\uff0c\u8fd9\u79cd\u673a\u5236\u7684\u7f3a\u70b9\u662f\u5b83\u9700\u8981\u5b9a\u671f\u8bbf\u95ee\u9875\u9762\u624d\u80fd\u89e6\u53d1\u5b83\u3002\n\n    Webcron\uff1a\u901a\u8fc7\u5728\u5916\u90e8webcron\u670d\u52a1\uff08\u4f8b\u5982\uff0ceasyCron\uff09\u4e0a\u6ce8\u518cNextcloud cron.php\u811a\u672c\u5730\u5740\uff0c\u53ef\u4ee5\u786e\u4fdd\u5b9a\u671f\u6267\u884c\u540e\u53f0\u4f5c\u4e1a\u3002\u8981\u5728\u670d\u52a1\u5668\u4e0a\u4f7f\u7528\u6b64\u7c7b\u670d\u52a1\uff0c\u60a8\u5fc5\u987b\u80fd\u591f\u4f7f\u7528Internet\u8bbf\u95ee\u670d\u52a1\u5668\u3002\n\n    Cron\uff1a\u4f7f\u7528\u64cd\u4f5c\u7cfb\u7edfcron\u529f\u80fd\u662f\u6267\u884c\u5e38\u89c4\u4efb\u52a1\u7684\u9996\u9009\u65b9\u6cd5\u3002\u6b64\u65b9\u6cd5\u53ef\u4ee5\u6267\u884c\u9884\u5b9a\u4f5c\u4e1a\uff0c\u800c\u4e0d\u4f1a\u53d7\u5230Web\u670d\u52a1\u5668\u53ef\u80fd\u5177\u6709\u7684\u56fa\u6709\u9650\u5236\u3002<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-1024x610.png\" alt=\"\" class=\"wp-image-13505\" width=\"460\" height=\"274\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-1024x610.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-300x179.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-768x457.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-1536x915.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-830x494.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-230x137.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-350x208.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1-480x286.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-1.png 1646w\" sizes=\"(max-width: 460px) 100vw, 460px\" \/><\/figure><\/div>\n\n\n\n<p>\u901a\u8fc7\u547d\u4ee4\u5bf9\u5f53\u524d\u7528\u6237\u6dfb\u52a0\u81ea\u52a8\u4efb\u52a1\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">crontab -e<\/pre>\n\n\n\n<p>\u5728\u6587\u5b57\u7f16\u8f91\u5668\u4e2d\u6dfb\u52a0\u547d\u4ee4\uff0c5\u5206\u949f\u6267\u884c\u4e00\u6b21\u5bb9\u5668\u5185\u7684cron.php\u6587\u4ef6\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">*\/5 * * * * docker exec --user www-data nextcloud php \/var\/www\/html\/cron.php<\/pre>\n\n\n\n<p>\u5176\u4e2dnextcloud\u4e3a\u5b9a\u4e49\u7684\u5bb9\u5668\u540d\u79f0\uff0c\u53ef\u6839\u636e\u5b9e\u9645\u60c5\u51b5\u8c03\u6574<\/p>\n\n\n\n<p>\u6dfb\u52a0\u5b8c\u6210\u540e\uff0c\u53ef\u4ee5\u5728\u201c\u57fa\u672c\u8bbe\u7f6e\u201d\u9875\u9762\u89c2\u5bdf\u540e\u53f0\u4efb\u52a1\u7684\u6267\u884c\u60c5\u51b5\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-2.png\" alt=\"\" class=\"wp-image-13506\" width=\"226\" height=\"35\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-2.png 834w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-2-300x47.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-2-768x122.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-2-830x131.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-2-230x36.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-2-350x55.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-2-480x76.png 480w\" sizes=\"(max-width: 226px) 100vw, 226px\" \/><\/figure><\/div>\n\n\n\n<ul><li><strong>3.2 \u751f\u6210\u56fe\u7247\u7f29\u7565\u56fe\uff1aPreview Generator<\/strong><\/li><\/ul>\n\n\n\n<p>Preview Generator\u662fNextcloud\u5e94\u7528\u5546\u5e97\u4e2d\u63d0\u4f9b\u7684\u63d2\u4ef6\uff0c\u53ef\u4ee5\u63d0\u524d\u751f\u6210\u56fe\u7247\u7684\u7f29\u7565\u56fe\uff0c\u63d0\u5347\u7cfb\u7edf\u6027\u80fd\uff0c\u63d0\u9ad8\u52a0\u8f7d\u901f\u5ea6\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-1024x363.png\" alt=\"\" class=\"wp-image-13508\" width=\"457\" height=\"161\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-1024x363.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-300x106.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-768x272.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-1536x545.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-830x294.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-230x82.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-350x124.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3-480x170.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-3.png 1624w\" sizes=\"(max-width: 457px) 100vw, 457px\" \/><\/figure><\/div>\n\n\n\n<p>\u5982\u679c\u5b89\u88c5\u5931\u8d25\uff0c\u6211\u4eec\u6839\u636e\u63d0\u793a\uff0c\u628a\u5bf9\u5e94\u7684\u4e0b\u8f7d\u5730\u5740\u590d\u5236\u51fa\u6765\uff0c\u901a\u8fc7\u5176\u4ed6\u65b9\u5f0f\u4e0b\u8f7d\u4e4b\u540e\uff0c\u89e3\u538b\u5230nextcloud\u7684&nbsp;<strong>&#8220;\/var\/www\/html\/apps&#8221;**\u76ee\u5f55\u4e0b\uff0c\u7136\u540e\u518d\u56de\u5230\u5e94\u7528\u5b89\u88c5\u754c\u9762\uff0c\u70b9\u51fb<\/strong>\u201c\u542f\u7528\u201d**\u5373\u53ef\u3002<\/p>\n\n\n\n<p>\u5b89\u88c5\u5b8c\u6210\u540e\uff0c\u6211\u4eec\u6267\u884c\u4ee5\u4e0b\u547d\u4ee4\uff0c\u751f\u6210\u56fe\u7247\u7684\u7f29\u7565\u56fe\u5373\u53ef\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">docker exec --user www-data nextcloud -php occ preview:generate-all<\/pre>\n\n\n\n<p>\u5bf9\u5e94\u7684\u7f29\u7565\u56fe\u4f1a\u5b58\u50a8\u5728&nbsp;<strong>\u201c\/var\/www\/html\/data\/appdata_ocjvg36ftk1b\/preview\u201d<\/strong>\u76ee\u5f55\u4e0b\u3002<\/p>\n\n\n\n<p>\u6211\u4eec\u53ef\u4ee5\u901a\u8fc7\u6dfb\u52a0\u81ea\u52a8\u4efb\u52a1\u6765\u81ea\u52a8\u751f\u6210\u56fe\u7247\u7684\u7f29\u7565\u56fe\uff0c\u5411\u4e4b\u524d\u4e00\u6837\uff0c\u6267\u884c&nbsp;<strong>\u201ccrontab -e\u201d<\/strong>\u547d\u4ee4\uff0c\u6dfb\u52a0\u5982\u4e0b\u6761\u76ee\u5373\u53ef\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># \u6bcf\u592923\u70b9\u6267\u884c\u7f29\u7565\u56fe\n0 23 * * * docker exec --user www-data nextcloud php occ preview:pre-generate<\/pre>\n\n\n\n<ul><li><strong>3.3 \u751f\u6210\u89c6\u9891\u7f29\u7565\u56fe<\/strong><\/li><\/ul>\n\n\n\n<p>Nextcloud\u9ed8\u8ba4\u4e0d\u4f1a\u5f00\u542f&nbsp;<strong>\u89c6\u9891\u548cPDF<\/strong>&nbsp;\u7684\u7f29\u7565\u56fe\uff0c\u5728\u4f7f\u7528\u65f6\u591a\u6709\u4e0d\u4fbf\u3002\u4e0b\u9762\u6211\u4eec\u7ed9\u5b83\u6dfb\u52a0\u89c6\u9891\u7f29\u7565\u56fe\u529f\u80fd\u3002\u8be5\u529f\u80fd\u4f9d\u8d56&nbsp;<strong>ffmpeg<\/strong>\uff0c\u53ef\u901a\u8fc7\u4ee5\u4e0b\u547d\u4ee4\u4e3a&nbsp;<strong>\u5bb9\u5668<\/strong>&nbsp;\u5b89\u88c5\u4f9d\u8d56\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># \u6362\u6e90\ndocker exec -it --user root nextcloud sed -i 's\/deb.debian.org\/mirrors.ustc.edu.cn\/g' \/etc\/apt\/sources.list\ndocker exec -it --user root nextcloud apt-get update\n# \u5b89\u88c5ffmpeg\ndocker exec -it --user root nextcloud apt-get -y  install ffmpeg\n# \u9a8c\u8bc1\ndocker exec -it nextcloud ffmpeg\n<\/pre>\n\n\n\n<p>\u5728<strong>\u201c\/var\/www\/html\/config\/config.php\u201d<\/strong>\u6700\u540e\u6dfb\u52a0\u914d\u7f6e\uff08\u6ce8\u610f\u9017\u53f7\uff09\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">'enabledPreviewProviders' => [\n    'OC\\Preview\\PNG',\n    'OC\\Preview\\JPEG',\n    'OC\\Preview\\GIF',\n    'OC\\Preview\\HEIC',\n    'OC\\Preview\\BMP',\n    'OC\\Preview\\XBitmap',\n    'OC\\Preview\\MP3',\n    'OC\\Preview\\TXT',\n    'OC\\Preview\\MarkDown',\n    'OC\\Preview\\OpenDocument',\n    'OC\\Preview\\Krita',\n    'OC\\Preview\\Movie', \n],<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-4.png\" alt=\"\" class=\"wp-image-13509\" width=\"387\" height=\"289\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-4.png 1014w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-4-300x225.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-4-768x576.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-4-830x622.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-4-230x172.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-4-350x262.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-4-480x360.png 480w\" sizes=\"(max-width: 387px) 100vw, 387px\" \/><\/figure><\/div>\n\n\n\n<p>\u91cd\u542f\u5bb9\u5668\u5373\u53ef\u751f\u6548<\/p>\n\n\n\n<ul><li><strong>3.4 \u8bbe\u7f6e\u81ea\u52a8\u626b\u63cf\u6587\u4ef6<\/strong><\/li><\/ul>\n\n\n\n<p>\u5982\u679c\u6211\u4eec\u6709\u975e\u5e38\u591a\u7684\u8d44\u6599\u9700\u8981\u52a0\u5165\u5230Nextcloud\u4e2d\uff0c\u663e\u7136\u81ea\u5e26\u7684\u4e0a\u4f20\u529f\u80fd\u5e76\u4e0d\u80fd\u6ee1\u8db3\u9700\u6c42\u3002\u6211\u4eec\u53ef\u4ee5\u628a\u8d44\u6599\u76f4\u63a5\u590d\u5236\u5230\u5bf9\u5e94\u7684\u7528\u6237\u76ee\u5f55\u4e0b\uff1a<strong>\u201c\/var\/www\/html\/data\/{\u7528\u6237}\/files\u201d<\/strong>\uff0c\u7136\u540e\u8ba9Nextcloud\u81ea\u52a8\u626b\u63cf\u5373\u53ef\u52a0\u5165\u5230\u7d22\u5f15\u4e2d\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5-1024x118.png\" alt=\"\" class=\"wp-image-13510\" width=\"457\" height=\"52\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5-1024x118.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5-300x35.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5-768x89.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5-830x96.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5-230x27.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5-350x40.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5-480x55.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-5.png 1332w\" sizes=\"(max-width: 457px) 100vw, 457px\" \/><\/figure><\/div>\n\n\n\n<p>\u6267\u884c\u7d22\u5f15\u547d\u4ee4\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">docker exec --user www-data nextcloud php occ files:scan --all<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">  --path                #\u9650\u5236\u626b\u63cf\u8def\u5f84\n  --all                 #\u626b\u63cf\u6240\u6709\u5df2\u77e5\u7528\u6237\u7684\u6240\u6709\u6587\u4ef6\n  --quiet               #\u4e0d\u8f93\u51fa\u7edf\u8ba1\u4fe1\u606f\n  --verbose             #\u5728\u626b\u63cf\u8fc7\u7a0b\u4e2d\u663e\u793a\u6b63\u5728\u5904\u7406\u7684\u6587\u4ef6\u548c\u76ee\u5f55\n  --unscanned           #\u4ec5\u626b\u63cf\u4ee5\u524d\u672a\u626b\u63cf\u8fc7\u7684\u6587\u4ef6<\/pre>\n\n\n\n<p>\u6267\u884c\u547d\u4ee4\u540e\u672a\u8fdb\u884c\u626b\u63cf\u5e76\u5217\u51fa\u626b\u63cf\u4fe1\u606f\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9-1024x249.png\" alt=\"\" class=\"wp-image-13521\" width=\"475\" height=\"115\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9-1024x249.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9-300x73.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9-768x187.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9-830x202.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9-230x56.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9-350x85.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9-480x117.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-9.png 1120w\" sizes=\"(max-width: 475px) 100vw, 475px\" \/><\/figure><\/div>\n\n\n\n<p>\u5982\u679c\u4e0d\u60f3\u663e\u793a\u626b\u63cf\u4fe1\u606f\uff0c\u53ef\u4ee5\u5728\u540e\u9762\u52a0\u4e0a &#8211;quiet&nbsp;\uff0c\u5982\u4e0b\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">docker exec --user www-data nextcloud php occ files:scan --all --quiet<\/pre>\n\n\n\n<p>\u603b\u662f\u626b\u63cf\u5168\u90e8\u4fe1\u606f\u5e76\u4e0d\u662f\u90a3\u4e48\u6709\u5fc5\u8981\uff0c\u8fd8\u4f1a\u767d\u767d\u6d88\u8017\u670d\u52a1\u5668\u8d44\u6e90\uff0c\u53ef\u4ee5\u7528&#8211;path\u626b\u63cf\u6307\u5b9a\u7684\u76ee\u5f55<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\u5f53\u4f7f\u7528 --path\n\n\u9009\u9879\u65f6\uff0c\u8be5\u8def\u5f84\u5fc5\u987b\u5305\u542b\u4ee5\u4e0b\u90e8\u5206\uff1a\n   \"user_id\/files\/path\"\n\u91cd\u8981\uff1a\u5176\u4e2d \/files\/ \u662f\u5fc5\u987b\u8981\u52a0\u4e0a\u7684\uff0c\u4e0d\u53ef\u5ffd\u7565\u3002\n\n#\u4f8b\u5b50 \u6307\u5411\u7528\u6237ChengYe\u7684Photos\u6587\u4ef6\u5939\ndocker exec --user www-data nextcloud php occ files:scan --path=\"\/ChengYe\/files\/Photos\" <\/pre>\n\n\n\n<p>\u5982\u679c\u6dfb\u52a0\u5b8c\u6587\u4ef6\u5220\u9664\u4e0d\u4e86\uff0c\u5f80\u5f80\u662f\u6743\u9650\u95ee\u9898\uff0c\u53ef\u4ee5\u6267\u884c\u4e0b\u9762\u7684\u547d\u4ee4\u4fee\u6539\u6587\u4ef6\u5939\u548c\u6587\u4ef6\u6743\u9650\u3002<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">chown -R 33:tape \/mnt\/nextcloud\/data\/ChengYe\/files\/AI<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-1024x109.png\" alt=\"\" class=\"wp-image-13527\" width=\"448\" height=\"47\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-1024x109.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-300x32.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-768x82.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-1536x164.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-2048x219.png 2048w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-830x89.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-230x25.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-350x37.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-10-480x51.png 480w\" sizes=\"(max-width: 448px) 100vw, 448px\" \/><\/figure><\/div>\n\n\n\n<p>\u8bbe\u7f6e\u81ea\u52a8\u626b\u63cf\u4efb\u52a1\uff1a\u6211\u4eec\u53ef\u4ee5\u901a\u8fc7\u6dfb\u52a0\u81ea\u52a8\u4efb\u52a1\u6765\u81ea\u52a8\u751f\u6210\u6587\u4ef6\u7684\u7d22\u5f15\uff0c\u5411\u4e4b\u524d\u4e00\u6837\uff0c\u6267\u884c\u00a0<strong>\u201ccrontab -e\u201d<\/strong>\u547d\u4ee4\uff0c\u6dfb\u52a0\u5982\u4e0b\u6761\u76ee\u5373\u53ef\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># \u6bcf30\u5206\u949f\u626b\u63cf\u76ee\u5f55\n*\/30 * * * * docker exec --user www-data nextcloud php occ files:scan --all<\/pre>\n\n\n\n<p><strong>4. \u6302\u8f7d\u672c\u5730\u6216\u8005\u8fdc\u7a0b\u78c1\u76d8<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>\u5728 \u201c\u5e94\u7528 &gt; \u60a8\u7684\u5e94\u7528\u201d\u4e2d\uff0c\u5c06<strong>\u201cExternal storage support\u201d<\/strong>&nbsp;\u542f\u7528\u5373\u53ef\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-1024x432.png\" alt=\"\" class=\"wp-image-13512\" width=\"461\" height=\"194\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-1024x432.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-300x127.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-768x324.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-1536x648.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-830x350.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-230x97.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-350x148.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7-480x203.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-7.png 1658w\" sizes=\"(max-width: 461px) 100vw, 461px\" \/><\/figure><\/div>\n\n\n\n<p>\u5728\u201c\u8bbe\u7f6e &gt; \u7ba1\u7406 &gt; \u5916\u90e8\u5b58\u50a8\u201d\u4e2d\u5373\u53ef\u7ba1\u7406\u5916\u90e8\u5b58\u50a8\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-1024x490.png\" alt=\"\" class=\"wp-image-13511\" width=\"464\" height=\"221\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-1024x490.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-300x143.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-768x367.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-1536x735.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-830x397.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-230x110.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-350x167.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6-480x230.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-6.png 1656w\" sizes=\"(max-width: 464px) 100vw, 464px\" \/><\/figure><\/div>\n\n\n\n<p>\u652f\u6301\u597d\u591a\u79cd\u8fde\u63a5\u65b9\u5f0f<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-1024x466.png\" alt=\"\" class=\"wp-image-13514\" width=\"476\" height=\"217\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-1024x466.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-300x136.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-768x349.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-1536x698.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-2048x931.png 2048w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-830x377.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-230x105.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-350x159.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2024\/02\/image-8-480x218.png 480w\" sizes=\"(max-width: 476px) 100vw, 476px\" \/><\/figure><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1.\u53ef\u4ee5\u4ece\u4e0b\u9762\u7684Docker\u627e\u5230NextCloud\u7684\u5404\u79cd\u7248\u672c https:\/\/hub.docker.com\/_ [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"_links":{"self":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/13499"}],"collection":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=13499"}],"version-history":[{"count":16,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/13499\/revisions"}],"predecessor-version":[{"id":13529,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/13499\/revisions\/13529"}],"wp:attachment":[{"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=13499"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=13499"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=13499"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}