Jump to content

Recommended Posts

Posted

@Werner, @PittPC

  On 7/4/2020 at 10:08 AM, Tido said:

If I compare what I already have the newest, leaves to install from your list:
samba  php-cgi  cryptsetup  mdadm  gnupg-agent  quota

Expand  

Who would have thought so, it is SAMBA !  which brings Python 2:

  Reveal hidden contents

 

Posted

@PittPC  another install from scratch - something is broken. I have not done anything more, than install.sh and try to install NC. It doesn't work.

 

1. NC install == doesn't work,  reboot,  still doesn't work.

2. bitwarden == doesn't work

# ls -l /volumes/*/docker/* 
/volumes/USB_MemoryStick/docker/bitwarden:
total 0

/volumes/USB_MemoryStick/docker/nextcloud:
total 4
drwxr-xr-x 2 root root 4096 Jul  8 12:23 data

/volumes/USB_MemoryStick/docker/nextcloud_mariadb:
total 0

3. Transmission install, just like yesterday and voila  -  this one works.

# ls -l /volumes/*/docker/* 
/volumes/USB_MemoryStick/docker/bitwarden:
total 0

/volumes/USB_MemoryStick/docker/nextcloud:
total 4
drwxr-xr-x 2 root root 4096 Jul  8 12:23 data

/volumes/USB_MemoryStick/docker/nextcloud_mariadb:
total 0

/volumes/USB_MemoryStick/docker/transmission:
total 16
drwxr-xr-x 2 root download 4096 Jul  8 12:49 blocklists
drwxr-xr-x 2 root download 4096 Jul  8 12:49 resume
-rw------- 1 root download 2254 Jul  8 12:49 settings.json
drwxr-xr-x 2 root download 4096 Jul  8 12:49 torrents

 

Posted

@Tido I'm wondering if special characters in the password are causing Nextcloud docker install to break on the shell level. Try using a a simple password of just password with all 3 check boxes checked then hit install. i'm curious if this is the problem.

Posted
  On 7/8/2020 at 1:14 PM, PittPC said:

special characters

Expand  

Test.Test50  so this shouldn't be the cause.

 

  On 7/8/2020 at 1:14 PM, PittPC said:

all 3 check boxes checked

Expand  

This was always the case

If you give me the code, I can run it line by line in the shell and show you the result.

Posted

I tied it with that password that you tried and does work. I'm wondering if you have 2 docker directories somewhere in /volumes, check all directories and see if there are two. There was a bug where it wasnt wiping the harddrive if you did a new install.  If you installed when that bug existed it may have mounted that volume with docker already there and created a duplicate.

 

here is the code we use to install nextcloud


 

if(isset($_POST['install_nextcloud'])){

// Check to see if docker is running

$status_service_docker = exec("systemctl status docker | grep running");

if(empty($status_service_docker)){

$_SESSION['alert_type'] = "warning";

$_SESSION['alert_message'] = "Docker is not running therefore we cannot install!";

}else{

$password = $_POST['password'];

$enable_samba_auth = $_POST['enable_samba_auth'];

$enable_samba_mount = $_POST['enable_samba_mount'];

$install_apps = $_POST['install_apps'];

$data_volume = $_POST['data_volume'];

mkdir("/volumes/$config_docker_volume/docker/nextcloud");

mkdir("/volumes/$config_docker_volume/docker/nextcloud/data");

mkdir("/volumes/$data_volume/nextcloud_data");

mkdir("/volumes/$data_volume/nextcloud_data/appdata");

mkdir("/volumes/$config_docker_volume/docker/nextcloud_mariadb");

exec("docker run -d --name nextcloud_mariadb --net=my-network -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=nextcloud -e MYSQL_USER=nextcloud -e MYSQL_PASSWORD=password -p 3306:3306 --restart=unless-stopped -v /volumes/$config_docker_volume/docker/nextcloud_mariadb:/config linuxserver/mariadb");

exec("docker run -d --name nextcloud --net=my-network -p 6443:443 --restart=unless-stopped -v /volumes/$config_docker_volume/docker/nextcloud/data:/data -v /volumes/$data_volume/nextcloud_data/appdata:/config linuxserver/nextcloud");

exec("sleep 80");

exec("docker exec nextcloud rm -rf /config/www/nextcloud/core/skeleton");

if($enable_samba_mount == 1){

exec("docker exec nextcloud mkdir /config/www/nextcloud/core/skeleton");

exec("docker exec nextcloud mkdir /config/www/nextcloud/core/skeleton/Shared-Folders");

}

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ maintenance:install --database='mysql' --database-name='nextcloud' --database-host='nextcloud_mariadb' --database-user='nextcloud' --database-pass='password' --database-table-prefix='' --admin-user='admin' --admin-pass='$password'");

//Add Trusted Hosts

$docker_gateway = exec("docker network inspect my-network | grep Gateway | awk '{print $2}' | sed 's/\\\"//g'");

//Add Hostname and Primary IP to trusted_domains list

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ config:system:set trusted_domains 2 --value=$config_hostname");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ config:system:set trusted_domains 3 --value=$config_primary_ip");

//Disable Support, usage survey and first run wizard

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:disable support");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:disable survey_client");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:disable firstrunwizard");

