Plugin/Jail won't start after changing mount points

photomatix

Dabbler
Joined
May 30, 2018
Messages
24
I'm not sure if this is related but I changed some of the mount points on this plugin and now the jail won't start. These are the errors I'm getting. Any thoughts?

Code:
* Starting nextcloud
  + Started OK
ELF interpreter /libexec/ld-elf.so.1 not found, error 2
Traceback (most recent call last):
  File "/usr/local/bin/iocage", line 10, in <module>
    sys.exit(cli())
  File "/usr/local/lib/python3.6/site-packages/click/core.py", line 722, in __call__
    return self.main(*args, **kwargs)
  File "/usr/local/lib/python3.6/site-packages/click/core.py", line 697, in main
    rv = self.invoke(ctx)
  File "/usr/local/lib/python3.6/site-packages/click/core.py", line 1066, in invoke
    return _process_result(sub_ctx.command.invoke(sub_ctx))
  File "/usr/local/lib/python3.6/site-packages/click/core.py", line 895, in invoke
    return ctx.invoke(self.callback, **ctx.params)
  File "/usr/local/lib/python3.6/site-packages/click/core.py", line 535, in invoke
    return callback(*args, **kwargs)
  File "/usr/local/lib/python3.6/site-packages/iocage_cli/start.py", line 54, in cli
    ioc.IOCage(jail=jail, rc=rc).start()
  File "/usr/local/lib/python3.6/site-packages/iocage_lib/iocage.py", line 1663, in start
    callback=self.callback
  File "/usr/local/lib/python3.6/site-packages/iocage_lib/ioc_start.py", line 66, in __init__
    self.__start_jail__()
  File "/usr/local/lib/python3.6/site-packages/iocage_lib/ioc_start.py", line 543, in __start_jail__
    stdout=f, stderr=su.PIPE)
  File "/usr/local/lib/python3.6/subprocess.py", line 291, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['setfib', '0', 'jexec', 'ioc-nextcloud', '/bin/sh', '/etc/rc']' died with <Signals.SIGABRT: 6>.
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,703
You can try having a look at iocage fstab nextcloud -l

See if anything there looks wrong and remove it.
 

photomatix

Dabbler
Joined
May 30, 2018
Messages
24
You can try having a look at iocage fstab nextcloud -l

See if anything there looks wrong and remove it.

Here's what I got.

Code:
+-------+---------------------------------------------------------------------------------------------------------+
| INDEX |                                               FSTAB ENTRY                                               |
+=======+=========================================================================================================+
| 0     | /mnt/Vol1/iocage/releases/11.2-RELEASE/root/bin /mnt/Vol1/iocage/jails/nextcloud/root/bin nullfs ro 0 0 |
+-------+---------------------------------------------------------------------------------------------------------+


Looks like all the entries for the system got removed somehow when comparing to other jails. I just added new entries copying the same paths as the other jails and that fixed it. Thanks!
 
Top