Cant load mod_authz_default.so to start httpd service

Hi people.. im having an error just after i updated my laptop 2 days ago and i cant start my httpd service... when i try to start the httpd service i got this error:
Syntax error on line 59 of /etc/httpd/conf/httpd.conf: Cannot load modules/mod_authn_default.so into server: /etc/httpd/modules/mod_authn_default.so: cannot open shared object file: No such file or directory
abr 28 21:40:19 acelinux systemd[1]: httpd.service: control process exited, code=exited status=1
abr 28 21:40:19 acelinux systemd[1]: Failed to start Apache Web Server.
abr 28 21:40:19 acelinux systemd[1]: Unit httpd.service entered failed state.
This is my httpd.conf file:
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so 'log/access_log'
# with ServerRoot set to '/www' will be interpreted by the
# server as '/www/log/access_log', where as '/log/access_log' will be
# interpreted as '/log/access_log'.
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk. If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
ServerRoot "/etc/httpd"
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 12.34.56.78:80
Listen 80
# Dynamic Shared Object (DSO) Support
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
# Example:
# LoadModule foo_module modules/mod_foo.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbd_module modules/mod_authn_dbd.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule cache_module modules/mod_cache.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule dbd_module modules/mod_dbd.so
LoadModule dumpio_module modules/mod_dumpio.so
LoadModule reqtimeout_module modules/mod_reqtimeout.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule include_module modules/mod_include.so
LoadModule filter_module modules/mod_filter.so
LoadModule substitute_module modules/mod_substitute.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule log_forensic_module modules/mod_log_forensic.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
LoadModule ident_module modules/mod_ident.so
LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule unique_id_module modules/mod_unique_id.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule asis_module modules/mod_asis.so
LoadModule info_module modules/mod_info.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule cgid_module modules/mod_cgid.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule imagemap_module modules/mod_imagemap.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule php5_module modules/libphp5.so
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
User http
Group http
</IfModule>
</IfModule>
# 'Main' server configuration
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. [email protected]
ServerAdmin [email protected]
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
# If your host doesn't have a registered DNS name, enter its IP address here.
#ServerName www.example.com:80
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot "/srv/http"
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
# First, we configure the "default" to be a very restrictive set of
# features.
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
# This should be changed to whatever you set DocumentRoot to.
<Directory "/srv/http">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride None
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
ErrorLog "/var/log/httpd/error_log"
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
<IfModule log_config_module>
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
CustomLog "/var/log/httpd/access_log" common
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#CustomLog "/var/log/httpd/access_log" combined
</IfModule>
<IfModule alias_module>
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
</IfModule>
<IfModule cgid_module>
# ScriptSock: On threaded servers, designate the path to the UNIX
# socket used to communicate with the CGI daemon of mod_cgid.
#Scriptsock /run/httpd/cgisock
</IfModule>
# "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/srv/http/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
DefaultType text/plain
<IfModule mime_module>
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
TypesConfig conf/mime.types
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#AddType application/x-gzip .tgz
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#AddHandler cgi-script .cgi
# For type maps (negotiated resources):
#AddHandler type-map var
# Filters allow you to process content before it is sent to the client.
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml
</IfModule>
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
MIMEMagicFile conf/magic
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or one of the special
# values 'default', 'none' or 'unlimited'.
# Default setting is to accept 200 Ranges.
#MaxRanges unlimited
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall is used to deliver
# files. This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
#EnableMMAP off
#EnableSendfile off
# Supplemental configuration
# The configuration files in the conf/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.
# Server-pool management (MPM specific)
#Include conf/extra/httpd-mpm.conf
# Multi-language error messages
Include conf/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
Include conf/extra/httpd-autoindex.conf
# Language settings
Include conf/extra/httpd-languages.conf
# User home directories
Include conf/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf
# Various default settings
Include conf/extra/httpd-default.conf
# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
# Configuracion de phpMyAdmin
Include conf/extra/httpd-phpmyadmin.conf
# Configuracion de php
Include conf/extra/php5_module.conf
If you need need more detail information about my problem just ask me...
Thanks

If you was carefully reading the pacman update logs you would saw a link to Apache configuration upgrade manual http://httpd.apache.org/docs/2.4/upgrading.html I highly suggest to read it before going further.
But because difference between 2.2 and 2.4 quite large I recommend to start with clean 2.4 configs and then add your own changes.