exec("docker exec nextcloud rm -rf /config/www/nextcloud/apps/support");

exec("docker exec nextcloud rm -rf /config/www/nextcloud/apps/survey_client");

exec("docker exec nextcloud rm -rf /config/www/nextcloud/apps/firstrunwizard");

if($install_apps == 1){

//Install Apps

//Install Calendar

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install calendar");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable calendar");

//Install Contacts

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install contacts");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable contacts");

//Install Talk

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install spreed");

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable spreed");

//Install Community Document Server

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install documentserver_community");

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable documentserver_community");

//Install OnlyOffice

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install onlyoffice");

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable onlyoffice");

//Install Draw.IO

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install drawio");

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable drawio");

//Install Mail

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install mail");

//exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable mail");

}

//Set Auth Backend to SAMBA - Install External User Auth Support (For SAMBA Auth)

if($enable_samba_auth == 1){

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install user_external");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable user_external");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ config:system:set user_backends 0 arguments 0 --value=$docker_gateway");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ config:system:set user_backends 0 class --value=OC_User_SMB");

}

//Fix Setup DB Errors This may be able to removed in the future

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ db:add-missing-indices");

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ db:convert-filecache-bigint");

if($enable_samba_mount == 1){

//Enable External Files Support for Samba mounts

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable files_external");

//Add Network Shares

//Add Users Home folder

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ files_external:create Home 'smb' password::logincredentials -c host=$docker_gateway -c share='users/\$user' -c domain=WORKGROUP");

//Enable Nextcloud Sharing on Users Home

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ files_external:option 1 enable_sharing true");

//Add All Other Shares

exec("ls /etc/samba/shares", $share_list);

foreach ($share_list as $share) {

exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ files_external:create /Shared-Folders/$share 'smb' password::logincredentials -c host=$docker_gateway -c share='$share' -c domain=WORKGROUP");

}

}

} //End Docker Check

header("Location: apps.php");

}

 

this is the actual docker run command

 

replace YOURDOCKERVOLUMEHERE with your the volume your docker folder is located at

replace YOURDATAVOLUMEHERE with the volume you want to have your nextcloud data located should

 


 

docker run -d --name nextcloud_mariadb --net=my-network -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=nextcloud -e MYSQL_USER=nextcloud -e MYSQL_PASSWORD=password -p 3306:3306 --restart=unless-stopped -v /volumes/YOURDOCKERVOLUMEHERE/docker/nextcloud_mariadb:/config linuxserver/mariadb


docker run -d --name nextcloud --net=my-network -p 6443:443 --restart=unless-stopped -v /volumes/YOURDOCKERVOLUMEHERE/docker/nextcloud/data:/data -v /volumes/YOURDATAVOLUMEHERE/nextcloud_data/appdata:/config linuxserver/nextcloud

 

 

Posted

Error message A:

# docker run -d --name nextcloud_mariadb --net=my-network -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=nextcloud -e MYSQL_USER=nextcloud -e MYSQL_PASSWORD=password -p 3306:3306 --restart=unless-stopped -v /volumes/USB_MemoryStick/docker/nextcloud_mariadb:/config linuxserver/m

Unable to find image 'linuxserver/m:latest' locally

docker: Error response from daemon: pull access denied for linuxserver/m, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
See 'docker run --help'.

 

Error message B:

# docker run -d --name nextcloud --net=my-network -p 6443:443 --restart=unless-stopped -v /volumes/USB_MemoryStick/docker/nextcloud/data:/data -v /volumes/USB_MemoryStick/nextcloud_data/appdata:/config linuxserver/nextcloud
docker: Error response from daemon: Conflict. The container name "/nextcloud" is already in use by container "bbdecd6502491b917ee971fc28ec53653d4db5f858ddd0afa3c1a3023a9ecf7e". You have to remove (or rename) that container to be able to reuse that name.
See 'docker run --help'.

 

 

