Package Details: portainer-bin 2:2.20.0-1

Git Clone URL: https://aur.archlinux.org/portainer-bin.git (read-only, click to copy)
Package Base: portainer-bin
Description: A lightweight docker management UI
Upstream URL: https://github.com/portainer/portainer
Keywords: docker management monitoring webui
Licenses: custom:zlib
Conflicts: portainer
Provides: portainer
Submitter: bbrks
Maintainer: bbrks
Last Packager: bbrks
Votes: 14
Popularity: 0.041141
First Submitted: 2020-03-08 04:00 (UTC)
Last Updated: 2024-03-20 21:09 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

ng0177 commented on 2021-07-26 19:51 (UTC)

@bbrks: works like a charm :-)

chenghung commented on 2021-07-26 04:23 (UTC) (edited on 2021-07-26 04:23 (UTC) by chenghung)

failed to run this application

$ sudo systemctl status portainer

portainer.service: Main process exited, code=exited, status=1/FAILURE

systemd[1]: portainer.service: Failed with result 'exit-code'.

bbrks commented on 2021-07-24 09:41 (UTC) (edited on 2021-07-24 09:41 (UTC) by bbrks)

@ng0177 make sure you've started (or permanently enabled) the service:

$ curl -I http://localhost:9000
curl: (7) Failed to connect to localhost port 9000: Connection refused

$ sudo systemctl status portainer
○ portainer.service - Portainer
     Loaded: loaded (/usr/lib/systemd/system/portainer.service; disabled; vendor preset: disabled)
     Active: inactive (dead)

$ sudo systemctl start portainer

$ sudo systemctl status portainer
● portainer.service - Portainer
     Loaded: loaded (/usr/lib/systemd/system/portainer.service; disabled; vendor preset: disabled)
     Active: active (running) since Sat 2021-07-24 10:38:58 BST; 2s ago
   Main PID: 14456 (portainer)
      Tasks: 20 (limit: 38429)
     Memory: 6.7M
        CPU: 81ms
     CGroup: /system.slice/portainer.service
             └─14456 /usr/bin/portainer --bind :9000 --data /var/lib/portainer --assets /usr/share/portainer

$ curl -I http://localhost:9000
HTTP/1.1 200 OK
...

Failing that, looking at the logs (journalctl -u portainer) might reveal why the service isn't starting correctly.

ng0177 commented on 2021-07-24 09:26 (UTC)

http://localhost:9000/ yields "This site can’t be reached"

kassane commented on 2021-06-03 14:02 (UTC) (edited on 2021-06-03 14:04 (UTC) by kassane)

@medicineman25 For that application to locate the directory /var/lib/portainer just modify the helper.go file of the mentioned project and compile.

bbrks commented on 2021-03-31 10:20 (UTC)

@angellusmortis I've got compose >3 support working as long as you have the optional docker-compose dependency installed.

Give it a try and let me know if you run into any issues!

medicineman25 commented on 2021-03-28 15:54 (UTC)

That worked. Thanks. Uninstalled package, deleted /var/lib/portainer, re-installed and restarted service. Option to set appeared.

bbrks commented on 2021-03-28 15:10 (UTC)

There isn't a default password. The first use after installation should guide you through creating an administrator account.

https://documentation.portainer.io/v2.0/deploy/initial/

If this is not happening, I guess you've got a previous installation of Portainer? You can probably wipe existing data by removing the /var/lib/portainer directory.

medicineman25 commented on 2021-03-28 14:09 (UTC)

What is the default username and password? When starting the service it does not give an option to set.

Trying to reset via https://github.com/portainer/helper-reset-password but it "cannot find /data/portainer.db on disk"

bbrks commented on 2021-03-21 22:46 (UTC)

It looks like I can might be able to get it working using the optional docker-compose package based on the changes in https://github.com/portainer/portainer/pull/4713/files

Will take a look when I get a spare hour.