That was it.
Hope it can help someone!
Fire away.
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Search found 50 matches
- 29 Mar 2018, 11:13
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
- 29 Mar 2018, 11:12
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
Re: NextCloud setup on B3, complete How-To
Connect to cloud.example.com and login with the admin account and password.
Setup regular users
Install the desktop/mobile clients
Sync away!
Useful logs:
/data/nextcloud/data/nextcloud.log
/var/log/ngnix/error.log
/var/log/php7.0-fpm.log
Remark:
- The "fastcgi_read_timeout 600" in your webhost ...
Setup regular users
Install the desktop/mobile clients
Sync away!
Useful logs:
/data/nextcloud/data/nextcloud.log
/var/log/ngnix/error.log
/var/log/php7.0-fpm.log
Remark:
- The "fastcgi_read_timeout 600" in your webhost ...
- 29 Mar 2018, 11:09
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
Re: NextCloud setup on B3, complete How-To
Download NextCloud (check the site for most recent version)
At the writing of this step-by-step it was 13.0.1
root@b3:~# wget https://download.nextcloud.com/server/releases/nextcloud-13.0.1.tar.bz2
Untar:
root@b3:~# tar -xf nextcloud-13.0.1.tar.bz2
Following link is for Apache, but it has off ...
At the writing of this step-by-step it was 13.0.1
root@b3:~# wget https://download.nextcloud.com/server/releases/nextcloud-13.0.1.tar.bz2
Untar:
root@b3:~# tar -xf nextcloud-13.0.1.tar.bz2
Following link is for Apache, but it has off ...
- 29 Mar 2018, 11:07
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
Re: NextCloud setup on B3, complete How-To
Still here?? nice :-)
Configure PHP:
Edit /etc/php/7.0/fpm/php.ini
root@b3:~# nano /etc/php/7.0/fpm/php.ini
replace:
;cgi.fix_pathinfo=1 with cgi.fix_pathinfo=0
max_execution_time = 30 with max_execution_time = 300
post_max_size = 8M with post_max_size = 128M (or more or less, depends on what you ...
Configure PHP:
Edit /etc/php/7.0/fpm/php.ini
root@b3:~# nano /etc/php/7.0/fpm/php.ini
replace:
;cgi.fix_pathinfo=1 with cgi.fix_pathinfo=0
max_execution_time = 30 with max_execution_time = 300
post_max_size = 8M with post_max_size = 128M (or more or less, depends on what you ...
- 29 Mar 2018, 11:04
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
Re: NextCloud setup on B3, complete How-To
Prepare nginx for NextCloud. This was the most difficult part for me, as it was a new frontier.
source: https://docs.nextcloud.com/server/13/admin_manual/installation/nginx.html
Create your website config:
root@b3:~# cd /etc/nginx/sites-available
root@b@:~# nano cloud.example.com
Off course you ...
source: https://docs.nextcloud.com/server/13/admin_manual/installation/nginx.html
Create your website config:
root@b3:~# cd /etc/nginx/sites-available
root@b@:~# nano cloud.example.com
Off course you ...
- 29 Mar 2018, 10:58
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
Re: NextCloud setup on B3, complete How-To
Now that we have everything running, let's do some configuring:
Configure PHP:
You have been adding modules to php in previous post so let's restart (it probably does that automatically, but I want to make sure)
root@b3:~# systemctl restart php7.0-fpm
source: https://docs.nextcloud.com/server/12 ...
Configure PHP:
You have been adding modules to php in previous post so let's restart (it probably does that automatically, but I want to make sure)
root@b3:~# systemctl restart php7.0-fpm
source: https://docs.nextcloud.com/server/12 ...
- 29 Mar 2018, 10:46
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
Re: NextCloud setup on B3, complete How-To
The actual installation of everything needed for NextCloud
Install certbot - Let's encrypt (https://letsencrypt.org/)
If you're going to use another CA, or you already have your SSL-certs, you can skip this. Either way it's strongly recommended to use SSL (httpS) nowadays.
Edit sources.list
root ...
Install certbot - Let's encrypt (https://letsencrypt.org/)
If you're going to use another CA, or you already have your SSL-certs, you can skip this. Either way it's strongly recommended to use SSL (httpS) nowadays.
Edit sources.list
root ...
- 29 Mar 2018, 10:40
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
Re: NextCloud setup on B3, complete How-To
Let's set some fixed IP-addresses.
I prefer to do this one by one. So leave at least one of both interfaces in dhcp mode untill you are sure the config from the second network card is completely functional.
First edit /etc/network/interfaces
Pay special attention to the "source" line, there's an ...
I prefer to do this one by one. So leave at least one of both interfaces in dhcp mode untill you are sure the config from the second network card is completely functional.
First edit /etc/network/interfaces
Pay special attention to the "source" line, there's an ...
- 29 Mar 2018, 10:37
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
Re: NextCloud setup on B3, complete How-To
In addition to the fresh install of my B3 I have chosen to put /home underneath / and no longer in a dedicated partition as my /home will stay rather small, it's not that I'm using my B3 as my desktop.
The "large" partition (originally /home) has been renamed /data
To do so:
root@b3:~# mkdir /data ...
The "large" partition (originally /home) has been renamed /data
To do so:
root@b3:~# mkdir /data ...
- 29 Mar 2018, 10:29
- Forum: Howtos
- Topic: NextCloud setup on B3, complete How-To
- Replies: 11
- Views: 166574
NextCloud setup on B3, complete How-To
I just finished setting up NextCloud on my freshly installed B3
see here: https://forum.excito.com/viewtopic.php?f=7&t=6139
I chose NextCloud in favor of OwnCloud, if you prefer OwnCloud you can still use this How-To besides some details as it's basically the same software. I would say read up on ...
see here: https://forum.excito.com/viewtopic.php?f=7&t=6139
I chose NextCloud in favor of OwnCloud, if you prefer OwnCloud you can still use this How-To besides some details as it's basically the same software. I would say read up on ...
- 29 Mar 2018, 05:14
- Forum: Development
- Topic: Upgrade from RAID-enabled squeeze to stretch
- Replies: 29
- Views: 69869
Re: Upgrade from RAID-enabled squeeze to stretch
It would be nice to have that in the wiki
That page was started few years ago due to this topic:
http://forum.excito.com/viewtopic.php?f=7&t=2715&start=15#p22244
Don't know why it never made to the WiKi, I guess lack of time is one of them, but there's plenty of info to gather around the forum ...
- 27 Mar 2018, 14:49
- Forum: Development
- Topic: Upgrade from RAID-enabled squeeze to stretch
- Replies: 29
- Views: 69869
Re: Upgrade from RAID-enabled squeeze to stretch
To finalize this thread, hereby a final resume:
First prepare your USB key properly => yes it needs a partition table, and yes it can be done with standard Windows tools too. See a few posts earlier: http://forum.excito.com/viewtopic.php?f=7&t=6139#p28511
Boot in rescue mode (usb key plugged in ...
First prepare your USB key properly => yes it needs a partition table, and yes it can be done with standard Windows tools too. See a few posts earlier: http://forum.excito.com/viewtopic.php?f=7&t=6139#p28511
Boot in rescue mode (usb key plugged in ...
- 27 Mar 2018, 11:29
- Forum: Development
- Topic: Upgrade from RAID-enabled squeeze to stretch
- Replies: 29
- Views: 69869
Re: Upgrade from RAID-enabled squeeze to stretch
Another thing is that the uBoot environment loads your kernel with a command line that sets root at /dev/sda1. You will need to change that by either:
changing the command line parameters within the uBoot environment itself (requires serial connection to your B3)
compiling a fixed command line ...
- 27 Mar 2018, 05:34
- Forum: Development
- Topic: Upgrade from RAID-enabled squeeze to stretch
- Replies: 29
- Views: 69869
Re: Upgrade from RAID-enabled squeeze to stretch
I see.... That would make sense.
so /boot in ext3
/ in ext4
/home in ext4
should do the trick also?
and increase / size to 20GiB...
I can still start over from scratch, I'm getting used to atm :-)
Just did some basic config and installed some additional packages as ddclient etc... nothing I can ...
so /boot in ext3
/ in ext4
/home in ext4
should do the trick also?
and increase / size to 20GiB...
I can still start over from scratch, I'm getting used to atm :-)
Just did some basic config and installed some additional packages as ddclient etc... nothing I can ...
- 27 Mar 2018, 03:29
- Forum: Development
- Topic: Upgrade from RAID-enabled squeeze to stretch
- Replies: 29
- Views: 69869
Re: Upgrade from RAID-enabled squeeze to stretch
Thx MouettE for the update!
I did everything all over as per your recommendations and got it working now (after a 2nd try, see below why).
- no /boot partition
Device Start End Sectors Size Type
/dev/sdb1 2048 20973567 20971520 10G Linux RAID
/dev/sdb2 20973568 23070719 2097152 1G Linux swap
/dev ...
I did everything all over as per your recommendations and got it working now (after a 2nd try, see below why).
- no /boot partition
Device Start End Sectors Size Type
/dev/sdb1 2048 20973567 20971520 10G Linux RAID
/dev/sdb2 20973568 23070719 2097152 1G Linux swap
/dev ...