docker ps -a  lists all running containers:

# docker ps -a 
CONTAINER ID        IMAGE                   COMMAND             CREATED             STATUS              PORTS               NAMES
bbdecd650249        linuxserver/nextcloud   "/init"             58 seconds ago      Created                                 nextcloud

# systemctl status docker | grep running
   Active: active (running) since Fri 2020-07-10 23:00:53 CEST; 17min a

 

:/volumes# ls -l
total 8
drwxr-xr-x 2 root root 4096 Jul 10 23:10 docker
drwxr-xr-x 2 root root 4096 Jul 10 23:09 USB_MemoryStick

root@TidoNAS:/volumes/USB_MemoryStick# ls -l
total 0

root@TidoNAS:/volumes/docker# ls -la
total 8
drwxr-xr-x 2 root root 4096 Jul 10 23:10 .
drwxr-xr-x 4 root root 4096 Jul 10 23:00 ..

 

Posted

for Error A:

the docker repo isnt fully specified

 

your missing the ariadb at the end instead you have m

 

  Quote

docker run -d --name nextcloud_mariadb --net=my-network -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=nextcloud -e MYSQL_USER=nextcloud -e MYSQL_PASSWORD=password -p 3306:3306 --restart=unless-stopped -v /volumes/YOURDOCKERVOLUMEHERE/docker/nextcloud_mariadb:/config linuxserver/mariadb

Expand  

 

lets do this stop all your dockers instances and remove them

delete the docker directory and recreate it

create these directories inside docker folder

nextcloud_mariadb

nextcloud (inside nextcloud create a dir called data)

 

create nextcloud_data on the root on one of your volume not inside the docker folder

create another folder called appdata inside that

then rerun the docker run commands and we'll see if we get any errors.

Posted

Hi @PittPC

 

made a test today.

 

Setup my HC2 on a spare SD-card:

used "Armbian_20.02.7_Odroidxu4_buster_legacy_4.14.174.img" to write on SD-card

 

  • 1234 -> 1234 -> >mypassword<
  • reboot
  • loged in as >user<
  • sudo armbian-config -> made my settings..
  • sudo apt update && sudo apt upgrade
  • installed my basic settings and tools
  • sudo reboot

 

OK!

 

armbianmonitor -u
http://ix.io/2sVR

 

..till now erverything is OK!

 

 

  Reveal hidden contents

 

Visit http://192.168.63.45:81 in your web browser to complete installation

made my settings on webinterface..

 

than device reboot

 

after reboot i logged in (ssh) as >user<:

S C:\WINDOWS\system32> ssh master@192.168.63.45
master@192.168.63.45's password:
  ___      _           _     _  __  ___   _ _  _
 / _ \  __| |_ __ ___ (_) __| | \ \/ / | | | || |
| | | |/ _` | '__/ _ \| |/ _` |  \  /| | | | || |_
| |_| | (_| | | | (_) | | (_| |  /  \| |_| |__   _|
 \___/ \__,_|_|  \___/|_|\__,_| /_/\_\\___/   |_|

Welcome to Armbian buster with Linux 4.14.187-odroidxu4

System load:   0.06 0.02 0.00   Up time:       11 min
Memory usage:  9 % of 1995MB    IP:            172.18.0.1 192.168.63.45
CPU temp:      47°C
Usage of /:    5% of 30G        storage/:      1% of 3.6T

Last login: Sun Aug  2 10:30:41 2020 from 192.168.63.20
Could not chdir to home directory /home/master: No such file or directory

master@HC2:/$ sudo armbianmonitor -u
System diagnosis information will now be uploaded to http://ix.io/2sW5
Please post the URL in the forum where you've been asked for.

master@HC2:/$

i've got these message:

 

Could not chdir to home directory /home/master: No such file or directory


Something went wrong with your script..

 

It delete my /home/MYNAME directory AFTER rebooting.


http://ix.io/2sW5


I retested the installation twice with the same results.


Pls. check

 

regards Markus

 

Posted
  On 8/3/2020 at 6:52 PM, MacBreaker said:

What you like to point me?

Expand  

If you are too lazy to go to the readme, I do it for you, here is the link:  https://github.com/johnnyq/simpnas#notes

It is mandatory to run the install as root.

 

I exchanged some Emails with the programmer, it is by design to delete all user-profiles and create new ones 'needed' from withing the Web UI.

 

So, login with:  ssh root@192.xxx   whatever your IP is and maintain your system (not user or groups) from the commandline.  Everything else, Web UI.

 

  On 8/3/2020 at 6:52 PM, MacBreaker said:

Yes, i ran the install script as root..

Expand  

Nope, you ran it with root privileges, but not as root:

  On 8/2/2020 at 9:58 AM, MacBreaker said:

loged in as >user<

Expand  

 

Ich hoffe jetzt sind alle Unklarheiten beseitigt ;)

Posted

Hi Tido,

 

thanks for clarification of root or root privileges.

i didn't know this, sorry.

 

I will read the README.md and start over again on the weekend.

 

  Quote

Ich hoffe jetzt sind alle Unklarheiten beseitigt

Expand  

 

Ich hoffe... :)

