Closed lots0logs closed 10 years ago
From log it's visible that it fails to locate nginx and php-fpm service. Do you see them in the Services section?
I first mentioned that there appears to be an issue with the services plugin over on Eugeny/ajenti#410
I'm not sure if this is related or if you would rather me open a separate issue BUT the services plugin doesn't appear to be returning anything from systemd. I uncommented the debug logging lines in the systemd plugin and still nothing appeared in the logs for any service info returned by systemd.
I also mentioned it again at the beginning of this bug report. Anyway, no worries :smile: I understand you are very busy! So, the Service plugin does not display any services. What is the best way to debug it?
Don't worry; grab the latest commit and try running ./ajenti-panel -v
- you should get something on the services or at least a crash
28.05.2014 07:32 core.py:193 ERROR Fatal crash occured
Traceback (most recent call last):
File "/usr/bin/ajenti-panel", line 132, in <module>
core.run()
File "/usr/lib/python2.7/site-packages/ajenti/core.py", line 89, in run
Inflater.get().precache()
File "/usr/lib/python2.7/site-packages/ajenti/ui/inflater.py", line 39, in precache
self.inflate(temp_ui, layout)
File "/usr/lib/python2.7/site-packages/ajenti/ui/inflater.py", line 74, in inflate
self.cache[layout] = self.inflate_rec(ui, xml)
File "/usr/lib/python2.7/site-packages/ajenti/ui/inflater.py", line 110, in inflate_rec
children = filter(None, list(self.inflate_rec(ui, child) for child in node))
File "/usr/lib/python2.7/site-packages/ajenti/ui/inflater.py", line 110, in <genexpr>
children = filter(None, list(self.inflate_rec(ui, child) for child in node))
File "/usr/lib/python2.7/site-packages/ajenti/ui/inflater.py", line 111, in inflate_rec
element = self.create_element(ui, tag, children=children, **props)
File "/usr/lib/python2.7/site-packages/ajenti/ui/inflater.py", line 46, in create_element
inst = cls.new(ui, context=(ui or self).context, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/ajenti/api/__init__.py", line 90, in new
return context.instantiate(cls, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/ajenti/plugins/__init__.py", line 202, in instantiate
init(instance)
File "/usr/lib/python2.7/site-packages/ajenti/plugins/services/main.py", line 62, in init
self.reload()
File "/usr/lib/python2.7/site-packages/ajenti/plugins/services/main.py", line 68, in reload
self.service = ServiceMultiplexor.get().get_one(self.name)
File "/usr/lib/python2.7/site-packages/ajenti/api/__init__.py", line 83, in get
return context.get_instance(cls)
File "/usr/lib/python2.7/site-packages/ajenti/plugins/__init__.py", line 188, in get_instance
return self.instantiate(cls)
File "/usr/lib/python2.7/site-packages/ajenti/plugins/__init__.py", line 202, in instantiate
init(instance)
File "/usr/lib/python2.7/site-packages/ajenti/plugins/services/api.py", line 12, in init
self.managers = ServiceManager.get_all()
File "/usr/lib/python2.7/site-packages/ajenti/api/__init__.py", line 206, in get_all
return [context.get_instance(x) for x in manager.get_implementations(cls)]
File "/usr/lib/python2.7/site-packages/ajenti/plugins/__init__.py", line 188, in get_instance
return self.instantiate(cls)
File "/usr/lib/python2.7/site-packages/ajenti/plugins/__init__.py", line 202, in instantiate
init(instance)
File "/usr/lib/python2.7/site-packages/ajenti/plugins/services/sm_systemd.py", line 20, in init
self.bus = dbus.SystemBus()
NameError: global name 'dbus' is not defined
Install python-dbus (it should be a dependency)
haha..i already done it thanks. i will add it to the pkg depends. Thanks for the help. I'm sure we will be chatting again soon though hehe
Websites plugin still crashes when trying to check configs. Services plugin is working correctly now. Here is the trace for the crash:
28.05.2014 08:08 compat.py:20 DEBUG Popen: ['supervisorctl', 'status', 'php-fpm']
28.05.2014 08:08 compat.py:20 DEBUG Popen: ['nginx', '-t']
28.05.2014 08:08 compat.py:20 DEBUG Popen: ['supervisorctl', 'status', 'nginx']
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/gevent/greenlet.py", line 327, in run
result = self._run(*self.args, **self.kwargs)
File "/var/lib/ajenti/plugins/vh/api.py", line 308, in run_check
c.satisfied = c.check()
File "/var/lib/ajenti/plugins/vh-php-fpm/phpfpm.py", line 67, in check
return ServiceMultiplexor.get().get_one(fpm_service_name).running
AttributeError: 'NoneType' object has no attribute 'running'
<Greenlet at 0x4ae22d0: run_check(<ajenti.plugins.vh-php-fpm.phpfpm.FPMServiceTest o)> failed with AttributeError
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/gevent/greenlet.py", line 327, in run
result = self._run(*self.args, **self.kwargs)
File "/var/lib/ajenti/plugins/vh/api.py", line 308, in run_check
c.satisfied = c.check()
File "/var/lib/ajenti/plugins/vh-nginx/nginx.py", line 29, in check
return ServiceMultiplexor.get().get_one('nginx').running
AttributeError: 'NoneType' object has no attribute 'running'
<Greenlet at 0x4ae24b0: run_check(<ajenti.plugins.vh-nginx.nginx.NginxServiceTest ob)> failed with AttributeError
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/ajenti/plugins/main/main.py", line 158, in handle_message
self.ui.dispatch_event(update['uid'], update['event'], update['params'])
File "/usr/lib/python2.7/site-packages/ajenti/ui/__init__.py", line 72, in dispatch_event
self.root.dispatch_event(uid, event, params)
File "/usr/lib/python2.7/site-packages/ajenti/ui/element.py", line 382, in dispatch_event
if child.dispatch_event(uid, event, params):
File "/usr/lib/python2.7/site-packages/ajenti/ui/element.py", line 382, in dispatch_event
if child.dispatch_event(uid, event, params):
File "/usr/lib/python2.7/site-packages/ajenti/ui/element.py", line 388, in dispatch_event
getattr(self, k)(**(params or {}))
File "/var/lib/ajenti/plugins/vh/main.py", line 87, in on_recheck
self.manager.run_checks()
File "/var/lib/ajenti/plugins/vh/api.py", line 312, in run_checks
self.__handle_exceptions(greenlets)
File "/var/lib/ajenti/plugins/vh/api.py", line 275, in __handle_exceptions
raise g.exception
AttributeError: 'NoneType' object has no attribute 'running'
Are the systemd services appearing with ".service" suffix in Services?
Are the systemd services appearing with ".service" suffix in Services?
Yes they all appear with ".service" at the end. I will pull your fix and give it a try. Thanks.
Another crash..
Info | Value |
---|---|
Ajenti | 1.2.21.4 |
Platform | arch / arch / Linux 3.14.4-1 x86_64 |
Architecture | x86_64 unknown |
Python | 2.7.6 |
Installation | 47391267 |
Debug | True |
Catcher report | http://ajenti.org/catcher/view/16294 |
Loaded plugins | ajenti_org, bind9, codemirror, configurator, cron, dashboard, db_common, dhcpd, fm, fstab, hdparm, hosts, iptables, lm_sensors, logs, main, memcache, mysql, network, nginx, notepad, nsd, packages, plugins, power, psql, raid, resolv, resources, scripts, sensors, services, smartctl, supervisor, taskmgr, tasks, terminal, users, vh, vh-gunicorn, vh-mail, vh-mysql, vh-nginx, vh-nodejs, vh-php-fpm, vh-pureftpd, vh-vsftpd, webserver_common |
Library | Version |
---|---|
gevent | 1.0 |
greenlet | 0.4.2 |
reconfigure | 0.1.41 |
requests | 2.3.0 |
psutil | 2.1.1 |
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/ajenti/plugins/main/main.py", line 158, in handle_message
self.ui.dispatch_event(update['uid'], update['event'], update['params'])
File "/usr/lib/python2.7/site-packages/ajenti/ui/__init__.py", line 72, in dispatch_event
self.root.dispatch_event(uid, event, params)
File "/usr/lib/python2.7/site-packages/ajenti/ui/element.py", line 382, in dispatch_event
if child.dispatch_event(uid, event, params):
File "/usr/lib/python2.7/site-packages/ajenti/ui/element.py", line 382, in dispatch_event
if child.dispatch_event(uid, event, params):
File "/usr/lib/python2.7/site-packages/ajenti/ui/element.py", line 388, in dispatch_event
getattr(self, k)(**(params or {}))
File "/var/lib/ajenti/plugins/vh/main.py", line 225, in on_destroy
self.save()
File "/var/lib/ajenti/plugins/vh/main.py", line 250, in save
self.manager.update_configuration()
File "/var/lib/ajenti/plugins/vh/api.py", line 281, in update_configuration
self.__handle_exceptions(greenlets)
File "/var/lib/ajenti/plugins/vh/api.py", line 275, in __handle_exceptions
raise g.exception
AttributeError: 'NoneType' object has no attribute 'splitlines'
Log content:
2014-05-28 09:02:52,525 INFO ajenti-panel.<module>(): Using config file /etc/ajenti/config.json
2014-05-28 09:02:52,625 DEBUG registry.register_crypt_handler(): registered 'sha512_crypt' handler: <class 'passlib.handlers.sha2_crypt.sha512_crypt'>
2014-05-28 09:02:52,692 DEBUG compat.Popen(): Popen: git describe --tags 2> /dev/null
2014-05-28 09:02:52,727 DEBUG compat.Popen(): Popen: ['lsb_release', '-sd']
2014-05-28 09:02:52,738 DEBUG compat.Popen(): Popen: ['uname', '-mrs']
2014-05-28 09:02:52,748 INFO core.run(): Ajenti 1.2.21.4 running on platform: arch
2014-05-28 09:02:52,749 WARNING core.run(): arch is not officially supported!
2014-05-28 09:02:52,749 DEBUG __init__.load(): Loading plugin taskmgr
2014-05-28 09:02:52,750 DEBUG __init__.load_recursive(): Preloading plugin dependency: main
2014-05-28 09:02:52,750 DEBUG __init__.load(): Loading plugin main
2014-05-28 09:02:52,755 DEBUG __init__.load(): Loading plugin taskmgr
2014-05-28 09:02:52,772 DEBUG __init__.load(): Loading plugin nsd
2014-05-28 09:02:52,772 DEBUG __init__.load_recursive(): Preloading plugin dependency: services
2014-05-28 09:02:52,773 DEBUG __init__.load(): Loading plugin services
2014-05-28 09:02:52,773 DEBUG __init__.load_recursive(): Preloading plugin dependency: dashboard
2014-05-28 09:02:52,773 DEBUG __init__.load(): Loading plugin dashboard
2014-05-28 09:02:52,775 DEBUG __init__.load(): Loading plugin services
2014-05-28 09:02:52,783 DEBUG __init__.load(): Loading plugin nsd
2014-05-28 09:02:52,784 DEBUG compat.Popen(): Popen: ['which', 'nsd']
2014-05-28 09:02:52,797 DEBUG __init__.load(): Loading plugin packages
2014-05-28 09:02:52,798 DEBUG __init__.load_recursive(): Preloading plugin dependency: terminal
2014-05-28 09:02:52,798 DEBUG __init__.load(): Loading plugin terminal
2014-05-28 09:02:52,809 DEBUG __init__.load(): Loading plugin packages
2014-05-28 09:02:52,810 DEBUG __init__.load(): Loading plugin megaraid
2014-05-28 09:02:52,810 WARNING __init__.load(): *** [megaraid] skipping due to FileDependency (/opt/MegaRAID/MegaCli/MegaCli)
2014-05-28 09:02:52,811 DEBUG __init__.load(): Loading plugin hosts
2014-05-28 09:02:52,811 DEBUG __init__.load(): Loading plugin sensors
2014-05-28 09:02:52,813 DEBUG __init__.load(): Loading plugin logs
2014-05-28 09:02:52,814 DEBUG __init__.load(): Loading plugin users
2014-05-28 09:02:52,815 DEBUG __init__.load(): Loading plugin csf
2014-05-28 09:02:52,815 DEBUG compat.Popen(): Popen: ['which', 'csf']
2014-05-28 09:02:52,829 WARNING __init__.load(): *** [csf] skipping due to BinaryDependency (csf)
2014-05-28 09:02:52,830 DEBUG __init__.load(): Loading plugin codemirror
2014-05-28 09:02:52,830 DEBUG __init__.load(): Loading plugin power
2014-05-28 09:02:52,832 DEBUG compat.Popen(): Popen: ['which', 'systemctl']
2014-05-28 09:02:52,845 DEBUG compat.Popen(): Popen: ['which', 'pm-hibernate']
2014-05-28 09:02:52,858 DEBUG __init__.load(): Loading plugin scripts
2014-05-28 09:02:52,859 DEBUG __init__.load(): Loading plugin db_common
2014-05-28 09:02:52,860 DEBUG __init__.load(): Loading plugin resolv
2014-05-28 09:02:52,861 DEBUG __init__.load(): Loading plugin samba
2014-05-28 09:02:52,862 DEBUG compat.Popen(): Popen: ['which', 'smbd']
2014-05-28 09:02:52,873 WARNING __init__.load(): *** [samba] skipping due to BinaryDependency (smbd)
2014-05-28 09:02:52,874 DEBUG __init__.load(): Loading plugin ajenti_org
2014-05-28 09:02:52,875 DEBUG __init__.load(): Loading plugin openvpn
2014-05-28 09:02:52,876 DEBUG compat.Popen(): Popen: ['which', 'openvpn']
2014-05-28 09:02:52,886 WARNING __init__.load(): *** [openvpn] skipping due to BinaryDependency (openvpn)
2014-05-28 09:02:52,887 DEBUG __init__.load(): Loading plugin dhcpd
2014-05-28 09:02:52,887 DEBUG compat.Popen(): Popen: ['which', 'dhcpd']
2014-05-28 09:02:52,897 DEBUG __init__.load(): Loading plugin configurator
2014-05-28 09:02:52,899 DEBUG __init__.load(): Loading plugin fm
2014-05-28 09:02:52,899 DEBUG __init__.load_recursive(): Preloading plugin dependency: tasks
2014-05-28 09:02:52,899 DEBUG __init__.load(): Loading plugin tasks
2014-05-28 09:02:52,899 DEBUG __init__.load_recursive(): Preloading plugin dependency: cron
2014-05-28 09:02:52,899 DEBUG __init__.load(): Loading plugin cron
2014-05-28 09:02:52,900 DEBUG compat.Popen(): Popen: ['which', 'crontab']
2014-05-28 09:02:52,910 DEBUG __init__.load(): Loading plugin tasks
2014-05-28 09:02:52,912 DEBUG __init__.load(): Loading plugin fm
2014-05-28 09:02:52,914 DEBUG __init__.load(): Loading plugin memcache
2014-05-28 09:02:52,914 DEBUG compat.Popen(): Popen: ['which', 'memcached']
2014-05-28 09:02:52,925 DEBUG __init__.load(): Loading plugin smartctl
2014-05-28 09:02:52,926 DEBUG compat.Popen(): Popen: ['which', 'smartctl']
2014-05-28 09:02:52,938 DEBUG __init__.load(): Loading plugin resources
2014-05-28 09:02:52,940 DEBUG __init__.load(): Loading plugin hddtemp
2014-05-28 09:02:52,941 DEBUG compat.Popen(): Popen: ['which', 'hddtemp']
2014-05-28 09:02:52,950 WARNING __init__.load(): *** [hddtemp] skipping due to BinaryDependency (hddtemp)
2014-05-28 09:02:52,951 DEBUG __init__.load(): Loading plugin webserver_common
2014-05-28 09:02:52,952 DEBUG __init__.load(): Loading plugin squid
2014-05-28 09:02:52,953 DEBUG compat.Popen(): Popen: ['which', 'squid3']
2014-05-28 09:02:52,963 WARNING __init__.load(): *** [squid] skipping due to BinaryDependency (squid3)
2014-05-28 09:02:52,963 DEBUG __init__.load(): Loading plugin ctdb
2014-05-28 09:02:52,964 DEBUG compat.Popen(): Popen: ['which', 'ctdb']
2014-05-28 09:02:52,977 WARNING __init__.load(): *** [ctdb] skipping due to BinaryDependency (ctdb)
2014-05-28 09:02:52,977 DEBUG __init__.load(): Loading plugin exports
2014-05-28 09:02:52,978 DEBUG compat.Popen(): Popen: ['which', 'nfsstat']
2014-05-28 09:02:52,988 WARNING __init__.load(): *** [exports] skipping due to BinaryDependency (nfsstat)
2014-05-28 09:02:52,989 DEBUG __init__.load(): Loading plugin lm_sensors
2014-05-28 09:02:52,989 DEBUG compat.Popen(): Popen: ['which', 'sensors']
2014-05-28 09:02:53,003 DEBUG __init__.load(): Loading plugin network
2014-05-28 09:02:53,007 DEBUG __init__.load(): Loading plugin fstab
2014-05-28 09:02:53,009 DEBUG __init__.load(): Loading plugin notepad
2014-05-28 09:02:53,010 DEBUG __init__.load(): Loading plugin nginx
2014-05-28 09:02:53,010 DEBUG compat.Popen(): Popen: ['which', 'nginx']
2014-05-28 09:02:53,023 DEBUG __init__.load(): Loading plugin apache
2014-05-28 09:02:53,023 DEBUG compat.Popen(): Popen: ['which', 'apache2']
2014-05-28 09:02:53,034 WARNING __init__.load(): *** [apache] skipping due to BinaryDependency (apache2)
2014-05-28 09:02:53,034 DEBUG __init__.load(): Loading plugin netatalk
2014-05-28 09:02:53,035 DEBUG compat.Popen(): Popen: ['which', 'afpd']
2014-05-28 09:02:53,048 WARNING __init__.load(): *** [netatalk] skipping due to BinaryDependency (afpd)
2014-05-28 09:02:53,048 DEBUG __init__.load(): Loading plugin apcups
2014-05-28 09:02:53,049 DEBUG compat.Popen(): Popen: ['which', 'apcaccess']
2014-05-28 09:02:53,062 WARNING __init__.load(): *** [apcups] skipping due to BinaryDependency (apcaccess)
2014-05-28 09:02:53,062 DEBUG __init__.load(): Loading plugin raid
2014-05-28 09:02:53,063 DEBUG compat.Popen(): Popen: ['which', 'mdadm']
2014-05-28 09:02:53,074 DEBUG __init__.load(): Loading plugin munin
2014-05-28 09:02:53,075 DEBUG compat.Popen(): Popen: ['which', 'munin-cron']
2014-05-28 09:02:53,086 WARNING __init__.load(): *** [munin] skipping due to BinaryDependency (munin-cron)
2014-05-28 09:02:53,086 DEBUG __init__.load(): Loading plugin plugins
2014-05-28 09:02:53,087 DEBUG __init__.load(): Loading plugin supervisor
2014-05-28 09:02:53,087 DEBUG compat.Popen(): Popen: ['which', 'supervisord']
2014-05-28 09:02:53,099 DEBUG __init__.load(): Loading plugin ipmi
2014-05-28 09:02:53,099 DEBUG compat.Popen(): Popen: ['which', 'ipmitool']
2014-05-28 09:02:53,110 WARNING __init__.load(): *** [ipmi] skipping due to BinaryDependency (ipmitool)
2014-05-28 09:02:53,111 DEBUG __init__.load(): Loading plugin psql
2014-05-28 09:02:53,111 DEBUG compat.Popen(): Popen: ['which', 'psql']
2014-05-28 09:02:53,125 DEBUG __init__.load(): Loading plugin iptables
2014-05-28 09:02:53,127 DEBUG __init__.load(): Loading plugin hdparm
2014-05-28 09:02:53,127 DEBUG compat.Popen(): Popen: ['which', 'hdparm']
2014-05-28 09:02:53,138 DEBUG __init__.load(): Loading plugin mysql
2014-05-28 09:02:53,139 DEBUG compat.Popen(): Popen: ['which', 'mysql']
2014-05-28 09:02:53,149 DEBUG compat.Popen(): Popen: ['which', 'mysqld_safe']
2014-05-28 09:02:53,161 DEBUG __init__.load(): Loading plugin bind9
2014-05-28 09:02:53,161 DEBUG compat.Popen(): Popen: ['which', 'named']
2014-05-28 09:02:53,172 DEBUG __init__.load(): Loading plugin vh-vsftpd
2014-05-28 09:02:53,174 DEBUG __init__.load_recursive(): Preloading plugin dependency: vh
2014-05-28 09:02:53,174 DEBUG __init__.load(): Loading plugin vh
2014-05-28 09:02:53,178 DEBUG __init__.load(): Loading plugin vh-vsftpd
2014-05-28 09:02:53,181 DEBUG compat.Popen(): Popen: ['which', 'vsftpd']
2014-05-28 09:02:53,196 DEBUG __init__.load(): Loading plugin vh-php-fpm
2014-05-28 09:02:53,197 DEBUG compat.Popen(): Popen: ['which', 'php-fpm']
2014-05-28 09:02:53,207 DEBUG __init__.load(): Loading plugin vh-gunicorn
2014-05-28 09:02:53,208 DEBUG __init__.load(): Loading plugin vh-mail
2014-05-28 09:02:53,209 DEBUG __init__.load(): Loading plugin vh-pureftpd
2014-05-28 09:02:53,210 DEBUG compat.Popen(): Popen: ['which', 'pure-pw']
2014-05-28 09:02:53,220 DEBUG compat.Popen(): Popen: ['which', 'pure-ftpd']
2014-05-28 09:02:53,230 DEBUG __init__.load(): Loading plugin vh-unicorn
2014-05-28 09:02:53,231 DEBUG compat.Popen(): Popen: ['which', 'unicorn_rails']
2014-05-28 09:02:53,241 WARNING __init__.load(): *** [vh-unicorn] skipping due to BinaryDependency (unicorn_rails)
2014-05-28 09:02:53,242 DEBUG __init__.load(): Loading plugin vh-puma
2014-05-28 09:02:53,242 DEBUG compat.Popen(): Popen: ['which', 'bundler']
2014-05-28 09:02:53,255 WARNING __init__.load(): *** [vh-puma] skipping due to BinaryDependency (bundler)
2014-05-28 09:02:53,256 DEBUG __init__.load(): Loading plugin vh-nodejs
2014-05-28 09:02:53,257 DEBUG __init__.load(): Loading plugin vh-mysql
2014-05-28 09:02:53,257 DEBUG compat.Popen(): Popen: ['which', 'mysql']
2014-05-28 09:02:53,267 DEBUG compat.Popen(): Popen: ['which', 'mysqld_safe']
2014-05-28 09:02:53,277 DEBUG __init__.load(): Loading plugin vh-nginx
2014-05-28 09:02:53,337 DEBUG __init__.instantiate(): Root context instantiated [Inflater] <ajenti.ui.inflater.Inflater object at 0x1fe4c10>
2014-05-28 09:02:53,340 DEBUG __init__.instantiate(): Root context instantiated [UI] <ajenti.ui.UI object at 0x1febd10>
2014-05-28 09:02:53,340 DEBUG inflater.precache(): Precaching layout main:input-dialog
2014-05-28 09:02:53,342 DEBUG inflater.precache(): Precaching layout main:file-dialog-save
2014-05-28 09:02:53,343 DEBUG inflater.precache(): Precaching layout main:file-dialog
2014-05-28 09:02:53,344 DEBUG inflater.precache(): Precaching layout main:passwd-main
2014-05-28 09:02:53,345 DEBUG inflater.precache(): Precaching layout taskmgr:main
2014-05-28 09:02:53,350 DEBUG inflater.precache(): Precaching layout dashboard:dash
2014-05-28 09:02:53,354 DEBUG inflater.precache(): Precaching layout dashboard:text
2014-05-28 09:02:53,355 DEBUG inflater.precache(): Precaching layout dashboard:welcome
2014-05-28 09:02:53,356 DEBUG inflater.precache(): Precaching layout services:bar
2014-05-28 09:02:53,356 DEBUG inflater.precache(): Precaching layout services:widget
2014-05-28 09:02:53,358 DEBUG inflater.precache(): Precaching layout services:main
2014-05-28 09:02:53,361 DEBUG inflater.precache(): Precaching layout nsd:main
2014-05-28 09:02:53,367 DEBUG inflater.precache(): Precaching layout terminal:config
2014-05-28 09:02:53,368 DEBUG inflater.precache(): Precaching layout terminal:main
2014-05-28 09:02:53,369 DEBUG inflater.precache(): Precaching layout packages:row
2014-05-28 09:02:53,370 DEBUG inflater.precache(): Precaching layout packages:installer
2014-05-28 09:02:53,371 DEBUG inflater.precache(): Precaching layout packages:headers
2014-05-28 09:02:53,371 DEBUG inflater.precache(): Precaching layout packages:main
2014-05-28 09:02:53,379 DEBUG inflater.precache(): Precaching layout hosts:main
2014-05-28 09:02:53,382 DEBUG inflater.precache(): Precaching layout sensors:cpu-line
2014-05-28 09:02:53,383 DEBUG inflater.precache(): Precaching layout sensors:cpu-widget
2014-05-28 09:02:53,383 DEBUG inflater.precache(): Precaching layout sensors:value-widget
2014-05-28 09:02:53,384 DEBUG inflater.precache(): Precaching layout sensors:progressbar-widget
2014-05-28 09:02:53,385 DEBUG inflater.precache(): Precaching layout logs:main
2014-05-28 09:02:53,389 DEBUG inflater.precache(): Precaching layout users:user-list
2014-05-28 09:02:53,395 DEBUG inflater.precache(): Precaching layout users:main
2014-05-28 09:02:53,415 DEBUG inflater.precache(): Precaching layout power:widget
2014-05-28 09:02:53,416 DEBUG inflater.precache(): Precaching layout scripts:widget
2014-05-28 09:02:53,420 DEBUG inflater.precache(): Precaching layout db_common:main
2014-05-28 09:02:53,425 DEBUG inflater.precache(): Precaching layout resolv:main
2014-05-28 09:02:53,426 DEBUG inflater.precache(): Precaching layout ajenti_org:config
2014-05-28 09:02:53,427 DEBUG inflater.precache(): Precaching layout ajenti_org:main
2014-05-28 09:02:53,428 DEBUG inflater.precache(): Precaching layout dhcpd:options
2014-05-28 09:02:53,428 DEBUG inflater.precache(): Precaching layout dhcpd:main
2014-05-28 09:02:53,432 DEBUG inflater.precache(): Precaching layout dhcpd:ranges
2014-05-28 09:02:53,433 DEBUG inflater.precache(): Precaching layout configurator:licensing
2014-05-28 09:02:53,434 DEBUG inflater.precache(): Precaching layout configurator:ad-sync-config
2014-05-28 09:02:53,435 DEBUG inflater.precache(): Precaching layout configurator:ldap-sync-config
2014-05-28 09:02:53,436 DEBUG inflater.precache(): Precaching layout configurator:main
2014-05-28 09:02:53,446 DEBUG inflater.precache(): Precaching layout cron:main
2014-05-28 09:02:53,453 DEBUG inflater.precache(): Precaching layout tasks:params-execute
2014-05-28 09:02:53,454 DEBUG inflater.precache(): Precaching layout tasks:params-rsync
2014-05-28 09:02:53,462 DEBUG inflater.precache(): Precaching layout tasks:params-copydir
2014-05-28 09:02:53,471 DEBUG inflater.precache(): Precaching layout tasks:main
2014-05-28 09:02:53,481 DEBUG inflater.precache(): Precaching layout fm:config
2014-05-28 09:02:53,482 DEBUG inflater.precache(): Precaching layout fm:main
2014-05-28 09:02:53,494 DEBUG inflater.precache(): Precaching layout memcache:widget
2014-05-28 09:02:53,495 DEBUG inflater.precache(): Precaching layout smartctl:widget
2014-05-28 09:02:53,496 DEBUG inflater.precache(): Precaching layout webserver_common:main
2014-05-28 09:02:53,517 DEBUG inflater.precache(): Precaching layout lm_sensors:widget
2014-05-28 09:02:53,519 DEBUG inflater.precache(): Precaching layout network:bit-linux-basic
2014-05-28 09:02:53,519 DEBUG inflater.precache(): Precaching layout network:bit-linux-ifupdown
2014-05-28 09:02:53,520 DEBUG inflater.precache(): Precaching layout network:widget
2014-05-28 09:02:53,521 DEBUG inflater.precache(): Precaching layout network:main
2014-05-28 09:02:53,524 DEBUG inflater.precache(): Precaching layout network:bit-linux-dhcp
2014-05-28 09:02:53,525 DEBUG inflater.precache(): Precaching layout network:bit-linux-ipv4
2014-05-28 09:02:53,526 DEBUG inflater.precache(): Precaching layout fstab:free-widget
2014-05-28 09:02:53,527 DEBUG inflater.precache(): Precaching layout fstab:iio-widget
2014-05-28 09:02:53,527 DEBUG inflater.precache(): Precaching layout fstab:widget
2014-05-28 09:02:53,528 DEBUG inflater.precache(): Precaching layout fstab:main
2014-05-28 09:02:53,535 DEBUG inflater.precache(): Precaching layout notepad:config
2014-05-28 09:02:53,536 DEBUG inflater.precache(): Precaching layout notepad:listitem
2014-05-28 09:02:53,536 DEBUG inflater.precache(): Precaching layout notepad:main
2014-05-28 09:02:53,544 DEBUG inflater.precache(): Precaching layout raid:main
2014-05-28 09:02:53,547 DEBUG inflater.precache(): Precaching layout plugins:main
2014-05-28 09:02:53,553 DEBUG inflater.precache(): Precaching layout supervisor:main
2014-05-28 09:02:53,556 DEBUG __init__.instantiate(): Root context instantiated [SystemdServiceManager] <ajenti.plugins.services.sm_systemd.SystemdServiceManager object at 0x29d4190>
2014-05-28 09:02:53,557 DEBUG __init__.instantiate(): Root context instantiated [SupervisorServiceManager] <ajenti.plugins.supervisor.client.SupervisorServiceManager object at 0x29d41d0>
2014-05-28 09:02:53,557 DEBUG __init__.instantiate(): Root context instantiated [ServiceMultiplexor] <ajenti.plugins.services.api.ServiceMultiplexor object at 0x29d2c50>
2014-05-28 09:02:53,577 DEBUG sm_systemd.get_all(): units size: 674
2014-05-28 09:02:53,581 DEBUG compat.Popen(): Popen: ['supervisorctl', 'status', u'supervisor']
2014-05-28 09:02:53,707 DEBUG inflater.precache(): Precaching layout iptables:option-state
2014-05-28 09:02:53,709 DEBUG inflater.precache(): Precaching layout iptables:option-port
2014-05-28 09:02:53,709 DEBUG inflater.precache(): Precaching layout iptables:option-custom
2014-05-28 09:02:53,710 DEBUG inflater.precache(): Precaching layout iptables:option-address
2014-05-28 09:02:53,711 DEBUG inflater.precache(): Precaching layout iptables:option
2014-05-28 09:02:53,712 DEBUG inflater.precache(): Precaching layout iptables:option-interface
2014-05-28 09:02:53,712 DEBUG inflater.precache(): Precaching layout iptables:option-reject-with
2014-05-28 09:02:53,713 DEBUG inflater.precache(): Precaching layout iptables:option-ports
2014-05-28 09:02:53,713 DEBUG inflater.precache(): Precaching layout iptables:option-match
2014-05-28 09:02:53,714 DEBUG inflater.precache(): Precaching layout iptables:main
2014-05-28 09:02:53,718 DEBUG inflater.precache(): Precaching layout iptables:option-protocol
2014-05-28 09:02:53,718 DEBUG inflater.precache(): Precaching layout hdparm:widget
2014-05-28 09:02:53,719 DEBUG inflater.precache(): Precaching layout mysql:config
2014-05-28 09:02:53,720 DEBUG inflater.precache(): Precaching layout bind9:main
2014-05-28 09:02:53,727 DEBUG inflater.precache(): Precaching layout vh:main-backend-params-python-wsgi
2014-05-28 09:02:53,732 DEBUG inflater.precache(): Precaching layout vh:main-website
2014-05-28 09:02:53,757 DEBUG inflater.precache(): Precaching layout vh:main-backend-params-fcgi
2014-05-28 09:02:53,757 DEBUG inflater.precache(): Precaching layout vh:main-backend-params-ruby-unicorn
2014-05-28 09:02:53,758 DEBUG inflater.precache(): Precaching layout vh:main-backend-params-php-fcgi
2014-05-28 09:02:53,763 DEBUG inflater.precache(): Precaching layout vh:main-backend-params-nodejs
2014-05-28 09:02:53,764 DEBUG inflater.precache(): Precaching layout vh:main-backend-params-proxy
2014-05-28 09:02:53,765 DEBUG inflater.precache(): Precaching layout vh:main
2014-05-28 09:02:53,768 DEBUG inflater.precache(): Precaching layout vh:ext-processes
2014-05-28 09:02:53,779 DEBUG inflater.precache(): Precaching layout vh:main-backend-params-ruby-puma
2014-05-28 09:02:53,781 DEBUG inflater.precache(): Precaching layout vh:main-website-location
2014-05-28 09:02:53,786 DEBUG inflater.precache(): Precaching layout vh:not-configured
2014-05-28 09:02:53,787 DEBUG inflater.precache(): Precaching layout vh:main-backend-params-static
2014-05-28 09:02:53,787 DEBUG inflater.precache(): Precaching layout vh-vsftpd:ext
2014-05-28 09:02:53,788 DEBUG inflater.precache(): Precaching layout vh-mail:main
2014-05-28 09:02:53,809 DEBUG inflater.precache(): Precaching layout vh-mail:not-configured
2014-05-28 09:02:53,809 DEBUG inflater.precache(): Precaching layout vh-pureftpd:ext
2014-05-28 09:02:53,810 DEBUG inflater.precache(): Precaching layout vh-mysql:ext
2014-05-28 09:02:53,812 INFO core.run(): Starting server on (u'173.230.141.187', 8000)
2014-05-28 09:02:53,819 DEBUG __init__.instantiate(): Root context instantiated [SessionMiddleware] <ajenti.middleware.SessionMiddleware object at 0x2747d50>
2014-05-28 09:02:53,819 DEBUG __init__.instantiate(): Root context instantiated [AuthenticationMiddleware] <ajenti.middleware.AuthenticationMiddleware object at 0x273c090>
2014-05-28 09:02:53,820 DEBUG __init__.instantiate(): Root context instantiated [CentralDispatcher] <ajenti.routing.CentralDispatcher object at 0x273cdd0>
2014-05-28 09:02:53,820 INFO core.run(): SSL enabled: /etc/ajenti/ajenti.pem
2014-05-28 09:02:53,822 DEBUG __init__.instantiate(): Root context instantiated [IPCServer] <ajenti.ipc.IPCServer object at 0x273cf10>
2014-05-28 09:02:53,822 DEBUG __init__.instantiate(): Root context instantiated [Licensing] <ajenti.licensing.Licensing object at 0x27410d0>
2014-05-28 09:02:53,825 DEBUG feedback.send(): Feedback >> ping ({'edition': 'vanilla+vh', 'version': '1.2.21.4', 'os': 'arch', 'id': 46635})
2014-05-28 09:02:54,066 DEBUG feedback.send(): Feedback << {"status": "ok"}
2014-05-28 09:02:56,097 DEBUG handler.run_application(): Initializing WebSocket
2014-05-28 09:02:56,098 DEBUG handler.upgrade_websocket(): Validating WebSocket request
2014-05-28 09:02:56,098 DEBUG handler.upgrade_connection(): Attempting to upgrade connection
2014-05-28 09:02:56,098 DEBUG handler.upgrade_connection(): WebSocket request accepted, switching protocols
2014-05-28 09:02:56,098 DEBUG virtsocket.spawn(): Spawning sub-Socket Greenlet: send_into_ws
2014-05-28 09:02:56,099 DEBUG virtsocket.spawn(): Spawning sub-Socket Greenlet: read_from_ws
2014-05-28 09:02:56,099 DEBUG virtsocket.spawn(): Spawning sub-Socket Greenlet: _heartbeat
2014-05-28 09:02:56,099 DEBUG virtsocket.spawn(): Spawning sub-Socket Greenlet: _heartbeat_timeout
2014-05-28 09:02:56,670 DEBUG __init__.instantiate(): Root context instantiated [MainServer] <ajenti.plugins.main.main.MainServer object at 0x35411d0>
2014-05-28 09:02:56,672 DEBUG __init__.instantiate(): Root context instantiated [TerminalHttp] <ajenti.plugins.terminal.main.TerminalHttp object at 0x3541210>
2014-05-28 09:02:56,673 DEBUG __init__.instantiate(): Root context instantiated [UploadReceiver] <ajenti.plugins.fm.fm.UploadReceiver object at 0x3541490>
2014-05-28 09:02:56,673 DEBUG __init__.instantiate(): Root context instantiated [ContentServer] <ajenti.plugins.resources.server.ContentServer object at 0x35414d0>
2014-05-28 09:02:57,023 DEBUG websocket.close(): Closed WebSocket
2014-05-28 09:02:57,129 DEBUG compat.Popen(): Popen: ./compile_resources.py nocompress
2014-05-28 09:02:57,172 DEBUG __init__.instantiate(): Root context instantiated [ContentCompressor] <ajenti.plugins.resources.server.ContentCompressor object at 0x354b810>
2014-05-28 09:03:00,796 DEBUG __init__.instantiate(): Root context instantiated [UserManager] <ajenti.users.UserManager object at 0x35606d0>
2014-05-28 09:03:00,798 DEBUG __init__.instantiate(): Root context instantiated [AjentiSyncProvider] <ajenti.usersync.local.AjentiSyncProvider object at 0x3560dd0>
2014-05-28 09:03:00,871 INFO users.check_password(): user root logged in through AjentiSyncProvider from 108.76.136.227
2014-05-28 09:03:01,200 DEBUG __init__.instantiate(): Context for root instantiated [MainServer] <ajenti.plugins.main.main.MainServer object at 0x3560f90>
2014-05-28 09:03:01,202 DEBUG __init__.instantiate(): Context for root instantiated [TerminalHttp] <ajenti.plugins.terminal.main.TerminalHttp object at 0x3560fd0>
2014-05-28 09:03:01,202 DEBUG __init__.instantiate(): Context for root instantiated [UploadReceiver] <ajenti.plugins.fm.fm.UploadReceiver object at 0x3560ed0>
2014-05-28 09:03:01,202 DEBUG __init__.instantiate(): Context for root instantiated [ContentServer] <ajenti.plugins.resources.server.ContentServer object at 0x3560e90>
2014-05-28 09:03:01,666 DEBUG compat.Popen(): Popen: ./compile_resources.py nocompress
2014-05-28 09:03:01,689 DEBUG compat.Popen(): Popen: ./compile_resources.py nocompress
2014-05-28 09:03:03,675 DEBUG handler.run_application(): Initializing WebSocket
2014-05-28 09:03:03,676 DEBUG handler.upgrade_websocket(): Validating WebSocket request
2014-05-28 09:03:03,676 DEBUG handler.upgrade_connection(): Attempting to upgrade connection
2014-05-28 09:03:03,676 DEBUG handler.upgrade_connection(): WebSocket request accepted, switching protocols
2014-05-28 09:03:03,677 DEBUG virtsocket.spawn(): Spawning sub-Socket Greenlet: send_into_ws
2014-05-28 09:03:03,677 DEBUG virtsocket.spawn(): Spawning sub-Socket Greenlet: read_from_ws
2014-05-28 09:03:03,677 DEBUG virtsocket.spawn(): Spawning sub-Socket Greenlet: _heartbeat
2014-05-28 09:03:03,677 DEBUG virtsocket.spawn(): Spawning sub-Socket Greenlet: _heartbeat_timeout
2014-05-28 09:03:03,959 DEBUG __init__.instantiate(): Context for root instantiated [UI] <ajenti.ui.UI object at 0x36813d0>
2014-05-28 09:03:03,968 DEBUG __init__.instantiate(): Context for root instantiated [PasswordChangeSection] <main:section # 9777>
2014-05-28 09:03:03,975 DEBUG __init__.instantiate(): Context for root instantiated [TaskManager] <main:section # 9802>
2014-05-28 09:03:04,002 DEBUG __init__.instantiate(): Context for root instantiated [AjentiUpdater] <ajenti.plugins.dashboard.updater.AjentiUpdater object at 0x3696d10>
2014-05-28 09:03:04,004 DEBUG __init__.instantiate(): Context for root instantiated [ArchPackageManager] <ajenti.plugins.packages.pm_pacman.ArchPackageManager object at 0x3696ed0>
2014-05-28 09:03:04,004 DEBUG __init__.instantiate(): Context for root instantiated [Dash] <main:section # 9891>
2014-05-28 09:03:04,011 DEBUG __init__.instantiate(): Context for root instantiated [SystemdServiceManager] <ajenti.plugins.services.sm_systemd.SystemdServiceManager object at 0x3698ad0>
2014-05-28 09:03:04,011 DEBUG __init__.instantiate(): Context for root instantiated [SupervisorServiceManager] <ajenti.plugins.supervisor.client.SupervisorServiceManager object at 0x3698c50>
2014-05-28 09:03:04,011 DEBUG __init__.instantiate(): Context for root instantiated [ServiceMultiplexor] <ajenti.plugins.services.api.ServiceMultiplexor object at 0x36988d0>
2014-05-28 09:03:04,011 DEBUG __init__.instantiate(): Context for root instantiated [Services] <main:section # 10022>
2014-05-28 09:03:04,027 DEBUG __init__.instantiate(): Context for root instantiated [NSDPlugin] <main:section # 10073>
2014-05-28 09:03:04,032 DEBUG __init__.instantiate(): Context for root instantiated [Terminals] <main:section # 10295>
2014-05-28 09:03:04,047 DEBUG __init__.instantiate(): Context for root instantiated [Packages] <main:section # 10324>
2014-05-28 09:03:04,052 DEBUG __init__.instantiate(): Context for root instantiated [Hosts] <main:section # 10579>
2014-05-28 09:03:04,060 DEBUG __init__.instantiate(): Context for root instantiated [Logs] <main:section # 10648>
2014-05-28 09:03:04,097 DEBUG __init__.instantiate(): Context for root instantiated [LinuxUsersBackend] <ajenti.plugins.users.main.LinuxUsersBackend object at 0x3a29490>
2014-05-28 09:03:04,099 DEBUG __init__.instantiate(): Context for root instantiated [Users] <main:section # 10838>
2014-05-28 09:03:04,106 DEBUG __init__.instantiate(): Context for root instantiated [Resolv] <main:section # 11631>
2014-05-28 09:03:04,113 DEBUG __init__.instantiate(): Context for root instantiated [DHCPDPlugin] <main:section # 11674>
2014-05-28 09:03:04,130 DEBUG __init__.instantiate(): Context for root instantiated [ClassConfigManager] <ajenti.plugins.configurator.configurator.ClassConfigManager object at 0x3f33bd0>
2014-05-28 09:03:04,135 DEBUG __init__.instantiate(): Context for root instantiated [Configurator] <main:section # 11798>
2014-05-28 09:03:04,144 DEBUG __init__.instantiate(): Context for root instantiated [Cron] <main:section # 12185>
2014-05-28 09:03:04,166 DEBUG __init__.instantiate(): Root context instantiated [TaskManager] <ajenti.plugins.tasks.manager.TaskManager object at 0x3f54590>
2014-05-28 09:03:04,167 DEBUG __init__.instantiate(): Context for root instantiated [Tasks] <main:section # 12370>
2014-05-28 09:03:04,178 DEBUG __init__.instantiate(): Context for root instantiated [FMBackend] <ajenti.plugins.fm.backend.FMBackend object at 0x3f59590>
2014-05-28 09:03:04,191 DEBUG __init__.instantiate(): Context for root instantiated [FileManager] <main:section # 12637>
2014-05-28 09:03:04,207 DEBUG compat.Popen(): Popen: ['df', '-P']
2014-05-28 09:03:04,233 DEBUG compat.Popen(): Popen: ['pacman', '-Qu']
2014-05-28 09:03:04,278 DEBUG __init__.instantiate(): Context for root instantiated [MountsBackend] <ajenti.plugins.fstab.main.MountsBackend object at 0x42f5650>
2014-05-28 09:03:04,281 DEBUG __init__.instantiate(): Context for root instantiated [Filesystems] <main:section # 12898>
2014-05-28 09:03:04,315 DEBUG __init__.instantiate(): Context for root instantiated [Controller] <ajenti.plugins.notepad.notepad.Controller object at 0x430de10>
2014-05-28 09:03:04,316 DEBUG __init__.instantiate(): Context for root instantiated [Notepad] <main:section # 13188>
2014-05-28 09:03:04,328 DEBUG __init__.instantiate(): Context for root instantiated [RAIDManager] <ajenti.plugins.raid.api.RAIDManager object at 0x4301cd0>
2014-05-28 09:03:04,328 DEBUG __init__.instantiate(): Context for root instantiated [RAID] <main:section # 13725>
2014-05-28 09:03:04,338 DEBUG __init__.instantiate(): Context for root instantiated [PluginsPlugin] <main:section # 13806>
2014-05-28 09:03:04,364 DEBUG sm_systemd.get_all(): units size: 674
2014-05-28 09:03:04,366 DEBUG compat.Popen(): Popen: ['supervisorctl', 'status', u'supervisor']
2014-05-28 09:03:04,536 DEBUG compat.Popen(): Popen: ['supervisorctl', 'status', 'supervisor']
2014-05-28 09:03:04,557 DEBUG compat.Popen(): Popen: ['pacman', '-Qs']
2014-05-28 09:03:04,615 DEBUG dash.update_check_callback(): Update availability: []
2014-05-28 09:03:04,682 DEBUG __init__.instantiate(): Context for root instantiated [Supervisor] <main:section # 13900>
2014-05-28 09:03:04,691 DEBUG __init__.instantiate(): Context for root instantiated [PSQLPlugin] <main:section # 14334>
2014-05-28 09:03:04,702 DEBUG __init__.instantiate(): Context for root instantiated [ArchFirewallManager] <ajenti.plugins.iptables.main.ArchFirewallManager object at 0x4729590>
2014-05-28 09:03:04,703 DEBUG __init__.instantiate(): Context for root instantiated [Firewall] <main:section # 14460>
2014-05-28 09:03:04,716 DEBUG __init__.instantiate(): Context for root instantiated [MySQLDB] <ajenti.plugins.mysql.api.MySQLDB object at 0x46eb950>
2014-05-28 09:03:04,717 DEBUG __init__.instantiate(): Context for root instantiated [MySQLPlugin] <main:section # 14569>
2014-05-28 09:03:04,735 DEBUG __init__.instantiate(): Context for root instantiated [BIND9Plugin] <main:section # 14695>
2014-05-28 09:03:04,746 DEBUG __init__.instantiate(): Root context instantiated [Static] <ajenti.plugins.vh.gate_static.Static object at 0x46fb110>
2014-05-28 09:03:04,746 DEBUG __init__.instantiate(): Root context instantiated [ProxyPass] <ajenti.plugins.vh.gate_proxy.ProxyPass object at 0x46fb150>
2014-05-28 09:03:04,747 DEBUG __init__.instantiate(): Root context instantiated [FCGIPass] <ajenti.plugins.vh.gate_fcgi.FCGIPass object at 0x46fb210>
2014-05-28 09:03:04,747 DEBUG __init__.instantiate(): Root context instantiated [PHPFPM] <ajenti.plugins.vh-php-fpm.phpfpm.PHPFPM object at 0x46fb250>
2014-05-28 09:03:04,747 DEBUG __init__.instantiate(): Root context instantiated [Gunicorn] <ajenti.plugins.vh-gunicorn.gunicorn.Gunicorn object at 0x46fb290>
2014-05-28 09:03:04,748 DEBUG __init__.instantiate(): Root context instantiated [NodeJS] <ajenti.plugins.vh-nodejs.nodejs.NodeJS object at 0x46fb2d0>
2014-05-28 09:03:04,750 DEBUG __init__.instantiate(): Root context instantiated [Processes] <ajenti.plugins.vh.processes.Processes object at 0x46fb310>
2014-05-28 09:03:04,750 DEBUG __init__.instantiate(): Root context instantiated [VSFTPD] <ajenti.plugins.vh-vsftpd.vsftpd.VSFTPD object at 0x46fb350>
2014-05-28 09:03:04,751 DEBUG __init__.instantiate(): Root context instantiated [PureFTPD] <ajenti.plugins.vh-pureftpd.pureftpd.PureFTPD object at 0x46fb390>
2014-05-28 09:03:04,755 DEBUG __init__.instantiate(): Root context instantiated [SupervisorRestartable] <ajenti.plugins.vh.processes.SupervisorRestartable object at 0x46fb3d0>
2014-05-28 09:03:04,759 DEBUG __init__.instantiate(): Root context instantiated [PHPFPMRestartable] <ajenti.plugins.vh-php-fpm.phpfpm.PHPFPMRestartable object at 0x46fb410>
2014-05-28 09:03:04,761 DEBUG __init__.instantiate(): Root context instantiated [EximRestartable] <ajenti.plugins.vh-mail.api.EximRestartable object at 0x46fb450>
2014-05-28 09:03:04,763 DEBUG __init__.instantiate(): Root context instantiated [CourierIMAPRestartable] <ajenti.plugins.vh-mail.api.CourierIMAPRestartable object at 0x46fb490>
2014-05-28 09:03:04,767 DEBUG __init__.instantiate(): Root context instantiated [CourierAuthRestartable] <ajenti.plugins.vh-mail.api.CourierAuthRestartable object at 0x46fb4d0>
2014-05-28 09:03:04,769 DEBUG __init__.instantiate(): Root context instantiated [NGINXRestartable] <ajenti.plugins.vh-nginx.nginx.NGINXRestartable object at 0x46fb510>
2014-05-28 09:03:04,770 DEBUG __init__.instantiate(): Root context instantiated [NginxWebserver] <ajenti.plugins.vh-nginx.nginx.NginxWebserver object at 0x46fb0d0>
2014-05-28 09:03:04,771 DEBUG __init__.instantiate(): Root context instantiated [VHManager] <ajenti.plugins.vh.api.VHManager object at 0x46f1ed0>
2014-05-28 09:03:04,774 DEBUG __init__.instantiate(): Context for root instantiated [WebsitesPlugin] <main:section # 14923>
2014-05-28 09:03:04,815 DEBUG __init__.instantiate(): Context for root instantiated [WebsiteEditorPlugin] <main:section # 15002>
2014-05-28 09:03:04,821 DEBUG __init__.instantiate(): Context for root instantiated [MailEximCourierBackend] <ajenti.plugins.vh-mail.api.MailEximCourierBackend object at 0x4df3e50>
2014-05-28 09:03:04,821 DEBUG __init__.instantiate(): Context for root instantiated [MailManager] <ajenti.plugins.vh-mail.api.MailManager object at 0x4df3550>
2014-05-28 09:03:04,850 DEBUG __init__.instantiate(): Context for root instantiated [MailPlugin] <main:section # 16017>
2014-05-28 09:03:04,853 DEBUG __init__.instantiate(): Context for root instantiated [HostnameSensor] <ajenti.plugins.sensors.hostname.HostnameSensor object at 0x4e21810>
2014-05-28 09:03:04,857 DEBUG __init__.instantiate(): Context for root instantiated [MemorySensor] <ajenti.plugins.sensors.memory.MemorySensor object at 0x4e21ad0>
2014-05-28 09:03:04,862 DEBUG __init__.instantiate(): Context for root instantiated [SwapSensor] <ajenti.plugins.sensors.memory.SwapSensor object at 0x4e28110>
2014-05-28 09:03:04,873 DEBUG __init__.instantiate(): Context for root instantiated [UnixUptimeSensor] <ajenti.plugins.sensors.uptime.UnixUptimeSensor object at 0x4e28910>
2014-05-28 09:03:04,878 DEBUG __init__.instantiate(): Context for root instantiated [PowerSensor] <ajenti.plugins.power.power.PowerSensor object at 0x4e2d190>
2014-05-28 09:03:04,881 DEBUG __init__.instantiate(): Context for root instantiated [BatterySensor] <ajenti.plugins.power.power.BatterySensor object at 0x4e2d650>
2014-05-28 09:03:04,882 DEBUG __init__.instantiate(): Context for root instantiated [SystemdPowerController] <ajenti.plugins.power.api.SystemdPowerController object at 0x4e2da90>
2014-05-28 09:03:04,882 DEBUG compat.Popen(): Popen: ['which', 'systemctl']
2014-05-28 09:03:04,923 DEBUG __init__.instantiate(): Context for root instantiated [CPUSensor] <ajenti.plugins.sensors.cpu.CPUSensor object at 0x4e2dc90>
2014-05-28 09:03:05,466 DEBUG main.send_debug(): {'Starting PasswordChangeSection': 0.004792928695678711, 'HTTP /ajenti:static/resources.css': 0.23829197883605957, 'Starting Notepad': 0.03334498405456543, 'Starting Filesystems': 0.08857893943786621, 'Starting WebsitesPlugin': 0.03696417808532715, 'Starting Configurator': 0.02201104164123535, 'Starting MailPlugin': 0.03468203544616699, 'HTTP /ajenti:static/main/fontawesome.woff': 0.00010704994201660156, 'HTTP /ajenti:static/resources.js': 0.15116095542907715, 'Starting NSDPlugin': 0.014818906784057617, 'Starting Packages': 0.014456033706665039, 'HTTP /ajenti:static/main/error.jpeg': 0.00020503997802734375, 'Starting Supervisor': 0.3432908058166504, 'HTTP /ajenti:static/main/icon.png': 0.0001049041748046875, 'Starting BIND9Plugin': 0.017451047897338867, 'HTTP /ajenti:static/main/OpenSans-Bold.woff': 0.0001468658447265625, 'Starting Terminals': 0.004135847091674805, 'Starting Resolv': 0.005337953567504883, 'Starting DHCPDPlugin': 0.005897998809814453, 'Starting MySQLPlugin': 0.013226985931396484, 'Starting WebsiteEditorPlugin': 0.03995490074157715, 'Starting PluginsPlugin': 0.008604049682617188, 'Starting TaskManager': 0.006443023681640625, 'Starting FileManager': 0.022871017456054688, 'Starting Logs': 0.006819963455200195, 'HTTP /': 0.011819124221801758, 'Starting Users': 0.03921103477478027, 'Starting RAID': 0.011841058731079102, 'HTTP /ajenti:static/main/icon-connecting.png': 0.0007069110870361328, 'Starting Firewall': 0.011388063430786133, 'HTTP /ajenti:static/main/PS-Bold.woff': 0.0003402233123779297, 'Starting plugins': 0.8885290622711182, 'Starting Dash': 0.028510093688964844, 'Starting PSQLPlugin': 0.007671833038330078, 'Starting Hosts': 0.00395512580871582, 'Starting Tasks': 0.021775007247924805, 'Rendering': 0.007040262222290039, 'Total': 0.004951000213623047, 'Starting Services': 0.006192922592163086, 'HTTP /ajenti:auth': 0.08075809478759766, 'Starting Cron': 0.008481025695800781}
2014-05-28 09:03:10,420 DEBUG main.send_debug(): {'Rendering': 0.0015110969543457031, 'Total': 0.003963947296142578, 'Handling event': 0.0018308162689208984}
2014-05-28 09:03:15,264 DEBUG compat.Popen(): Popen: ['mysql', u'-uroot', '-h', u'localhost']
2014-05-28 09:03:15,303 DEBUG api.query(): SHOW DATABASES;
2014-05-28 09:03:15,364 DEBUG main.send_debug(): {'Rendering': 0.0028769969940185547, 'Total': 0.2165060043334961, 'Handling event': 0.21259498596191406}
2014-05-28 09:03:15,457 DEBUG main.send_debug(): {'Total': 0.0006260871887207031}
2014-05-28 09:03:20,670 DEBUG compat.Popen(): Popen: ['which', 'node']
2014-05-28 09:03:20,696 DEBUG compat.Popen(): Popen: ['chgrp', 'ftp', u'/srv/antergos.org']
2014-05-28 09:03:20,750 DEBUG compat.Popen(): Popen: ['chmod', 'g+w', u'/srv/antergos.org']
2014-05-28 09:03:20,781 DEBUG compat.Popen(): Popen: ['db_load', '-T', '-t', 'hash', '-f', '/tmp/tmpW8ZvYY', '/etc/vsftpd/users.db']
2014-05-28 09:03:20,820 DEBUG compat.Popen(): Popen: ['chown', 'www-data:', '/var/www']
Please look up a full traceback in /var/log/ajenti/ajenti.log
Closing this as I opted to use docker to run ajenti in an ubuntu container instead of directly on my Arch server.
I mentioned this before, I think there is an issue with the systemd plugin. It doesn't appear to be returning any data when called? I'm not really sure if that is causing this issue though :confused:
Ajenti bug report
Log content: