{"id":693,"date":"2021-04-03T11:21:53","date_gmt":"2021-04-03T09:21:53","guid":{"rendered":"https:\/\/apfelcast.com\/?p=693"},"modified":"2021-04-03T11:21:53","modified_gmt":"2021-04-03T09:21:53","slug":"nextcloud-auf-synology-disk-station-installieren-schritt-fuer-schritt-anleitung","status":"publish","type":"post","link":"https:\/\/it-ion.de\/index.php\/2021\/04\/03\/nextcloud-auf-synology-disk-station-installieren-schritt-fuer-schritt-anleitung\/","title":{"rendered":"Nextcloud auf Synology Disk Station installieren &#8211; Schritt f\u00fcr Schritt Anleitung"},"content":{"rendered":"\n<div class=\"brlbs-cmpnt-container brlbs-cmpnt-content-blocker brlbs-cmpnt-with-individual-styles\" data-borlabs-cookie-content-blocker-id=\"default\" data-borlabs-cookie-content=\"PGlmcmFtZSB0aXRsZT0iWW91VHViZSB2aWRlbyBwbGF5ZXIiIHNyYz0iaHR0cHM6Ly93d3cueW91dHViZS5jb20vZW1iZWQvYW04WVRBQkt6MkkiIHdpZHRoPSI1NjAiIGhlaWdodD0iMzE1IiBmcmFtZWJvcmRlcj0iMCIgYWxsb3dmdWxsc2NyZWVuPSJhbGxvd2Z1bGxzY3JlZW4iPjwvaWZyYW1lPg==\">\n<div class=\"brlbs-cmpnt-cb-preset-a\">\n<p class=\"brlbs-cmpnt-cb-description\">Sie sehen gerade einen Platzhalterinhalt von <strong>Standard<\/strong>. Um auf den eigentlichen Inhalt zuzugreifen, klicken Sie auf die Schaltfl\u00e4che unten. Bitte beachten Sie, dass dabei Daten an Drittanbieter weitergegeben werden.<\/p>\n<div class=\"brlbs-cmpnt-cb-buttons\"> <a class=\"brlbs-cmpnt-cb-btn\" href=\"#\" data-borlabs-cookie-unblock role=\"button\">Inhalt entsperren<\/a> <a class=\"brlbs-cmpnt-cb-btn\" href=\"#\" data-borlabs-cookie-accept-service role=\"button\" style=\"display: none\">Erforderlichen Service akzeptieren und Inhalte entsperren<\/a> <\/div>\n<p> <a class=\"brlbs-cmpnt-cb-provider-toggle\" href=\"#\" data-borlabs-cookie-show-provider-information role=\"button\">Mehr Informationen<\/a> <\/div>\n<\/div>\n<p>In diesem Video stelle Ich euch die kostenlose OpenSource Videokonferenzsoftware Jitsi Meet vor. Diese Software l\u00e4sst sich auf jedem Linux Server recht einfach installieren und so habt Ihr volle Kontrolle \u00fcber euere eignen Daten. Jitsi Meet ist beispielsweise eine sehr gute Alternative zu Zoom, Skype oder Google Hangout.<\/p>\n<p>In diesem Video zeige Ich euch Schritt f\u00fcr Schritt, wie Ihr Nextcloud auf einer Synology Disk Station installieren k\u00f6nnt und auch wie Ihr anschlie\u00dfend aus dem Internet darauf zugreifen k\u00f6nnt.<\/p>\n<p>\u00bb Videos:<br \/>\nNextcloud aus dem Internet erreichbar machen: <a href=\"https:\/\/cc.apfelcast.com\/fc23d\">https:\/\/cc.apfelcast.com\/fc23d<\/a><br \/>\nUbuntu auf Synology Disk Station installieren: <a href=\"https:\/\/cc.apfelcast.com\/zroc5\">https:\/\/cc.apfelcast.com\/zroc5<\/a><\/p>\n<p>\u00bb geeignete Produkte:<br \/>\nSynology DS918+ <a href=\"https:\/\/amzn.to\/3cuPifl\">https:\/\/amzn.to\/3cuPifl<\/a><br \/>\nSynology RS818+ <a href=\"https:\/\/amzn.to\/39nMtuI\">https:\/\/amzn.to\/39nMtuI<\/a><br \/>\nSynology DS418 <a href=\"https:\/\/amzn.to\/3cZvNv5\">https:\/\/amzn.to\/3cZvNv5<\/a><br \/>\nSeagate Ironwolf NAS Festplatten: <a href=\"https:\/\/amzn.to\/2TA5ALf\">https:\/\/amzn.to\/2TA5ALf<\/a><br \/>\nRAM f\u00fcr Synology DiskStation: <a href=\"https:\/\/amzn.to\/2w8ntt5\">https:\/\/amzn.to\/2w8ntt5<\/a><\/p>\n<p>&nbsp;<\/p>\n<div id=\"93964-1\"><script src=\"\/\/ads.themoneytizer.com\/s\/gen.js?type=1\"><\/script><script src=\"\/\/ads.themoneytizer.com\/s\/requestform.js?siteId=93964&#038;formatId=1\"><\/script><\/div>\n<p>&nbsp;<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">#### nextcloud Disk Station Install ####\n\n# updating \napt-get update\napt-get upgrade\n\n# Installing LAMP-Stack\napt install lamp-server^\n\n\n# Install PHP Moduls\napt install php-zip php-dompdf php-xml php-mbstring php-gd php-curl php-imagick php-intl unzip\n\n# adjust PHP.ini file\nnano \/etc\/php\/7.4\/apache2\/php.ini\n\nmemory_limit = 1024M\nupload_max_filesize = 16G\npost_max_size = 16G\ndate.timezone = Europe\/Berlin\n\n\n# Maria DB Server Konfiguration\nmysql_secure_installation\n\n# open SQL dialoge\nmysql\n\n# create database calles nextcloud\nCREATE DATABASE nextcloud;\n\n# create database user with password\nCREATE USER 'nextclouduser'@'localhost' IDENTIFIED BY 'password_here';\n\n#grant accesss to databse\nGRANT ALL ON nextcloud.* TO 'nextclouduser'@'localhost' IDENTIFIED BY 'password_here' WITH GRANT OPTION;\n\n#save changes and exit\nFLUSH PRIVILEGES;\nEXIT;\n\n# Download lastest nextcloud version\ncd \/tmp &amp;&amp; wget https:\/\/download.nextcloud.com\/server\/releases\/latest.zip\nunzip latest.zip\nmv nextcloud \/var\/www\/\n\n#adjust apache conf\nnano \/etc\/apache2\/sites-available\/000-default.conf \n\nDocumentRoot var\/www\/html =&gt; var\/www\/nextcloud\n\n# Enable the NextCloud and Rewrite Module\n\na2enmod rewrite\na2enmod headers\na2enmod env\na2enmod dir\na2enmod mime\n\n# restart apache\nsystemctl restart apache2.service\n\n# prepare data folder\nmkdir \/home\/data\/\nchown -R www-data:www-data \/home\/data\/\n\nchown -R www-data:www-data \/var\/www\/nextcloud\/\nchmod -R 755 \/var\/www\/nextcloud\/\n\n--&gt; Domain ansurfen und Einrichtung abschlie\u00dfen<\/pre>\n<p>&nbsp;<\/p>\n<h3>apfelcast Support<\/h3>\n<p>Du ben\u00f6tigst Unterst\u00fctzung bei deinem Projekt oder hast Fragen zur Umsetzung?<br \/>\n<strong>Dann melde ich gern bei uns!<\/strong><\/p>\n<p>[button link=&#8220;https:\/\/apfelcast.com\/kontakt&#8220; type=&#8220;big&#8220; class=&#8220; custom-button&#8220;] Kontaktieren[\/button]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sie sehen gerade einen Platzhalterinhalt von Standard. Um auf den eigentlichen Inhalt zuzugreifen, klicken Sie&#8230;<\/p>\n","protected":false},"author":1,"featured_media":694,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-693","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-allgemein"],"taxonomy_info":{"category":[{"value":1,"label":"Allgemein"}]},"featured_image_src_large":["https:\/\/it-ion.de\/wp-content\/uploads\/2021\/04\/maxresdefault-5-1024x576.jpg",1024,576,true],"author_info":{"display_name":"Daniel Klozb\u00fccher","author_link":"https:\/\/it-ion.de\/index.php\/author\/wp-master\/"},"comment_info":0,"category_info":[{"term_id":1,"name":"Allgemein","slug":"allgemein","term_group":0,"term_taxonomy_id":1,"taxonomy":"category","description":"","parent":0,"count":89,"filter":"raw","cat_ID":1,"category_count":89,"category_description":"","cat_name":"Allgemein","category_nicename":"allgemein","category_parent":0}],"tag_info":false,"_links":{"self":[{"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/posts\/693","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/comments?post=693"}],"version-history":[{"count":0,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/posts\/693\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/media\/694"}],"wp:attachment":[{"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/media?parent=693"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/categories?post=693"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/tags?post=693"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}