I'm using Airflow in EC2 CentOS with systemd to manage daemons for starting airflow processes (ie: webserver, worker and scheduler).
When I run sudo systemctl start airflow-webserver
: ec2-user : TTY=pts/0 ; PWD=/ ; USER=root ; COMMAND=/bin/systemctl enable airflow-webserver
Oct 30 01:27:37 ip-171-32-6-92.us-east-2.compute.internal sudo[11680]: ec2-user : TTY=pts/0 ; PWD=/ ; USER=root ; COMMAND=/bin/systemctl start airflow-webserver
Oct 30 01:27:37 ip-171-32-6-92.us-east-2.compute.internal systemd[11684]: Failed at step EXEC spawning /home/ec2-user/.local/bin/airflow: Permission denied
Oct 30 01:27:37 ip-171-32-6-92.us-east-2.compute.internal systemd[1]: airflow-webserver.service: main process exited, code=exited, status=203/EXEC
Oct 30 01:27:37 ip-171-32-6-92.us-east-2.compute.internal systemd[1]: Unit airflow-webserver.service entered failed state.
Oct 30 01:27:37 ip-171-32-6-92.us-east-2.compute.internal systemd[1]: airflow-webserver.service failed
airflow-webserver.service
[Unit]
Description=Airflow webserver daemon
After=network.target postgresql.service mysql.service redis.service rabbitmq-server.service
Wants=postgresql.service mysql.service redis.service rabbitmq-server.service
[Service]
EnvironmentFile=/etc/sysconfig/airflow
User=airflow
Group=airflow
Type=simple
ExecStart=/home/ec2-user/.local/bin/airflow webserver --pid /run/airflow/webserver.pid
RestartSec=5s
PrivateTmp=true
[Install]
WantedBy=multi-user.target
airflow group and user are present:
$ less /etc/group
# airflow:x:1001:ec2-user
$less etc/psswd
# ec2-user:x:1000:1000:EC2 Default User:/home/ec2-user:/bin/bash
# tss:x:59:59:Account used by the trousers package to sandbox the tcsd # daemon:/dev/null:/sbin/nologin
# airflow:x:1001:1001::/home/airflow:/bin/bash
THIS does not help.
UPDATE
after creating an airflow user and installing airflow under usr/local/bin then changing the ExecStart to usr/local/bin/airflow webserver --pid /run/airflow/webserver.pid I was able to get passed the initial permission denied. However now I get this error:
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: PermissionError: [Errno 13] Permission denied: '${AIRFLOW_HOME}'
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: During handling of the above exception, another exception occurred:
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: Traceback (most recent call last):
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: File "/usr/local/bin/airflow", line 25, in <module>
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: from airflow.configuration import conf
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: File "/usr/local/lib/python3.7/site-packages/airflow/__init__.py", line 31, in <module>
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: from airflow.utils.log.logging_mixin import LoggingMixin
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: File "/usr/local/lib/python3.7/site-packages/airflow/utils/__init__.py", line 24, in <module>
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: from .decorators import apply_defaults as _apply_defaults
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: File "/usr/local/lib/python3.7/site-packages/airflow/utils/decorators.py", line 34, in <module>
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: from airflow import settings
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: File "/usr/local/lib/python3.7/site-packages/airflow/settings.py", line 36, in <module>
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: from airflow.configuration import conf, AIRFLOW_HOME, WEBSERVER_CONFIG # NOQA F401
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: File "/usr/local/lib/python3.7/site-packages/airflow/configuration.py", line 523, in <module>
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: mkdir_p(AIRFLOW_HOME)
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: File "/usr/local/lib/python3.7/site-packages/airflow/configuration.py", line 505, in mkdir_p
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: 'Error creating {}: {}'.format(path, exc.strerror))
Oct 31 18:44:12 ip-172-31-6-92.us-east-2.compute.internal airflow[31430]: airflow.exceptions.AirflowConfigException: Error creating ${AIRFLOW_HOME}: Permission denied
This is because you are trying to run as airflow user but that path to airflow binary is in /home/ec2-user/.local/bin/airflow which is a HOME directory for ec2-user.
Install airflow in a directory where your airflow users have permission to.
Related
I have followed the following tutorial to install and configure Prometheus on EC2 instance
https://codewizardly.com/prometheus-on-aws-ec2-part1/
I can access it from ssh and check it is status and it is working, but when try to open it from browser it does not open, although I have a security group with the required ports open (9090, 9100, 9093)
This is the output of : sudo systemctl status prometheus
Nov 22 16:20:03 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:03 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:03 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:03 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:03 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:03 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:03 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:08 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:08 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
Nov 22 16:20:08 ip-172-31-22-19 prometheus[462]: level=info ts=2022-11-22T16:20>
I just install the elasticsearch but when I try to start is not work. Anyone have any idea what I can do?
sudo journalctl --unit elasticsearch
-- Logs begin at Sat 2020-08-29 09:54:58 UTC, end at Sat 2020-08-29 13:15:35 UTC. --
Aug 29 10:10:28 meriadoc.dallas-idc.com systemd[1]: Starting Elasticsearch...
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: fatal error in thread [main], exiting
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: java.lang.NoClassDefFoundError: Could not initialize class com.sun.jna.Native
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.systemd.Libsystemd.lambda$static$0(Libsystemd.java:34)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at java.base/java.security.AccessController.doPrivileged(AccessController.java:312)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.systemd.Libsystemd.<clinit>(Libsystemd.java:33)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.systemd.SystemdPlugin.sd_notify(SystemdPlugin.java:126)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.systemd.SystemdPlugin.onNodeStarted(SystemdPlugin.java:137)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at java.base/java.util.ArrayList.forEach(ArrayList.java:1510)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.node.Node.start(Node.java:868)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.bootstrap.Bootstrap.start(Bootstrap.java:317)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:402)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:170)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:161)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:127)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.cli.Command.main(Command.java:90)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:126)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]: at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:92)
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd[1]: elasticsearch.service: main process exited, code=exited, status=1/FAILURE
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd[1]: Failed to start Elasticsearch.
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd[1]: Unit elasticsearch.service entered failed state.
Thank you so much
If you notice carefully the error message in startup logs, which seems to cause the startup failure.
Aug 29 10:10:35 meriadoc.dallas-idc.com systemd-entrypoint[3579]:
java.lang.NoClassDefFoundError: Could not initialize class
com.sun.jna.Native
Please follow the https://www.jetbrains.com/help/upsource/error-could-not-initialize-class-com-sun-jna-native.html#8182b, which explained in detail the cause of the error and 2 ways to resolve that.
I'm a newbies on Odoo.
Lately I have been deploying Odoo on AWS Elastic Beanstalk via EB cli.
After I do "eb deploy" the server show this message:
INFO: New application version was deployed to running EC2 instances.
INFO: Environment update completed successfully.
When I go to the site. It shows this:
500 Internal Server Error
Here is my "eb logs":
/var/log/httpd/error_log:
[Wed Sep 20 01:41:03.331534 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] mod_wsgi (pid=10846): Exception occurred processing WSGI script '/opt/python/current/app/odoo-wsgi.py'.
[Wed Sep 20 01:41:03.331570 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] Traceback (most recent call last):
[Wed Sep 20 01:41:03.331586 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/service/wsgi_server.py", line 186, in application
[Wed Sep 20 01:41:03.331606 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] return application_unproxied(environ, start_response)
[Wed Sep 20 01:41:03.331614 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/service/wsgi_server.py", line 172, in application_unproxied
[Wed Sep 20 01:41:03.331624 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] result = handler(environ, start_response)
[Wed Sep 20 01:41:03.331630 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/http.py", line 1308, in __call__
[Wed Sep 20 01:41:03.331641 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] return self.dispatch(environ, start_response)
[Wed Sep 20 01:41:03.331646 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/http.py", line 1282, in __call__
[Wed Sep 20 01:41:03.331655 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] return self.app(environ, start_wrapped)
[Wed Sep 20 01:41:03.331660 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/run/venv/lib64/python2.7/site-packages/werkzeug/wsgi.py", line 600, in __call__
[Wed Sep 20 01:41:03.331672 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] return self.app(environ, start_response)
[Wed Sep 20 01:41:03.331678 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/http.py", line 1445, in dispatch
[Wed Sep 20 01:41:03.331686 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] explicit_session = self.setup_session(httprequest)
[Wed Sep 20 01:41:03.331692 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/http.py", line 1342, in setup_session
[Wed Sep 20 01:41:03.331700 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] session_gc(self.session_store)
[Wed Sep 20 01:41:03.331705 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/tools/func.py", line 23, in __get__
[Wed Sep 20 01:41:03.331714 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] value = self.fget(obj)
[Wed Sep 20 01:41:03.331720 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/http.py", line 1293, in session_store
[Wed Sep 20 01:41:03.331727 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] path = odoo.tools.config.session_dir
[Wed Sep 20 01:41:03.331733 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/current/app/odoo/tools/config.py", line 600, in session_dir
[Wed Sep 20 01:41:03.331751 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] os.makedirs(d, 0700)
[Wed Sep 20 01:41:03.331757 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/run/baselinenv/lib64/python2.7/os.py", line 150, in makedirs
[Wed Sep 20 01:41:03.331768 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] makedirs(head, mode)
[Wed Sep 20 01:41:03.331773 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] File "/opt/python/run/baselinenv/lib64/python2.7/os.py", line 157, in makedirs
[Wed Sep 20 01:41:03.331780 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] mkdir(name, mode)
[Wed Sep 20 01:41:03.331796 2017] [:error] [pid 10846] [remote 127.0.0.1:24340] OSError: [Errno 13] Permission denied: '/var/lib/odoo'
/var/log/eb-activity.log:
Disabled forced hourly log rotation.
[2017-09-20T01:41:04.743Z] INFO [10486] - [Application update app-53e273-170920_083852#76/AddonsAfter/ConfigLogRotation] : Completed activity. Result:
Successfully execute hooks in directory /opt/elasticbeanstalk/addons/logpublish/hooks/config.
[2017-09-20T01:41:04.743Z] INFO [10486] - [Application update app-53e273-170920_083852#76/AddonsAfter] : Completed activity.
[2017-09-20T01:41:04.743Z] INFO [10486] - [Application update app-53e273-170920_083852#76] : Completed activity. Result:
Application update - Command CMD-AppDeploy succeeded
[2017-09-20T01:42:45.599Z] INFO [10989] - [CMD-TailLogs] : Starting activity...
[2017-09-20T01:42:45.599Z] INFO [10989] - [CMD-TailLogs/AddonsBefore] : Starting activity...
[2017-09-20T01:42:45.599Z] INFO [10989] - [CMD-TailLogs/AddonsBefore] : Completed activity.
[2017-09-20T01:42:45.599Z] INFO [10989] - [CMD-TailLogs/TailLogs] : Starting activity...
[2017-09-20T01:42:45.599Z] INFO [10989] - [CMD-TailLogs/TailLogs/TailLogs] : Starting activity...
[2017-09-20T01:42:45.845Z] INFO [10989] - [CMD-TailLogs/TailLogs/TailLogs] : Completed activity.
[2017-09-20T01:42:45.845Z] INFO [10989] - [CMD-TailLogs/TailLogs] : Completed activity. Result:
CMD-TailLogs - stage 0 - Command CMD-TailLogs stage 0 completed
[2017-09-20T01:42:45.845Z] INFO [10989] - [CMD-TailLogs/AddonsAfter] : Starting activity...
[2017-09-20T01:42:45.845Z] INFO [10989] - [CMD-TailLogs/AddonsAfter] : Completed activity.
[2017-09-20T01:42:45.845Z] INFO [10989] - [CMD-TailLogs] : Completed activity. Result:
CMD-TailLogs - Command CMD-TailLogs succeeded
[2017-09-20T01:47:03.218Z] INFO [11141] - [CMD-TailLogs] : Starting activity...
[2017-09-20T01:47:03.218Z] INFO [11141] - [CMD-TailLogs/AddonsBefore] : Starting activity...
[2017-09-20T01:47:03.218Z] INFO [11141] - [CMD-TailLogs/AddonsBefore] : Completed activity.
[2017-09-20T01:47:03.218Z] INFO [11141] - [CMD-TailLogs/TailLogs] : Starting activity...
[2017-09-20T01:47:03.218Z] INFO [11141] - [CMD-TailLogs/TailLogs/TailLogs] : Starting activity...
/var/log/httpd/access_log:
127.0.0.1 (-) - - [20/Sep/2017:01:40:57 +0000] "GET / HTTP/1.1" 500 527 "-" "Python-urllib/2.7"
127.0.0.1 (-) - - [20/Sep/2017:01:41:01 +0000] "GET / HTTP/1.1" 500 527 "-" "Python-urllib/2.7"
127.0.0.1 (-) - - [20/Sep/2017:01:41:02 +0000] "GET / HTTP/1.1" 500 527 "-" "Python-urllib/2.7"
127.0.0.1 (-) - - [20/Sep/2017:01:41:03 +0000] "GET / HTTP/1.1" 500 527 "-" "Python-urllib/2.7"
I would like to know if anyone had the same problem like this before. If so what did you do to resolve the issue? Or anyone has any idea how to deal with this problem?
I am sorry I could not post images because the site require reputation > 10 . :(
Hello I suggest you Reinstall Odoo in your AWS Ubuntu 16.04
Follow the link :
https://www.getopenerp.com/install-odoo-10-on-ubuntu-16-04/
it's good and Perfect installation on odoo
Error logs
[Wed Oct 07 10:45:33.781957 2015] [ssl:warn] [pid 5248:tid 380] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Wed Oct 07 10:45:34.086160 2015] [ssl:warn] [pid 5248:tid 380] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Wed Oct 07 10:45:34.450418 2015] [mpm_winnt:notice] [pid 5248:tid 380] AH00455: Apache/2.4.16 (Win32) OpenSSL/1.0.1p PHP/5.5.28 configured -- resuming normal operations
[Wed Oct 07 10:45:34.450418 2015] [mpm_winnt:notice] [pid 5248:tid 380] AH00456: Apache Lounge VC11 Server built: Jul 12 2015 10:56:48
[Wed Oct 07 10:45:34.450418 2015] [core:notice] [pid 5248:tid 380] AH00094: Command line: 'C:\\Xampp\\apache\\bin\\httpd.exe -d C:/Xampp/apache'
[Wed Oct 07 10:45:34.461426 2015] [mpm_winnt:notice] [pid 5248:tid 380] AH00418: Parent: Created child process 3408
[Wed Oct 07 10:45:35.852815 2015] [ssl:warn] [pid 3408:tid 392] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Wed Oct 07 10:45:36.162072 2015] [ssl:warn] [pid 3408:tid 392] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Wed Oct 07 10:45:36.239123 2015] [mpm_winnt:notice] [pid 3408:tid 392] AH00354: Child: Starting 150 worker threads.
I tried upgrading where I successfully upgraded to 1.4.2 from 1.4.1
but the frontend stopped working. Also, phpmyadmin completely stopped.
Below is my error log in /opt/lamp/logs.
Does anyone know where exactly to look for what's causing the error in this big log?
[Fri Jan 24 17:16:44.072704 2014] [ssl:warn] [pid 1180] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Jan 24 17:16:44.072796 2014] [ssl:warn] [pid 1180] AH01909: RSA certificate configured for www.example.com:443 does NOT include an ID which matches the server name
[Fri Jan 24 17:16:44.072825 2014] [suexec:notice] [pid 1180] AH01232: suEXEC mechanism enabled (wrapper: /opt/lampp/bin/suexec)
[Fri Jan 24 17:16:44.218834 2014] [auth_digest:notice] [pid 1335] AH01757: generating secret for digest authentication ...
[Fri Jan 24 17:16:45.030837 2014] [ssl:warn] [pid 1335] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Jan 24 17:16:45.030929 2014] [ssl:warn] [pid 1335] AH01909: RSA certificate configured for www.example.com:443 does NOT include an ID which matches the server name
[Fri Jan 24 17:16:45.030997 2014] [lbmethod_heartbeat:notice] [pid 1335] AH02282: No slotmem from mod_heartmonitor
[Fri Jan 24 17:16:45.039496 2014] [mpm_prefork:notice] [pid 1335] AH00163: Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Fri Jan 24 17:16:45.039531 2014] [core:notice] [pid 1335] AH00094: Command line: '/opt/lampp/bin/httpd -D SSL -D PHP5 -E /opt/lampp/logs/error_log'
[Fri Jan 24 17:17:41.073939 2014] [authz_core:error] [pid 1890] [client 127.0.0.1:56956] AH01630: client denied by server configuration: /opt/lampp/phpmyadmin/
[Fri Jan 24 17:17:50.020021 2014] [authz_core:error] [pid 1891] [client 127.0.0.1:56983] AH01630: client denied by server configuration: /opt/lampp/phpmyadmin/
[Fri Jan 24 17:17:51.154603 2014] [authz_core:error] [pid 1891] [client 127.0.0.1:56983] AH01630: client denied by server configuration: /opt/lampp/phpmyadmin/
[Fri Jan 24 17:17:51.602371 2014] [authz_core:error] [pid 1891] [client 127.0.0.1:56983] AH01630: client denied by server configuration: /opt/lampp/phpmyadmin/
[Fri Jan 24 17:17:51.901841 2014] [authz_core:error] [pid 1891] [client 127.0.0.1:56983] AH01630: client denied by server configuration: /opt/lampp/phpmyadmin/
[Fri Jan 24 17:20:01.327548 2014] [authz_core:error] [pid 1892] [client 127.0.0.1:56987] AH01630: client denied by server configuration: /opt/lampp/phpmyadmin/
[Fri Jan 24 17:20:02.489854 2014] [authz_core:error] [pid 1892] [client 127.0.0.1:56987] AH01630: client denied by server configuration: /opt/lampp/phpmyadmin/
[Fri Jan 24 17:20:42.243495 2014] [mpm_prefork:notice] [pid 1335] AH00169: caught SIGTERM, shutting down
[Fri Jan 24 17:20:51.085988 2014] [ssl:warn] [pid 2967] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Jan 24 17:20:51.086085 2014] [ssl:warn] [pid 2967] AH01909: RSA certificate configured for www.example.com:443 does NOT include an ID which matches the server name
[Fri Jan 24 17:20:51.086113 2014] [suexec:notice] [pid 2967] AH01232: suEXEC mechanism enabled (wrapper: /opt/lampp/bin/suexec)
[Fri Jan 24 17:20:51.216881 2014] [auth_digest:notice] [pid 2968] AH01757: generating secret for digest authentication ...
[Fri Jan 24 17:20:52.074917 2014] [ssl:warn] [pid 2968] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Jan 24 17:20:52.074967 2014] [ssl:warn] [pid 2968] AH01909: RSA certificate configured for www.example.com:443 does NOT include an ID which matches the server name
[Fri Jan 24 17:20:52.075005 2014] [lbmethod_heartbeat:notice] [pid 2968] AH02282: No slotmem from mod_heartmonitor
[Fri Jan 24 17:20:52.081177 2014] [mpm_prefork:notice] [pid 2968] AH00163: Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Fri Jan 24 17:20:52.081213 2014] [core:notice] [pid 2968] AH00094: Command line: '/opt/lampp/bin/httpd -D SSL -D PHP5 -E /opt/lampp/logs/error_log'
[Fri Jan 24 17:40:47.075100 2014] [ssl:warn] [pid 1188] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Jan 24 17:40:47.086940 2014] [ssl:warn] [pid 1188] AH01909: RSA certificate configured for www.example.com:443 does NOT include an ID which matches the server name
[Fri Jan 24 17:40:47.086998 2014] [suexec:notice] [pid 1188] AH01232: suEXEC mechanism enabled (wrapper: /opt/lampp/bin/suexec)
[Fri Jan 24 17:40:47.242800 2014] [auth_digest:notice] [pid 1502] AH01757: generating secret for digest authentication ...
[Fri Jan 24 17:40:48.050110 2014] [ssl:warn] [pid 1502] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Jan 24 17:40:48.050170 2014] [ssl:warn] [pid 1502] AH01909: RSA certificate configured for www.example.com:443 does NOT include an ID which matches the server name
[Fri Jan 24 17:40:48.050214 2014] [lbmethod_heartbeat:notice] [pid 1502] AH02282: No slotmem from mod_heartmonitor
[Fri Jan 24 17:40:48.055872 2014] [mpm_prefork:notice] [pid 1502] AH00163: Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Fri Jan 24 17:40:48.055913 2014] [core:notice] [pid 1502] AH00094: Command line: '/opt/lampp/bin/httpd -D SSL -D PHP5 -E /opt/lampp/logs/error_log'
[Fri Jan 24 17:50:03.664870 2014] [access_compat:error] [pid 2506] [client 127.0.0.1:44824] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 17:58:43.173383 2014] [access_compat:error] [pid 2512] [client 127.0.0.1:44945] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:02:47.290956 2014] [core:notice] [pid 1502] AH00051: child pid 2915 exit signal Segmentation fault (11), possible coredump in /opt/lampp
[Fri Jan 24 18:05:48.701079 2014] [:error] [pid 2506] [client 127.0.0.1:45082] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:05:59.281046 2014] [:error] [pid 2932] [client 127.0.0.1:45083] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:06:18.870329 2014] [access_compat:error] [pid 2001] [client 127.0.0.1:45088] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:09:28.481096 2014] [:error] [pid 2001] [client 127.0.0.1:45098] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:10:05.300624 2014] [:error] [pid 2946] [client 127.0.0.1:45114] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:10:05.691793 2014] [core:notice] [pid 1502] AH00051: child pid 3781 exit signal Segmentation fault (11), possible coredump in /opt/lampp
[Fri Jan 24 18:10:12.901312 2014] [access_compat:error] [pid 1998] [client 127.0.0.1:45116] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:10:19.200353 2014] [access_compat:error] [pid 2510] [client 127.0.0.1:45122] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:21:01.813878 2014] [:error] [pid 2494] [client 127.0.0.1:45350] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:21:03.603027 2014] [:error] [pid 2494] [client 127.0.0.1:45350] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:21:04.886698 2014] [:error] [pid 2494] [client 127.0.0.1:45350] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:21:05.105651 2014] [:error] [pid 2494] [client 127.0.0.1:45350] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:21:05.278352 2014] [:error] [pid 1998] [client 127.0.0.1:45351] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:22:00.454583 2014] [:error] [pid 2946] [client 127.0.0.1:45403] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:22:57.866575 2014] [:error] [pid 3752] [client 127.0.0.1:45434] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:22:58.061249 2014] [:error] [pid 3752] [client 127.0.0.1:45434] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:23:24.403970 2014] [access_compat:error] [pid 2001] [client 127.0.0.1:45443] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:23:47.017177 2014] [access_compat:error] [pid 3754] [client 127.0.0.1:45452] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:23:53.612522 2014] [access_compat:error] [pid 2946] [client 127.0.0.1:45463] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:23:56.602871 2014] [access_compat:error] [pid 2001] [client 127.0.0.1:45466] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:24:02.936633 2014] [access_compat:error] [pid 2510] [client 127.0.0.1:45472] AH01797: client denied by server configuration: /opt/lampp/htdocs/pedicure/app/etc/local.xml
[Fri Jan 24 18:27:07.836253 2014] [:error] [pid 3753] [client 127.0.0.1:45605] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:27:09.725328 2014] [:error] [pid 3753] [client 127.0.0.1:45605] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:27:11.510547 2014] [:error] [pid 3753] [client 127.0.0.1:45605] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:27:13.086073 2014] [:error] [pid 3753] [client 127.0.0.1:45605] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:27:13.252462 2014] [:error] [pid 2506] [client 127.0.0.1:45606] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:27:13.403045 2014] [:error] [pid 2494] [client 127.0.0.1:45607] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:27:13.503701 2014] [:error] [pid 2946] [client 127.0.0.1:45608] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:29:54.146949 2014] [:error] [pid 2510] [client 127.0.0.1:45873] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:30:39.799300 2014] [:error] [pid 3753] [client 127.0.0.1:45991] PHP Fatal error: Call to a member function toHtml() on a non-object in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Layout.php on line 529
[Fri Jan 24 18:30:39.897294 2014] [:error] [pid 3753] [client 127.0.0.1:45991] PHP Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 2006 MySQL server has gone away' in /opt/lampp/htdocs/pedicure/lib/Zend/Db/Statement/Pdo.php:228\nStack trace:\n#0 /opt/lampp/htdocs/pedicure/lib/Zend/Db/Statement/Pdo.php(228): PDOStatement->execute(Array)\n#1 /opt/lampp/htdocs/pedicure/lib/Zend/Db/Statement.php(300): Zend_Db_Statement_Pdo->_execute(Array)\n#2 /opt/lampp/htdocs/pedicure/lib/Zend/Db/Adapter/Abstract.php(468): Zend_Db_Statement->execute(Array)\n#3 /opt/lampp/htdocs/pedicure/lib/Zend/Db/Adapter/Pdo/Abstract.php(238): Zend_Db_Adapter_Abstract->query('UPDATE `core_se...', Array)\n#4 /opt/lampp/htdocs/pedicure/lib/Varien/Db/Adapter/Pdo/Mysql.php(333): Zend_Db_Adapter_Pdo_Abstract->query('UPDATE `core_se...', Array)\n#5 /opt/lampp/htdocs/pedicure/lib/Zend/Db/Adapter/Abstract.php(604): Varien_Db_Adapter_Pdo_Mysql->query('UPDATE `core_se...', Array)\n#6 /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/Model/Mysql4/Session.php(199): Zend_Db_Adapter_Abstract->update('core_session in /opt/lampp/htdocs/pedicure/lib/Zend/Db/Statement/Pdo.php on line 234
[Fri Jan 24 18:40:57.681009 2014] [:error] [pid 2494] [client 127.0.0.1:46634] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:40:57.681057 2014] [:error] [pid 2494] [client 127.0.0.1:46634] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:40:57.681071 2014] [:error] [pid 2494] [client 127.0.0.1:46634] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:41:02.823272 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:02.823324 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:02.823339 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:41:06.232257 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:06.232316 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:06.232331 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:41:08.058339 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:08.058388 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:08.058411 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:41:10.021820 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:10.021866 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:10.021880 2014] [:error] [pid 2510] [client 127.0.0.1:46643] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:41:18.703821 2014] [:error] [pid 2506] [client 127.0.0.1:46684] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:18.703868 2014] [:error] [pid 2506] [client 127.0.0.1:46684] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:18.703882 2014] [:error] [pid 2506] [client 127.0.0.1:46684] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:41:41.511820 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:41.511972 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:41.511997 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:41:43.294737 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:43.294842 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:43.294862 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:41:44.154850 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:44.154905 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:41:44.154928 2014] [:error] [pid 4590] [client 127.0.0.1:46704] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:43:34.357140 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:43:34.357197 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:43:34.357211 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:43:35.823166 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:43:35.823211 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:43:35.823225 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
[Fri Jan 24 18:43:40.071212 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Warning: include(Zend/Log.php): failed to open stream: No such file or directory in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:43:40.071260 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Warning: include(): Failed opening 'Zend/Log.php' for inclusion (include_path='/opt/lampp/htdocs/pedicure/app/code/local:/opt/lampp/htdocs/pedicure/app/code/community:/opt/lampp/htdocs/pedicure/app/code/core:/opt/lampp/htdocs/pedicure/lib:.:/opt/lampp/lib/php') in /opt/lampp/htdocs/pedicure/lib/Varien/Autoload.php on line 93
[Fri Jan 24 18:43:40.071273 2014] [:error] [pid 2494] [client 127.0.0.1:46818] PHP Fatal error: Class 'Zend_Log' not found in /opt/lampp/htdocs/pedicure/app/code/core/Mage/Core/functions.php on line 247
*** glibc detected *** /opt/lampp/bin/httpd: double free or corruption (!prev): 0x08332630 ***
[Fri Jan 24 18:45:26.599938 2014] [core:notice] [pid 1502] AH00051: child pid 4245 exit signal Aborted (6), possible coredump in /opt/lampp
[Fri Jan 24 18:45:26.600073 2014] [mpm_prefork:notice] [pid 1502] AH00169: caught SIGTERM, shutting down
[Fri Jan 24 18:45:33.065084 2014] [ssl:warn] [pid 4991] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Jan 24 18:45:33.065195 2014] [ssl:warn] [pid 4991] AH01909: RSA certificate configured for www.example.com:443 does NOT include an ID which matches the server name
[Fri Jan 24 18:45:33.065229 2014] [suexec:notice] [pid 4991] AH01232: suEXEC mechanism enabled (wrapper: /opt/lampp/bin/suexec)
[Fri Jan 24 18:45:33.199857 2014] [auth_digest:notice] [pid 4992] AH01757: generating secret for digest authentication ...
[Fri Jan 24 18:45:34.051094 2014] [ssl:warn] [pid 4992] AH01906: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Jan 24 18:45:34.051151 2014] [ssl:warn] [pid 4992] AH01909: RSA certificate configured for www.example.com:443 does NOT include an ID which matches the server name
[Fri Jan 24 18:45:34.051205 2014] [lbmethod_heartbeat:notice] [pid 4992] AH02282: No slotmem from mod_heartmonitor
[Fri Jan 24 18:45:34.058057 2014] [mpm_prefork:notice] [pid 4992] AH00163: Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Fri Jan 24 18:45:34.058118 2014] [core:notice] [pid 4992] AH00094: Command line: '/opt/lampp/bin/httpd -D SSL -D PHP5 -E /opt/lampp/logs/error_log'
first of all, there is a mysql error, server has gone away... you should first check, if the webserver can access the db server.
second thing is when you perform an update, especially a majorversion upgrade, make sure that you switch your themes and packages back to the default magento ones, as layoutchanges can cause strange error messages or blank pages. hopefully this was not done on a productive website ;)
Then I would clear the whole cache. If you do not have access to backend, simply remove any files and folders below /docroot/var/cache/ and reload the page after clearing browsercache as well.
If that did not help see if there any frontend errors displayed. If not and only a blank page is displayed or just parts of page with the rest of it blank, it is very hekpful to enable error reporting on frontend in php and magento.
Then you should always take a look on your magentolog found in /docroot/var/log... especially exception.log and system.log can contain a bunch of helpful things...
If you need more help, send over some more info.
Cheers
Ben