Posted

wow this is seriously amazing , thanks to @soerenderfor for pointing this project out .

I find this clean  interface enticing , one thing that bothers  me with openmediavault is the complexity of the admin panel , it provides to many options.

 

I have some questions but if required I can ask them on simpnas forum .

 

currently I have openmediavault installed on a rockpro64 and in docker I run HomeAssistant, Radicale caldav server and I'm working on a Jellyfin container. This is behind an nginx reverse proxy container that exposes only HomeAssistant and Radicale  containers to  outside of my network.

I use docker compose to run all said containers, I have to use the latest docker-compose which I install using pip ,because the Radicale container requires an option not available in the docker-compose provided by Debian .

 

So my first question is seeing as all the apps are run using docker do you foresee a problem   with me uninstalling the apt installed docker-compose and installing via pip ?

 

My second question is regarding a stable release , do you have a projection of when this will be considered as out of beta ? not that this would prevent me from switching from Openmediavault to Simpnas this is just an open query.

 

Third question do you plan on implement a firewall tab in the network section , or have you already ? otherwise of course adding iptables rules or running ufw via the command line is possible .

 

Final question do you think adding a Portainer app is possible , as visually its a great option to manage container ?

 

 

thanks in advance for your response and for creating this awesome project .

 

 

 

 

 

 

Posted

@GreyLinux - I can not take credit for SimpNAS, but i did use it very much with my rockpro64 setup. Used it much to test 10-14 sata cards, and many was able to work with Focal with mainline and SimpNAS.

Right now i use Armbian buster with mainline and OMV. But as yourself i also like the simple in SimpNAS ;-)

Posted

Hello,
I installed simpnas on an orangepi and went through the initial setup (select disk, create user, etc). After I finish this wizard I get presented with a logon screen and a separate button for "File Manager". I can enter file manager without issues (port 82), with the user I created in the previous wizard. But I have no way (and no idea) of which user should I use to enter the main management of SimpNAS (port 81), I always get credential error. I tried everything (the previously created user, the root user of my armbian....).

 

Around here I've seen a screenshot of a "final configuration" screen asking for an Administrator password. I didn't get asked for any administrator password in my wizard, only a username/password creation (probably for file manager).

Could you please help me? thanks!

Posted

Hi APD,

  On 2/15/2023 at 12:46 PM, APD said:

Does it work on Armbian Bullseye?

Expand  

It is a PHP application, chances are not too shabby.

 

If you search for "simpnas github" you will find it.

 

 

Posted

Ok, I installed Armbian Buster...

 

apt-get update
apt-get upgrade -y
reboot
wget https://simpnas.com/upload/install.sh; bash install.sh

 

Connect on web interface, user, pass, skip network configuration, configure usb hdd, reboot.

After reboot i got this errors:

 

simpnas2.thumb.jpg.de2873187176ee019176d72799f4dd33.jpg

 

simpnas1.thumb.jpg.0a8df36bfa1297587ff98e9147681f2a.jpg

Posted

Ok, where to find author? :)

 

Edit:

I find a way to fix the problem:

 

sudo blkid

 

Check the UUID od the mounted HDD/USB drive.

 

sudo nano /etc/fstab

 

Delete everything in fstab except line with the HDD/USB drive name and UUID.

 

ctrl+o save, ctrl+x exit

 

reboot

 

Posted

How I have another problem. I can't install docker on armbian os.

 

Job for docker.service failed because the control process exited with error code.
See "systemctl status docker.service" and "journalctl -xe" for details.
invoke-rc.d: initscript docker, action "start" failed.
● docker.service - Docker Application Container Engine
   Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
   Active: activating (auto-restart) (Result: exit-code) since Sat 2023-02-18 17:58:46 CET; 31ms ago
     Docs: https://docs.docker.com
  Process: 20548 ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock (code=exited, status=1/FAILURE)
 Main PID: 20548 (code=exited, status=1/FAILURE)
