@jszubiak Napisano Luty 9, 2012 Zgłoszenie Share Napisano Luty 9, 2012 "ls -la" nie "ls -a" zobaczysz roznice. Pozdr. J.Sz 1 1 Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
adampzb Napisano Luty 9, 2012 Autor Zgłoszenie Share Napisano Luty 9, 2012 # ls -la /etc/httpd razem 24 drwxr-xr-x. 4 root root 4096 02-05 20:22 . drwxr-xr-x. 158 root root 12288 02-09 22:05 .. drwxr-xr-x. 2 root root 4096 02-05 20:22 conf drwxr-xr-x. 2 root root 4096 02-09 17:45 conf.d lrwxrwxrwx. 1 root root 19 02-05 20:22 logs -> ../../var/log/httpd lrwxrwxrwx. 1 root root 27 02-05 20:22 modules -> ../../usr/lib/httpd/modules lrwxrwxrwx. 1 root root 19 02-05 20:22 run -> ../../var/run/httpd Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
@jszubiak Napisano Luty 9, 2012 Zgłoszenie Share Napisano Luty 9, 2012 ls -laZ /etc/httpd/logs/ Pozdr. J.Sz Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
adampzb Napisano Luty 9, 2012 Autor Zgłoszenie Share Napisano Luty 9, 2012 # ls -laZ /etc/httpd/logs/ drwx------. root root system_u:object_r:httpd_log_t:s0 . drwxr-xr-x. root root system_u:object_r:var_log_t:s0 .. Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
@jszubiak Napisano Luty 9, 2012 Zgłoszenie Share Napisano Luty 9, 2012 Ok, touch /var/log/httpd/error_log systemctl start httpd.service i na wszelki wypadek ls -laZ /etc/httpd/logs/ Pozdr. J.Sz Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
adampzb Napisano Luty 9, 2012 Autor Zgłoszenie Share Napisano Luty 9, 2012 # touch /var/log/httpd/error_log [root@localhost adam]# systemctl start httpd.service Job failed. See system logs and 'systemctl status' for details. # ls -laZ /etc/httpd/logs/ drwx------. root root system_u:object_r:httpd_log_t:s0 . drwxr-xr-x. root root system_u:object_r:var_log_t:s0 .. -rw-r--r--. root root unconfined_u:object_r:httpd_log_t:s0 error_log Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
@jszubiak Napisano Luty 9, 2012 Zgłoszenie Share Napisano Luty 9, 2012 Jest jakaś zawartość pliku /var/log/httpd/error_log ? jeśli tak to zapodaj tail-a i profilaktycznie: apachectl configtest Pozdr, J.Sz Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
adampzb Napisano Luty 9, 2012 Autor Zgłoszenie Share Napisano Luty 9, 2012 # apachectl configtest Syntax OK nie ma zawartosci Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
@jszubiak Napisano Luty 9, 2012 Zgłoszenie Share Napisano Luty 9, 2012 No dobra to zacznijmy od innej strony: cat /lib/systemd/system/httpd.service w tym pliku powinien być wskazany "EnvironmentFile", cat-nij go też i jeszcze grep -v -E '(^#|^$)' /etc/httpd/conf/httpd.conf Pozdr. J.Sz 1 Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
adampzb Napisano Luty 9, 2012 Autor Zgłoszenie Share Napisano Luty 9, 2012 # cat /lib/systemd/system/httpd.service [unit] Description=The Apache HTTP Server (prefork MPM) After=syslog.target network.target [service] Type=forking PIDFile=/var/run/httpd/httpd.pid EnvironmentFile=/etc/sysconfig/httpd ExecStart=/usr/sbin/httpd $OPTIONS -k start ExecReload=/usr/sbin/httpd $OPTIONS -t ExecReload=/bin/kill -HUP $MAINPID ExecStop=/usr/sbin/httpd $OPTIONS -k stop [install] WantedBy=multi-user.target[/code] [code]# cat /etc/sysconfig/httpd # Configuration file for the httpd service. # # The default processing model (MPM) is the process-based # 'prefork' model. A thread-based model, 'worker', is also # available, but does not work with some modules (such as PHP). # The service must be stopped before changing this variable. # #HTTPD=/usr/sbin/httpd.worker # # To pass additional options (for instance, -D definitions) to the # httpd binary at startup, set OPTIONS here. # #OPTIONS= # # By default, the httpd process is started in the C locale; to # change the locale in which the server runs, the HTTPD_LANG # variable can be set. # #HTTPD_LANG=C # # When stopping the server a 10 second timeout is allowed before # forcibly terminating the parent process (with a SIGKILL signal). # To allow a longer delay, set the STOP_TIMEOUT variable. # #STOP_TIMEOUT=10 # # By default, the httpd process will create the file # /var/run/httpd/httpd.pid in which it records its process # identification number when it starts. If an alternate location is # specified in httpd.conf (via the PidFile directive), the new # location needs to be reported in the PIDFILE. # #PIDFILE=/var/run/httpd/httpd.pid[/code] [code]d/httpd.pid [root@localhost adam]# grep -v -E '(^#|^$)' /etc/httpd/conf/httpd.conf ServerTokens OS ServerRoot "/etc/httpd" PidFile run/httpd.pid Timeout 60 KeepAlive Off MaxKeepAliveRequests 100 KeepAliveTimeout 5 <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 4000 </IfModule> <IfModule worker.c> StartServers 4 MaxClients 300 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 </IfModule> Listen 80 LoadModule auth_basic_module modules/mod_auth_basic.so LoadModule auth_digest_module modules/mod_auth_digest.so LoadModule authn_file_module modules/mod_authn_file.so LoadModule authn_alias_module modules/mod_authn_alias.so LoadModule authn_anon_module modules/mod_authn_anon.so LoadModule authn_dbm_module modules/mod_authn_dbm.so LoadModule authn_default_module modules/mod_authn_default.so LoadModule authz_host_module modules/mod_authz_host.so LoadModule authz_user_module modules/mod_authz_user.so LoadModule authz_owner_module modules/mod_authz_owner.so LoadModule authz_groupfile_module modules/mod_authz_groupfile.so LoadModule authz_dbm_module modules/mod_authz_dbm.so LoadModule authz_default_module modules/mod_authz_default.so LoadModule authn_dbd_module modules/mod_authn_dbd.so LoadModule dbd_module modules/mod_dbd.so LoadModule ldap_module modules/mod_ldap.so LoadModule authnz_ldap_module modules/mod_authnz_ldap.so LoadModule include_module modules/mod_include.so LoadModule log_config_module modules/mod_log_config.so LoadModule logio_module modules/mod_logio.so LoadModule env_module modules/mod_env.so LoadModule ext_filter_module modules/mod_ext_filter.so LoadModule mime_magic_module modules/mod_mime_magic.so LoadModule expires_module modules/mod_expires.so LoadModule deflate_module modules/mod_deflate.so LoadModule headers_module modules/mod_headers.so LoadModule usertrack_module modules/mod_usertrack.so LoadModule setenvif_module modules/mod_setenvif.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 info_module modules/mod_info.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 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 substitute_module modules/mod_substitute.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_ajp_module modules/mod_proxy_ajp.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule cache_module modules/mod_cache.so LoadModule suexec_module modules/mod_suexec.so LoadModule disk_cache_module modules/mod_disk_cache.so LoadModule cgi_module modules/mod_cgi.so LoadModule version_module modules/mod_version.so Include conf.d/*.conf User apache Group apache ServerAdmin root@localhost UseCanonicalName Off DocumentRoot "/var/www/html" <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory "/var/www/html"> # # 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> <IfModule mod_userdir.c> # # UserDir is disabled by default since it can confirm the presence # of a username on the system (depending on home directory # permissions). # UserDir disabled # # To enable requests to /~user/ to serve the user's public_html # directory, remove the "UserDir disabled" line above, and uncomment # the following line instead: # #UserDir public_html </IfModule> DirectoryIndex index.html index.html.var AccessFileName .htaccess <FilesMatch "^\.ht"> Order allow,deny Deny from all Satisfy All </FilesMatch> TypesConfig /etc/mime.types DefaultType text/plain <IfModule mod_mime_magic.c> MIMEMagicFile conf/magic </IfModule> HostnameLookups Off ErrorLog logs/error_log LogLevel warn LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent CustomLog logs/access_log combined ServerSignature On Alias /icons/ "/var/www/icons/" <Directory "/var/www/icons"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> <IfModule mod_dav_fs.c> # Location of the WebDAV lock database. DAVLockDB /var/lib/dav/lockdb </IfModule> ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" <Directory "/var/www/cgi-bin"> AllowOverride None Options None Order allow,deny Allow from all </Directory> IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable Charset=UTF-8 AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/* AddIconByType (VID,/icons/movie.gif) video/* AddIcon /icons/binary.gif .bin .exe AddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip AddIcon /icons/a.gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txt AddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .for AddIcon /icons/dvi.gif .dvi AddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl AddIcon /icons/tex.gif .tex AddIcon /icons/bomb.gif core AddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ DefaultIcon /icons/unknown.gif ReadmeName README.html HeaderName HEADER.html IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t AddLanguage ca .ca AddLanguage cs .cz .cs AddLanguage da .dk AddLanguage de .de AddLanguage el .el AddLanguage en .en AddLanguage eo .eo AddLanguage es .es AddLanguage et .et AddLanguage fr .fr AddLanguage he .he AddLanguage hr .hr AddLanguage it .it AddLanguage ja .ja AddLanguage ko .ko AddLanguage ltz .ltz AddLanguage nl .nl AddLanguage nn .nn AddLanguage no .no AddLanguage pl .po AddLanguage pt .pt AddLanguage pt-BR .pt-br AddLanguage ru .ru AddLanguage sv .sv AddLanguage zh-CN .zh-cn AddLanguage zh-TW .zh-tw LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW ForceLanguagePriority Prefer Fallback AddDefaultCharset UTF-8 AddType application/x-compress .Z AddType application/x-gzip .gz .tgz AddType application/x-x509-ca-cert .crt AddType application/x-pkcs7-crl .crl AddHandler type-map var AddType text/html .shtml AddOutputFilter INCLUDES .shtml Alias /error/ "/var/www/error/" <IfModule mod_negotiation.c> <IfModule mod_include.c> <Directory "/var/www/error"> AllowOverride None Options IncludesNoExec AddOutputFilter Includes html AddHandler type-map var Order allow,deny Allow from all LanguagePriority en es de fr ForceLanguagePriority Prefer Fallback </Directory> </IfModule> </IfModule> BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully BrowserMatch "MS FrontPage" redirect-carefully BrowserMatch "^WebDrive" redirect-carefully BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully BrowserMatch "^gnome-vfs/1.0" redirect-carefully BrowserMatch "^XML Spy" redirect-carefully BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
@jszubiak Napisano Luty 9, 2012 Zgłoszenie Share Napisano Luty 9, 2012 ... one more try: systemctl start httpd.service tail /var/log/messages tail /var/log/audit/audit.log Pozdr, J.Sz Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
adampzb Napisano Luty 9, 2012 Autor Zgłoszenie Share Napisano Luty 9, 2012 # systemctl start httpd.service Job failed. See system logs and 'systemctl status' for details. # tail /var/log/messages Feb 9 23:26:06 localhost dbus-daemon[1031]: dbus[1031]: [system] Successfully activated service 'net.reactivated.Fprint' Feb 9 23:26:06 localhost dbus-daemon[1031]: ** Message: D-Bus service launched with name: net.reactivated.Fprint Feb 9 23:26:06 localhost dbus-daemon[1031]: ** Message: entering main loop Feb 9 23:26:36 localhost dbus-daemon[1031]: ** Message: No devices in use, exit Feb 9 23:28:11 localhost kernel: [ 5146.002360] ath5k_hw_get_isr: ISR: 0x00000080 IMR: 0x00000000 Feb 10 00:00:47 localhost httpd[3260]: (98)Address already in use: make_sock: could not bind to address 127.0.0.1:80 Feb 10 00:00:47 localhost httpd[3260]: no listening sockets available, shutting down Feb 10 00:00:47 localhost httpd[3260]: Unable to open logs Feb 10 00:00:47 localhost systemd[1]: httpd.service: control process exited, code=exited status=1 Feb 10 00:00:47 localhost systemd[1]: Unit httpd.service entered failed state. # tail /var/log/audit/audit.log type=USER_END msg=audit(1328826497.298:111): user pid=0 uid=0 auid=1000 ses=1 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close acct="root" exe="/bin/su" hostname=? addr=? terminal=pts/1 res=success' type=CRED_DISP msg=audit(1328826497.298:112): user pid=0 uid=0 auid=1000 ses=1 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred acct="root" exe="/bin/su" hostname=? addr=? terminal=pts/1 res=success' type=SERVICE_START msg=audit(1328828447.586:113): user pid=0 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg=': comm="httpd" exe="/bin/systemd" hostname=? addr=? terminal=? res=failed' type=USER_ACCT msg=audit(1328828461.637:114): user pid=0 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:crond_t:s0-s0:c0.c1023 msg='op=PAM:accounting acct="root" exe="/usr/sbin/crond" hostname=? addr=? terminal=cron res=success' type=CRED_ACQ msg=audit(1328828461.637:115): user pid=0 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:crond_t:s0-s0:c0.c1023 msg='op=PAM:setcred acct="root" exe="/usr/sbin/crond" hostname=? addr=? terminal=cron res=success' type=LOGIN msg=audit(1328828461.639:116): login pid=3262 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=3 type=USER_START msg=audit(1328828461.658:117): user pid=0 uid=0 auid=0 ses=3 subj=system_u:system_r:crond_t:s0-s0:c0.c1023 msg='op=PAM:session_open acct="root" exe="/usr/sbin/crond" hostname=? addr=? terminal=cron res=success' type=CRED_REFR msg=audit(1328828461.659:118): user pid=0 uid=0 auid=0 ses=3 subj=system_u:system_r:crond_t:s0-s0:c0.c1023 msg='op=PAM:setcred acct="root" exe="/usr/sbin/crond" hostname=? addr=? terminal=cron res=success' type=CRED_DISP msg=audit(1328828461.772:119): user pid=0 uid=0 auid=0 ses=3 subj=system_u:system_r:crond_t:s0-s0:c0.c1023 msg='op=PAM:setcred acct="root" exe="/usr/sbin/crond" hostname=? addr=? terminal=cron res=success' type=USER_END msg=audit(1328828461.772:120): user pid=0 uid=0 auid=0 ses=3 subj=system_u:system_r:crond_t:s0-s0:c0.c1023 msg='op=PAM:session_close acct="root" exe="/usr/sbin/crond" hostname=? addr=? terminal=cron res=success' Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
@jszubiak Napisano Luty 9, 2012 Zgłoszenie Share Napisano Luty 9, 2012 zabija na za dlugosc watku, Ciekawe czemu httpd twierdzi ze nie moze sie przybindwoac do 127.0.0.1:80 ? lsof -i tcp:80 ps auxwww | grep http df -Ph /var/ /tmp/ / Edit: i jeszcze cat /etc/hosts Pozdr, J.Sz Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
adampzb Napisano Luty 10, 2012 Autor Zgłoszenie Share Napisano Luty 10, 2012 dobra niewazne i tak musze reinstalowac system... dzieki wszystki za pomoc Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
adampzb Napisano Luty 10, 2012 Autor Zgłoszenie Share Napisano Luty 10, 2012 maly update wszystko juz dziala jak nalezy usunalem sterowniki nvidi i kde juz sie nie krzaczy a apache juz smiga. nie zgadniecie czemu. w nakladce graficznej administracja>ustawienia servera>http mialem dodany adres 127.0.0.1 na porcie 80 :S sory za sprawianie problemow ale nie pamietam nawet zebym cos tam grzebal, z ciekawosci wszedlem w te ustawienia usunalem adres i httpd zaskoczyl. fedora znow dobrze funkcjonuje... dzieki wszystkim za zainsteresowanie i pomoc Odnośnik do komentarza Udostępnij na innych stronach More sharing options...
Rekomendowane odpowiedzi
Jeśli chcesz dodać odpowiedź, zaloguj się lub zarejestruj nowe konto
Jedynie zarejestrowani użytkownicy mogą komentować zawartość tej strony.
Zarejestruj nowe konto
Załóż nowe konto. To bardzo proste!
Zarejestruj sięZaloguj się
Posiadasz już konto? Zaloguj się poniżej.
Zaloguj się