Similar Messages

  • Job for httpd.service failed. See 'systemctl status httpd.service' and

    Hello,
    I am the problem. I change "/etc/httpd/conf/httpd.conf" to install php5 on apache.
    sudo systemctl start httpd
    Job for httpd.service failed. See 'systemctl status httpd.service' and 'journalctl -xn' for details.
    systemctl status httpd.service
    ● httpd.service - Apache Web Server
    Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled)
    Active: failed (Result: exit-code) since lun. 2014-08-25 12:19:31 CEST; 1min 18s ago
    Process: 2208 ExecStop=/usr/bin/apachectl graceful-stop (code=exited, status=1/FAILURE)
    Process: 2433 ExecStart=/usr/bin/apachectl start (code=exited, status=1/FAILURE)
    Main PID: 2060 (code=exited, status=0/SUCCESS)
    août 25 12:19:31 creaprog apachectl[2433]: httpd: Syntax error on line 66 o...y
    août 25 12:19:31 creaprog systemd[1]: httpd.service: control process exite...=1
    août 25 12:19:31 creaprog systemd[1]: Failed to start Apache Web Server.
    août 25 12:19:31 creaprog systemd[1]: Unit httpd.service entered failed state.
    Hint: Some lines were ellipsized, use -l to show in full.
    cat /etc/httpd/conf/httpd.conf
    # This is the main Apache HTTP server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "logs/access_log"
    # with ServerRoot set to "/usr/local/apache2" will be interpreted by the
    # server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
    # will be interpreted as '/logs/access_log'.
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path. If you point
    # ServerRoot at a non-local disk, be sure to specify a local disk on the
    # Mutex directive, if file-based mutexes are used. If you wish to share the
    # same ServerRoot for multiple httpd daemons, you will need to change at
    # least PidFile.
    ServerRoot "/srv/http"
    # Mutex: Allows you to set the mutex mechanism and mutex file directory
    # for individual mutexes, or change the global defaults
    # Uncomment and change the directory if mutexes are file-based and the default
    # mutex file directory is not on a local disk or is not appropriate for some
    # other reason.
    # Mutex default:/run/httpd
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses.
    #Listen 12.34.56.78:80
    Listen 80
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_socache_module modules/mod_authn_socache.so
    LoadModule authn_core_module modules/mod_authn_core.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_user_module modules/mod_authz_user.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    #LoadModule authz_dbd_module modules/mod_authz_dbd.so
    LoadModule authz_core_module modules/mod_authz_core.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    LoadModule access_compat_module modules/mod_access_compat.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_form_module modules/mod_auth_form.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule allowmethods_module modules/mod_allowmethods.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cache_disk_module modules/mod_cache_disk.so
    #LoadModule cache_socache_module modules/mod_cache_socache.so
    #LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
    #LoadModule socache_dbm_module modules/mod_socache_dbm.so
    #LoadModule socache_memcache_module modules/mod_socache_memcache.so
    #LoadModule watchdog_module modules/mod_watchdog.so
    #LoadModule macro_module modules/mod_macro.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    #LoadModule echo_module modules/mod_echo.so
    #LoadModule buffer_module modules/mod_buffer.so
    #LoadModule data_module modules/mod_data.so
    #LoadModule ratelimit_module modules/mod_ratelimit.so
    LoadModule reqtimeout_module modules/mod_reqtimeout.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule request_module modules/mod_request.so
    LoadModule include_module modules/mod_include.so
    LoadModule filter_module modules/mod_filter.so
    #LoadModule reflector_module modules/mod_reflector.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule sed_module modules/mod_sed.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule deflate_module modules/mod_deflate.so
    #LoadModule xml2enc_module modules/mod_xml2enc.so
    #LoadModule proxy_html_module modules/mod_proxy_html.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule ldap_module modules/mod_ldap.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_debug_module modules/mod_log_debug.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule logio_module modules/mod_logio.so
    #LoadModule lua_module modules/mod_lua.so
    LoadModule env_module modules/mod_env.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    #LoadModule expires_module modules/mod_expires.so
    LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule version_module modules/mod_version.so
    #LoadModule remoteip_module modules/mod_remoteip.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
    LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
    #LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
    LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule proxy_express_module modules/mod_proxy_express.so
    #LoadModule session_module modules/mod_session.so
    #LoadModule session_cookie_module modules/mod_session_cookie.so
    #LoadModule session_crypto_module modules/mod_session_crypto.so
    #LoadModule session_dbd_module modules/mod_session_dbd.so
    LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
    #LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
    #LoadModule ssl_module modules/mod_ssl.so
    #LoadModule dialup_module modules/mod_dialup.so
    LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
    LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
    LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
    LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
    LoadModule mpm_event_module modules/mod_mpm_event.so
    LoadModule unixd_module modules/mod_unixd.so
    #LoadModule heartbeat_module modules/mod_heartbeat.so
    #LoadModule heartmonitor_module modules/mod_heartmonitor.so
    #LoadModule dav_module modules/mod_dav.so
    LoadModule status_module modules/mod_status.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule asis_module modules/mod_asis.so
    #LoadModule info_module modules/mod_info.so
    #LoadModule suexec_module modules/mod_suexec.so
    #LoadModule cgid_module modules/mod_cgid.so
    #LoadModule cgi_module modules/mod_cgi.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule dir_module modules/mod_dir.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    #LoadModule actions_module modules/mod_actions.so
    #LoadModule speling_module modules/mod_speling.so
    LoadModule userdir_module modules/mod_userdir.so
    LoadModule alias_module modules/mod_alias.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    #Load php5 module
    LoadModule php5_module modules/libphp5.so
    <IfModule unixd_module>
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User http
    Group http
    </IfModule>
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents. e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #ServerName www.example.com:80
    # Deny access to the entirety of your server's filesystem. You must
    # explicitly permit access to web content directories in other
    # <Directory> blocks below.
    <Directory />
    AllowOverride none
    Require all denied
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/srv/http"
    <Directory "/srv/http">
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    Options Indexes FollowSymLinks
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    # AllowOverride FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Require all granted
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <Files ".ht*">
    Require all denied
    </Files>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "/var/log/httpd/error_log"
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule log_config_module>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    CustomLog "/var/log/httpd/access_log" common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog "/var/log/httpd/access_log" combined
    </IfModule>
    <IfModule alias_module>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
    </IfModule>
    <IfModule cgid_module>
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #Scriptsock cgisock
    </IfModule>
    # "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/srv/http/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
    </Directory>
    <IfModule mime_module>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig conf/mime.types
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #AddType application/x-gzip .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #AddHandler cgi-script .cgi
    # For type maps (negotiated resources):
    #AddHandler type-map var
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
    </IfModule>
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type. The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #MIMEMagicFile conf/magic
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://www.example.com/subscription_info.html
    # MaxRanges: Maximum number of Ranges in a request before
    # returning the entire resource, or one of the special
    # values 'default', 'none' or 'unlimited'.
    # Default setting is to accept 200 Ranges.
    #MaxRanges unlimited
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall may be used to deliver
    # files. This usually improves server performance, but must
    # be turned off when serving from networked-mounted
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    # Defaults: EnableMMAP On, EnableSendfile Off
    #EnableMMAP off
    #EnableSendfile on
    # Supplemental configuration
    # The configuration files in the conf/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.
    # Server-pool management (MPM specific)
    Include conf/extra/httpd-mpm.conf
    # Multi-language error messages
    Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
    # Language settings
    Include conf/extra/httpd-languages.conf
    # User home directories
    Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # Various default settings
    Include conf/extra/httpd-default.conf
    # PHP settings
    Include conf/extra/php5_module.conf
    # Configure mod_proxy_html to understand HTML4/XHTML1
    <IfModule proxy_html_module>
    Include conf/extra/proxy-html.conf
    </IfModule>
    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf
    # Note: The following must must be present to support
    # starting without SSL on platforms with no /dev/random equivalent
    # but a statically compiled-in mod_ssl.
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    # uncomment out the below to deal with user agents that deliberately
    # violate open standards by misusing DNT (DNT *must* be a specific
    # end-user choice)
    #<IfModule setenvif_module>
    #BrowserMatch "MSIE 10.0;" bad_DNT
    #</IfModule>
    #<IfModule headers_module>
    #RequestHeader unset DNT env=bad_DNT
    #</IfModule>
    Thanks, sorry my english is bad .
    Last edited by Creaprog (2014-08-25 10:25:17)

    I just noticed the exact same thing. It turns out that the httpd-ssl.conf file on my system is still the old v2.2 syntax, which means that the SSLMutex directive is still in there. This is an invalid directive after 2.2.
    This is where things get interesting. At first, I simply thought I had forgotten to merge httpd-ssl.conf.pacnew after apache had been upgraded to 2.4. However, when I check my pacman.log, it appears that httpd-ssl.conf was never upgraded when apache went to 2.4 - (2.2.26-1 -> 2.4.7-1). There was never a pacnew file generated to be merged.
    I took a look at the apache package via the abs and the "proper" httpd-ssl.conf is certainly in there, so why pacman never created a pacnew file is a mystery.
    Anyway, to fix this: pull the httpd-ssl.conf from the apache package, either from your cache, using the abs and building it, or (I think) pacman may re-install it if you move the file to a backup location (not sure about this). Then merge your original httpd-ssl-conf with the new one.

  • [SOLVED] systemd is take a while to start httpd

    Hi!
    I've just installed LAMP and I noticed that apache is taking a while to start. I remember it took some time on Debian, but not that much.
    Is it normal? (I may have done something wrong, or it may be something to do to improve apache startup time)
    Here are my figures:
    ~$ time systemctl stop httpd.service
    real 0m20.115s
    user 0m0.000s
    sys 0m0.000s
    ~$ time systemctl start httpd.service
    real 1m1.760s
    user 0m0.000s
    sys 0m0.000s
    ~$ time systemctl restart httpd.service
    real 1m21.681s
    user 0m0.000s
    sys 0m0.000s
    One minute is almost the time my PC takes to boot entirely
    The other question is: does systemd start apache in parallel of the other services, so that we don't lose to much time during the PC boot?
    Thanks.
    Last edited by Creak (2014-03-09 02:51:24)

    Creak wrote:
    Using "httpd -e debug", it's still taking some time, but it's faster (30 seconds):
    ~$ time httpd -e debug
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authn_file_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authn_dbm_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authn_anon_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authn_dbd_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authn_default_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authz_host_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authz_groupfile_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authz_user_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authz_dbm_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authz_owner_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authnz_ldap_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module authz_default_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module auth_basic_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module auth_digest_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module file_cache_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module cache_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module disk_cache_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module mem_cache_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module dbd_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module dumpio_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module reqtimeout_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module ext_filter_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module include_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module filter_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module substitute_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module deflate_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module ldap_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module log_config_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module log_forensic_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module logio_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module env_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module mime_magic_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module cern_meta_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module expires_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module headers_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module ident_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module usertrack_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module unique_id_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module setenvif_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module version_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module proxy_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module proxy_connect_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module proxy_ftp_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module proxy_http_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module proxy_scgi_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module proxy_ajp_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module proxy_balancer_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module ssl_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module mime_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module dav_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module status_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module autoindex_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module asis_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module info_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module suexec_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module cgi_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module cgid_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module dav_fs_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module vhost_alias_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module negotiation_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module dir_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module imagemap_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module actions_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module speling_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module userdir_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module alias_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module rewrite_module
    [Thu Feb 06 23:22:55 2014] [debug] mod_so.c(246): loaded module php5_module
    httpd: Could not reliably determine the server's fully qualified domain name, using fe80::a2f3:c1ff:fe1d:f5d for ServerName
    real 0m30.704s
    user 0m0.060s
    sys 0m0.007s
    It takes a lot of time to display the last line "Could not reliably determine the server's ..." though. Don't know what I should put as ServerName for a local server only.
    Try your local IPv4 IP address. Or "localhost".
    Last edited by korn36 (2014-02-09 09:51:15)

  • I am receiving an error message when starting up iTunes: iTunes was unable to load data class information from sync services. Reconnect or try again later. (what does this mean?)

    I recently updated my iTunes to the most recent version and I am receiving an error message when starting up iTunes: iTunes was unable to load data class information from sync services. Reconnect or try again later. (Does anyone know what this means and if it is going to cause me issues?)

    http://support.apple.com/kb/TS2690?viewlocale=en_US&locale=en_US

  • Cant put pdfs or music on.the message i get when itunes comes up is "iTunes was unable to load data class information from sync services.reconnect or try again later." and its just my itouch i tried another one and was able to put songs and pdfs on it...

    I cant put pdfs or music on my itouch,it wont sync.the message i get when itunes comes up is "iTunes was unable to load data class information from sync services.reconnect or try again later." and its just my itouch i tried another one and was able to put songs and pdfs on it...please help!

    Try here:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    If not successful see the previous discussion on the right side of this page with the green checkmark.

  • I cant install I tunes I keep getting the following message: "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privelges to start system services."

    I cant install I tunes I keep getting the following message: "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privelges to start system services." I have Windows 7 - can you tell me what is wrong?

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • I cant download itunes on my computer because it says " service 'apple mobile device' failed to start. verify that you have sufficient privileges to start system services. what does this mean? how do you verify this?

    I cant download itunes on my computer because it says " service 'apple mobile device' failed to start. verify that you have sufficient privileges to start system services. what does this mean? how do you verify this?

    I am having this same problem. I took Kappy advice on restarting the Apple Mobile Device Service, however that did not work. I got this message in a pop up window that came up immediately.
    Windows could not start the Apple Mobil Device Service on local computer.
    Error 1053  The service did not respond to the start or control request in a timely fashion.
    I have already uninstalled itunes, all the related programs and I cannot reinstall, this Apple Mobil Device message stops the install.
    Can anyone please help?

  • Httpd service does not start- shows status FAILED

    Hi,
    I have just installed ORACLE ENTERPRISE LINUX UPDATE 5,
    now, my issue is when i give the following command , it shows status FAILED.
    # service httpd start
    starting httpd: [FAILED].
    can anybody help me out.
    regards,
    Charan

    Seems like your system is not configured correctly.
    Are you using the correct user (the same that is the owner of the HTTP software)?
    Is there already another process running on the port?
    What is the output in the Apache logfiles?
    cu
    Andreas

  • HT1414 In updating my iTunes,I got a message "Service Apple Mobile Device failed to start. verify that you have sufficent priviliges to start system services". Cant figure out what to do

    In updating my iTunes,I got a message "Service Apple Mobile Device failed to start. verify that you have sufficent priviliges to start system services". Cant figure out what to do

    So many people are having this problem! Doehunter's instructions here worked for me!  Hope this helps. https://discussions.apple.com/message/23824640#23824640

  • ITunes fails to load.  Message is Service Apple Mobile Device failed to start. Verify you have sufficient privileges to start system services. Never had this problem before trying to install this upgrade

    iTunes fails to load.  Message is "Service Apple Mobile Device failed to start. Verify you have sufficient privileges to start system services." Never had this problem before trying to install this upgrade. How do I fix this?

    Dave, same problem here.  And I did go in as admin to Administrative Tools, Services, Apple Mobile Devices and tried restarting the service.  It seems there is a bug with the newest update, period.  All of the normal "easy" steps don't work.  Before I remove all of Apple's programs, including Bonjour....I'm running a full system scan.
    But the answer will be to remove all of the Apple stuff, then reboot, then use whatever utility you have to remove all temp files...then go download and install it again.  This has worked for several people (I read the thread before posting).  Win 7 64bit.  It just seems that Apple did not thoroughly test this new version.   Period.
    If Apple reads this...I have many computers...and whenever Apple wants to update something...it just about stops everything else that is going on.  Total memory hog, even with 16G RAM and dual quad core processors.  It has to learn to play nice with others.
    After the scan and I'm sure an hour or two of work...I'll re-post. 
    Of course if you do image back-ups, as I do, you can simply restore your drive to its previous state and run the previous version of iTunes, declining the update, until Apple gets it right.  Depending on the size of your drive, this could take hours.  It is a matter of choice, of course.

  • HT1926 having problem up loading Itunes, comes up that 'Apple mobile Device failed to start. Verify that you have sufficient privileges to start system services' how do i fix this??

    I am having problems up loading Itunes, comes up that 'Apple mobile Device failed to start. Verify that you have sufficient privileges to start system services' how do i fix this??

    Hello hurleygirl63,
    Thank you for the details of the issue you are experiencing with iTunes.  I recommend following the steps in the article below:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • While loading ITunes Igot this messege, Service "Apple Mobile Device" failed to start. Verify that you have sufficient privileges to start system services. My question is, How do I verify if I have sufficient privileges?

    While loading ITunes I got this messege, Service "Apple Mobile Device" failed to start. Verify that you have sufficient privileges to start system services. My question is, How do I verify if I have sufficient privileges?

    Hello hurleygirl63,
    Thank you for the details of the issue you are experiencing with iTunes.  I recommend following the steps in the article below:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • I cant install itunes it keeps on saying "service apple mobile failed to start" and i keep on reinstalling it but that keeps on coming up

    i cant install itunes it keeps on saying "service apple mobile failed to start" and i keep on reinstalling itunes but i keep on getting the message.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (Later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    See also HT1925: Removing and Reinstalling iTunes for Windows XP or HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    Should you get the error iTunes.exe - Entry Point Not Found after the above reinstall then copy QTMovieWin.dll from:
    C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    and paste into:
    C:\Program Files (x86)\iTunes
    The above paths would be for a 64-bit machine. Hopefully the same fix with the " (x86)" omitted would work on 32-bit systems with the same error.
    tt2

  • HT1926 When I attempt to load Itunes I get the message "Service 'Apple Mobile device' failed to start. Verify that you have sufficient privileges to start system." What does this mean?

    When I attempt to install Itunes on Windows 7, I get the message "Service 'Apple Mobile Device' failed to start. Verify that you have sufficient privileges to start system services." What does this mean?

    So many people are having this problem! Doehunter's instructions here worked for me!  Hope this helps. https://discussions.apple.com/message/23824640#23824640

  • Cannot Start Web Services

    Hi, I've simply rebooted our server last night and now everything starts but Web Services.
    Here are the last bits of the error.log and system.log for the past 36 hours:
    All help very welcome
    error.log
    Processing config directory: /etc/httpd/sites/*.conf
    Processing config file: /etc/httpd/sites/0000any_80localhost.conf
    Processing config file: /etc/httpd/sites/0001any_80personalcomment.com.conf
    Processing config file: /etc/httpd/sites/0002any_80jrpserver.co.uk.conf
    Processing config file: /etc/httpd/sites/0003any_80iphotoreference.com.conf
    Processing config file: /etc/httpd/sites/0004any_80jrpshop.co.uk.conf
    Processing config file: /etc/httpd/sites/virtualhostglobal.conf
    [Wed Jun 27 08:39:48 2007] [notice] Apache/1.3.33 (Darwin) mod_jk/1.2.6 DAV/1.0.3 mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.4.4 mod_perl/1.29 configured -- resuming normal operations
    [Wed Jun 27 08:39:48 2007] [notice] Accept mutex: flock (Default: flock)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16987)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16986)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16985)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16984)
    [Wed Jun 27 08:40:32 2007] [notice] caught SIGTERM, shutting down
    Processing config directory: /etc/httpd/sites/*.conf
    Processing config file: /etc/httpd/sites/0000any_80localhost.conf
    Processing config file: /etc/httpd/sites/0001any_80personalcomment.com.conf
    Processing config file: /etc/httpd/sites/0002any_80jrpserver.co.uk.conf
    Processing config file: /etc/httpd/sites/0003any_80iphotoreference.com.conf
    Processing config file: /etc/httpd/sites/0004any_80jrpshop.co.uk.conf
    Processing config file: /etc/httpd/sites/virtualhostglobal.conf
    [Wed Jun 27 08:40:42 2007] [notice] Apache/1.3.33 (Darwin) mod_jk/1.2.6 DAV/1.0.3 mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.4.4 mod_perl/1.29 configured -- resuming normal operations
    [Wed Jun 27 08:40:42 2007] [notice] Accept mutex: flock (Default: flock)
    [Wed Jun 27 08:54:04 2007] [notice] child pid 17024 exit signal Bus error (10)
    [Wed Jun 27 08:54:12 2007] [notice] child pid 17032 exit signal Bus error (10)
    [Wed Jun 27 08:54:20 2007] [notice] child pid 17023 exit signal Bus error (10)
    [Fri Jun 29 16:56:18 2007] [notice] child pid 17034 exit signal Bus error (10)
    [Mon Jul 9 00:49:07 2007] [notice] child pid 17213 exit signal Bus error (10)
    [Mon Jul 9 21:10:05 2007] [notice] child pid 17234 exit signal Bus error (10)
    [Tue Jul 10 03:32:24 2007] [notice] child pid 17033 exit signal Bus error (10)
    [Wed Jul 18 18:01:19 2007] [notice] child pid 17211 exit signal Bus error (10)
    [Sun Jul 22 22:12:11 2007] [warn] child process 602 still did not exit, sending a SIGTERM
    [Sun Jul 22 22:12:16 2007] [notice] caught SIGTERM, shutting down
    [Mon Jul 23 08:20:27 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:26:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:29:22 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:32:18 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:02:18 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:08:14 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:10:47 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:12:59 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:15:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:17:19 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:20:21 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:25:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:28:40 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    system.log
    Jul 23 14:01:00 localhost mDNSResponder: Adding browse domain local.
    Jul 23 14:01:00 localhost kernel[0]: hfs mount: enabling extended security on File Server OS X BU
    Jul 23 14:01:00 localhost diskarbitrationd[71]: disk0s10 hfs 30AE8237-63C0-3E12-A66E-37DDF143A997 File Server OS X BU /Volumes/File Server OS X BU
    Jul 23 14:01:01 localhost kernel[0]: BMacEnet: Ethernet address 00:50:e4:6e:38:19
    Jul 23 14:01:04 localhost lookupd[144]: lookupd (version 369.5) starting - Mon Jul 23 14:01:04 2007
    Jul 23 14:01:05 localhost kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: verifying cyrus databases
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: skiplist: recovered /var/imap/mailboxes.db (13 records, 2528 bytes) in 0 seconds
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: skiplist: recovered /var/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jul 23 14:01:06 localhost kernel[0]: BMacEnet::monitorLinkStatus: Link up at 100 Mbps - Half Duplex
    Jul 23 14:01:06 localhost configd[68]: AppleTalk startup
    Jul 23 14:01:06 data configd[68]: setting hostname to "data.jrpinhouse.com"
    Jul 23 14:01:07 data java: Java is generating its shared archive, version 1.5
    Jul 23 14:01:07 data java: Java is generating its shared archive, version 1.5
    Jul 23 14:01:08 data launchd: Server 490f in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[144]: exited abnormally: Hangup
    Jul 23 14:01:08 data configd[68]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jul 23 14:01:08 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:01:08 data lookupd[149]: lookupd (version 369.5) starting - Mon Jul 23 14:01:08 2007
    Jul 23 14:01:15 data configd[68]: AppleTalk startup complete
    Jul 23 14:01:16 data kernel[0]: ATY,Rage128y: vram [86000000:01000000]
    Jul 23 14:01:21 data mountd[195]: /usr/sbin/slp_reg exit status 57
    Jul 23 14:01:24 data mountd[195]: path contains symlinks: /Volumes/Server NetBoot/Library/NetBoot/NetBootSP0
    Jul 23 14:01:24 data mountd[195]: Error processing exports list line: /Volumes/Server\ NetBoot/Library/NetBoot/NetBootSP0 -ro
    Jul 23 14:01:30 data configd[68]: target=enable-network: disabled
    Jul 23 14:01:31 data /usr/sbin/serialnumberd[293]: serialnumberd: Firewall rule #1 added to allow port 626.
    Jul 23 14:01:34 data ctl_cyrusdb[87]: done verifying cyrus databases
    Jul 23 14:01:40 data kernel[0]: nmbd[360] uses send/recv on a pipe
    Jul 23 14:01:40 data servermgrd: servermgr_dns: Reloaded named
    Jul 23 14:01:41 data servermgrd: servermgr_dns: configured name and reverse DNS name do not match (data.jrpinhouse.com != server.jrp.inhouse), various services may not function properly - use changeip to repair and/or correct DNS
    Jul 23 14:01:42 data master[63]: ready for work
    Jul 23 14:01:42 data ctl_cyrusdb[386]: checkpointing cyrus databases
    Jul 23 14:01:43 data ctl_cyrusdb[386]: done checkpointing cyrus databases
    Jul 23 14:01:56 data /usr/sbin/serveradmin: servermgr_ipfilter:ipfw config:Notice:Disabled firewall
    Jul 23 14:02:00 data /usr/sbin/AppleFileServer: TIME-CHECK: NSLXStandardRegisterService took 4.026076 seconds!\n
    Jul 23 14:02:03 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:natd launch requested
    Jul 23 14:02:04 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:nat divert rule for interface 'en0' added to firewall
    Jul 23 14:02:14 data ARDAgent [400]: ******ARDAgent Launched******
    Jul 23 14:02:15 data /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jul 23 14:02:17 data ARDAgent [400]: ******ARDAgent Ready******
    Jul 23 14:02:18 data ARDAgent [400]: call logout from LoginLogoutProxyCallBackFunction
    Jul 23 14:02:18 data kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:02:19 data loginwindow[399]: Login Window Started Security Agent
    Jul 23 14:02:25 data ARDAgent [418]: ******ARDAgent Launched******
    Jul 23 14:02:26 data ARDAgent [418]: ******ARDAgent Ready******
    Jul 23 14:08:14 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:10:47 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:12:43 data launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[149]: exited abnormally: Hangup
    Jul 23 14:12:43 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:12:44 data lookupd[599]: lookupd (version 369.5) starting - Mon Jul 23 14:12:44 2007
    Jul 23 14:12:59 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/lpr.log.2.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/xgrid
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/lpr.log.3.gz
    Jul 23 14:15:09 data launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[599]: exited abnormally: Hangup
    Jul 23 14:15:09 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:15:10 data lookupd[626]: lookupd (version 369.5) starting - Mon Jul 23 14:15:10 2007
    Jul 23 14:15:54 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:17:06 data named[651]: starting BIND 9.3.4 -f
    Jul 23 14:17:06 data named[651]: command channel listening on 127.0.0.1#54
    Jul 23 14:17:19 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:17:55 data ARDAgent [675]: ******ARDAgent Launched******
    Jul 23 14:17:55 data ARDAgent [675]: ******ARDAgent Ready******
    Jul 23 14:17:58 data ARDAgent [675]: call logout from LoginLogoutProxyCallBackFunction
    Jul 23 14:17:58 data shutdown: reboot by admin:
    Jul 23 14:18:01 data SystemStarter[681]: authentication service (725) did not complete successfully
    Jul 23 14:18:02 data SystemStarter[681]: IP Failover (737) did not complete successfully
    Jul 23 14:18:03 data ARDAgent [788]: ******ARDAgent Launched******
    Jul 23 14:18:04 data ARDAgent [788]: ******ARDAgent Ready******
    Jul 23 14:18:56 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jul 23 14:18:55 localhost memberd[55]: memberd starting up
    Jul 23 14:18:56 localhost kernel[0]: vmpagebootstrap: 173782 free pages
    Jul 23 14:18:55 localhost named[48]: starting BIND 9.3.4 -f
    Jul 23 14:18:56 localhost kernel[0]: migtable_maxdispl = 70
    Jul 23 14:18:55 localhost mDNSResponder-108.5 (May 9 2007 16: 57:18)[36]: starting
    Jul 23 14:18:56 localhost kernel[0]: 70 prelinked modules
    Jul 23 14:18:56 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jul 23 14:18:56 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jul 23 14:18:55 localhost master[45]: process started
    Jul 23 14:18:56 localhost kernel[0]: using 1802 buffer headers and 1802 cluster IO buffer headers
    Jul 23 14:18:55 localhost lookupd[53]: lookupd (version 369.5) starting - Mon Jul 23 14:18:55 2007
    Jul 23 14:18:56 localhost kernel[0]: FireWire (LYNX) built-in rev 2 now active, GUID 0050e4ff fe6e3819; max speed s400.
    Jul 23 14:18:56 localhost kernel[0]: Security auditing service present
    Jul 23 14:18:56 localhost kernel[0]: BSM auditing present
    Jul 23 14:18:56 localhost DirectoryService[58]: Launched version 2.1 (v353.6)
    Jul 23 14:18:56 localhost kernel[0]: disabled
    Jul 23 14:18:56 localhost kernel[0]: rooting via boot-uuid from /chosen: 6F169A87-E09E-39FA-B932-E1B3AB295133
    Jul 23 14:18:56 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jul 23 14:18:56 localhost named[48]: command channel listening on 127.0.0.1#54
    Jul 23 14:18:56 localhost kernel[0]: ADB present:0
    Jul 23 14:18:56 localhost kernel[0]: Got boot device = IOService:/GossamerPE/pci@80000000/AppleGracklePCI/pci-bridge@D/IOPCI2PCIBridge /pci-ata@1/CMD646Root/ata-4@0/CMD646ATA/ATADeviceNub@1/IOATABlockStorageDriver/I OATABlockStorageDevice/IOBlockStorageDriver/IBM-IC35L060AVER07-0 Media/IOApplePartitionScheme/AppleHFS_Untitled5@12
    Jul 23 14:18:56 localhost kernel[0]: BSD root: disk1s12, major 14, minor 20
    Jul 23 14:18:56 localhost kernel[0]: hfs mount: enabling extended security on File Server OS X
    Jul 23 14:18:56 localhost kernel[0]: Jettisoning kernel linker.
    Jul 23 14:18:56 localhost kernel[0]: Resetting IOCatalogue.
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 0
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: ROM ndrv for ATY,Rage128y is too old (0xb3383430)
    Jul 23 14:18:58 localhost kernel[0]: BMacEnet: Ethernet address 00:50:e4:6e:38:19
    Jul 23 14:18:59 localhost launchd: Server 3307 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[53]: exited abnormally: Hangup
    Jul 23 14:18:59 localhost kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:18:59 localhost java: Java is generating its shared archive, version 1.5
    Jul 23 14:18:59 localhost java: Java is generating its shared archive, version 1.5
    Jul 23 14:19:00 localhost lookupd[95]: lookupd (version 369.5) starting - Mon Jul 23 14:19:00 2007
    Jul 23 14:19:02 localhost mDNSResponder: Adding browse domain local.
    Jul 23 14:19:02 localhost kernel[0]: BMacEnet::monitorLinkStatus: Link up at 100 Mbps - Half Duplex
    Jul 23 14:19:02 localhost configd[50]: AppleTalk startup
    Jul 23 14:19:02 data configd[50]: setting hostname to "data.jrpinhouse.com"
    Jul 23 14:19:02 data ctl_cyrusdb[61]: verifying cyrus databases
    Jul 23 14:19:02 data ctl_cyrusdb[61]: skiplist: recovered /var/imap/mailboxes.db (13 records, 2528 bytes) in 0 seconds
    Jul 23 14:19:02 data ctl_cyrusdb[61]: skiplist: recovered /var/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jul 23 14:19:04 data launchd: Server 3343 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[95]: exited abnormally: Hangup
    Jul 23 14:19:04 data configd[50]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jul 23 14:19:04 data configd[50]: posting notification com.apple.system.config.network_change
    Jul 23 14:19:04 data ctl_cyrusdb[61]: done verifying cyrus databases
    Jul 23 14:19:04 data lookupd[109]: lookupd (version 369.5) starting - Mon Jul 23 14:19:04 2007
    Jul 23 14:19:07 data diskarbitrationd[52]: disk1s12 hfs 6F169A87-E09E-39FA-B932-E1B3AB295133 File Server OS X /
    Jul 23 14:19:07 data kernel[0]: hfs mount: enabling extended security on Server Data
    Jul 23 14:19:07 data diskarbitrationd[52]: disk0s10 hfs F73513A7-B484-3296-BFFE-C28BF1078604 Server Data /Volumes/Server Data
    Jul 23 14:19:07 data kernel[0]: hfs mount: enabling extended security on File Server OS X BU
    Jul 23 14:19:07 data diskarbitrationd[52]: disk1s10 hfs 30AE8237-63C0-3E12-A66E-37DDF143A997 File Server OS X BU /Volumes/File Server OS X BU
    Jul 23 14:19:07 data diskarbitrationd[52]: disk2s10 hfs C7B541A1-2E30-308F-8A64-FA74EA1B96BB JRP 250GB 01 /Volumes/JRP 250GB 01
    Jul 23 14:19:08 data configd[50]: AppleTalk startup complete
    Jul 23 14:19:12 data mountd[168]: path contains symlinks: /Volumes/Server NetBoot/Library/NetBoot/NetBootSP0
    Jul 23 14:19:12 data mountd[168]: Error processing exports list line: /Volumes/Server\ NetBoot/Library/NetBoot/NetBootSP0 -ro
    Jul 23 14:19:13 data servermgrd: servermgr_dns: configured name and reverse DNS name do not match (data.jrpinhouse.com != server.jrp.inhouse), various services may not function properly - use changeip to repair and/or correct DNS
    Jul 23 14:19:14 data kernel[0]: ATY,Rage128y: vram [86000000:01000000]
    Jul 23 14:19:14 data configd[50]: target=enable-network: disabled
    Jul 23 14:19:14 data vpnd[39]: Server 'com.apple.ppp.pptp' starting...\n
    Jul 23 14:19:14 data vpnd[39]: Loading plugin /System/Library/Extensions/PPTP.ppp\n
    Jul 23 14:19:15 data vpnd[38]: Server 'com.apple.ppp.l2tp' starting...\n
    Jul 23 14:19:15 data vpnd[38]: Loading plugin /System/Library/Extensions/L2TP.ppp\n
    Jul 23 14:19:16 data master[45]: ready for work
    Jul 23 14:19:16 data ctl_cyrusdb[210]: checkpointing cyrus databases
    Jul 23 14:19:16 data ctl_cyrusdb[210]: done checkpointing cyrus databases
    Jul 23 14:19:22 data /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jul 23 14:19:27 data kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:19:28 data loginwindow[216]: Login Window Started Security Agent
    Jul 23 14:19:29 data kernel[0]: PPTP domain init
    Jul 23 14:19:29 data vpnd[39]: Listening for connections...\n
    Jul 23 14:19:29 data kernel[0]: L2TP domain init
    Jul 23 14:19:29 data kernel[0]: L2TP domain init complete
    Jul 23 14:19:29 data vpnd[38]: Listening for connections...\n
    Jul 23 14:19:36 data /usr/sbin/serialnumberd[229]: serialnumberd: Firewall rule #1 added to allow port 626.
    Jul 23 14:19:48 data /usr/sbin/serveradmin: servermgr_ipfilter:ipfw config:Notice:Disabled firewall
    Jul 23 14:19:53 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:natd launch requested
    Jul 23 14:19:54 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:nat divert rule for interface 'en0' added to firewall
    Jul 23 14:19:58 data kernel[0]: nmbd[389] uses send/recv on a pipe
    Jul 23 14:19:58 data ARDAgent [386]: ******ARDAgent Launched******
    Jul 23 14:20:01 data ARDAgent [386]: ******ARDAgent Ready******
    Jul 23 14:25:54 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:28:40 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..

    It was something to do with DNS settings.
    I had to revert to an older DNS settings of 'data.xxxxxxxx.com' as after reboot for a new DNS of 'server.aaaaaaaa.inhouse' www kept asking for 'data.xxxxxxxx.com' in the error log file.
    Seems that OS X Server's DNS settings do not like being changed through the Server Admin application. Though isn't that why we have a Server Admin app and nice OS X front ends?!

Maybe you are looking for

  • Internet access to the SolMan

    Hi, I want to know if it is possible to reach the SolMan via Internet access? We want to give the project members access to the project documentation in the Roadmap. Until now I could not find any practical links. But I have heard that´s possible via

  • How can i modify parameters in the web page of a device

    I need to configure a wifi device through its web page and its time consuming. Can anyone help me to automate this through labview. Br, Leo Fenner Fidelis P.

  • In my catalog, updating account info from expired trial to current Creative Cloud membership

    When I started a trial membership, I opened a catalog on my external hard drive.  Last night I was able to upload new photos to this catalog, but when I went to move to the Develop module, I got an error message that says "Develop Module is disabled.

  • Video Rate Changes from Cinema Tools to Final Cut

    I have a problem that exists on serveral levels. Hopefully I can explain: 1. I directed a concert shoot with eight cameras. All cameras were Panasonic DVX100A configured for 24p Advanced except one, which was a Panasonic SDX900 configured for 24p (wh

  • Key Differences in ECC 6.0 and 4.6C with respect to SAP SD Module

    Dear All, I would like to know the know the Key Differences in ECC 6.0 and 4.6C with respect to SAP SD Module. I have already gone throught the release notes and upgrade erp in service.sap.com. I have also checked solution browser. Its Urgent. Regard