dpkg: error processing package docker-ce (--configure):
 installed docker-ce package post-installation script subprocess returned error exit status 1
Processing triggers for man-db (2.8.5-2) ...
Processing triggers for systemd (241-7~deb10u8) ...
Errors were encountered while processing:
 docker-ce
E: Sub-process /usr/bin/dpkg returned an error code (1)

 

journalctl -xe
 

Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.502714810+01:00" level=warning msg="Running modprobe bridge br_netfilter failed with message: modprobe: WARNING: Module bridge not found in directory /lib/modules/5.10.52-r
Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.525866256+01:00" level=info msg="unable to detect if iptables supports xlock: 'iptables --wait -L -n': `modprobe: FATAL: Module ip_tables not found in directory /lib/module
Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.848667276+01:00" level=info msg="[core] [Channel #1] Channel Connectivity change to SHUTDOWN" module=grpc
Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.848895641+01:00" level=info msg="[core] [Channel #1 SubChannel #2] Subchannel Connectivity change to SHUTDOWN" module=grpc
Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.849079674+01:00" level=info msg="[core] [Channel #1 SubChannel #2] Subchannel deleted" module=grpc
Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.849234834+01:00" level=info msg="[core] [Channel #1] Channel deleted" module=grpc
Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.850057004+01:00" level=info msg="stopping event stream following graceful shutdown" error="<nil>" module=libcontainerd namespace=moby
Feb 18 17:59:02 rk3188 dockerd[21621]: failed to start daemon: Error initializing network controller: error obtaining controller instance: failed to create NAT chain DOCKER: iptables failed: iptables -t nat -N DOCKER: modprobe: FATAL: Mo
Feb 18 17:59:02 rk3188 dockerd[21621]: iptables v1.8.2 (legacy): can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
Feb 18 17:59:02 rk3188 dockerd[21621]: Perhaps iptables or your kernel needs to be upgraded.
Feb 18 17:59:02 rk3188 dockerd[21621]:  (exit status 3)
Feb 18 17:59:02 rk3188 systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE
-- Subject: Unit process exited
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- An ExecStart= process belonging to unit docker.service has exited.
--
-- The process' exit code is 'exited' and its exit status is 1.
Feb 18 17:59:02 rk3188 systemd[1]: docker.service: Failed with result 'exit-code'.
-- Subject: Unit failed
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- The unit docker.service has entered the 'failed' state with result 'exit-code'.
Feb 18 17:59:02 rk3188 systemd[1]: Failed to start Docker Application Container Engine.
-- Subject: A start job for unit docker.service has failed
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- A start job for unit docker.service has finished with a failure.
--
-- The job identifier is 6504 and the job result is failed.
Feb 18 17:59:04 rk3188 systemd[1]: docker.service: Service RestartSec=2s expired, scheduling restart.
Feb 18 17:59:04 rk3188 systemd[1]: docker.service: Scheduled restart job, restart counter is at 5.
-- Subject: Automatic restarting of a unit has been scheduled
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- Automatic restarting of the unit docker.service has been scheduled, as the result for
-- the configured Restart= setting for the unit.
Feb 18 17:59:04 rk3188 systemd[1]: Stopped Docker Application Container Engine.
-- Subject: A stop job for unit docker.service has finished
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- A stop job for unit docker.service has finished.
--
-- The job identifier is 6573 and the job result is done.
Feb 18 17:59:04 rk3188 systemd[1]: docker.service: Start request repeated too quickly.
Feb 18 17:59:04 rk3188 systemd[1]: docker.service: Failed with result 'exit-code'.
-- Subject: Unit failed
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- The unit docker.service has entered the 'failed' state with result 'exit-code'.
Feb 18 17:59:04 rk3188 systemd[1]: Failed to start Docker Application Container Engine.
-- Subject: A start job for unit docker.service has failed
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- A start job for unit docker.service has finished with a failure.
--
-- The job identifier is 6573 and the job result is failed.
Feb 18 17:59:04 rk3188 systemd[1]: docker.socket: Failed with result 'service-start-limit-hit'.
-- Subject: Unit failed
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- The unit docker.socket has entered the 'failed' state with result 'service-start-limit-hit'.

 

I try to convert iptables to legacy, but the problem persist.

 

 sudo update-alternatives --set iptables /usr/sbin/iptables-legacy
 sudo update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy

 

Any suggestion?

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines