Chown Accident at " /" level - Server Broken

Discussion in 'ISPConfig 3 Priority Support' started by LAKSHA, Jul 28, 2020.

  1. LAKSHA

    LAKSHA Member

    Hello,
    I was in the folder
    Code:
    var/www/clients/client1/web40/
    on putty
    i thought for some reason if i run
    Code:
    chown -R web40:client1 / 
    all the files inside will be changing.
    instead it took to the topmost level and tried changing the whole server. i stopped it in fraction of second. but the damage was done.
    i somehow recovered halfway.
    i have innodb and i did manage to get my mysql back and did a shell script to change all permissions of all the required folders to the required owners.
    but untill i changed the owner of var/lib/mysql to mysql:mysql and deleted the tc.log and changed some file permission of logs and so on i never really got my mysql up and running.
    now the websites are fine but i just want to know how i could get ispconfig3 back online?
    which all places or folders and files i need to change the owner?
    could i have a basic of owner file structre for the ispconfig3?
    i am on debian 10
    following are my server tuts

    PERFECT SERVER MAIN TUTORIAL
    Code:
    https://www.howtoforge.com/perfect-server-debian-10-buster-apache-bind-dovecot-ispconfig-3-1/

    SECURING ISPCONFIG 3.1 CONTROL PANEL/PUREFTP/DOVVECOT

    Code:
    https://www.howtoforge.com/tutorial/securing-ispconfig-3-with-a-free-lets-encrypt-ssl-certificate/
    INSTALL ALL PHP VERSION
    Code:
    https://www.howtoforge.com/tutorial/how-to-install-php-7-for-ispconfig-3-from-debian-packages-on-debian-8-and-9/
    PERFECT SERVER MAIN TUTORIAL
    Code:
    https://www.howtoforge.com/perfect-server-debian-10-buster-apache-bind-dovecot-ispconfig-3-1/
    Lastly i would like to know just the file permissions of all the vital folders.
    All help will be much appreciated !
    Be Safe and Work from Home!
     
    Last edited: Jul 28, 2020
  2. LAKSHA

    LAKSHA Member

    Hello @till request if you have some minutes to spare and give me some suggestions ? Please!
     
  3. Steini86

    Steini86 Active Member

    You pretty much destroyed your system. There is no way that recovering will cost you less time than to restore a backup.
    If your backup is old, you can just copy the permissions with the "reference" parameter:
    Code:
    sudo find . -exec chown --reference="{}" "/{}" \;
    sudo find . -exec chmod --reference="{}" "/{}" \;
    for the current directory (see: https://unix.stackexchange.com/a/79442)

    To find out which permissions were changed, you can list the files owned by web40 with:
    Code:
    find /-user web40
    If it is too much, backup your databases and user files and reinstall your system. Easiest and fastest is to just restore your backup.

    You can try the script by Larry Kagan to restore the permissions of all Packages installed via apt (does not include ispconfig. Reinstall ispconfig afterwards):
    Code:
    #!/bin/bash
    # Restores file permissions for all files on a debian system for which .deb
    # packages exist.
    #
    # Author: Larry Kagan <me at larrykagan dot com>
    # Since 2007-02-20
    
    ARCHIVE_DIR=/var/cache/apt/archives/
    PACKAGES=`ls $ARCHIVE_DIR`
    cd /
    
    function changePerms()
    {
        CHOWN="/bin/chown"
        CHMOD="/bin/chmod"
        PERMS=$1
        OWN=`echo $2 | /usr/bin/tr '/' ':'`
        PATHNAME=$3
    
        echo -e "$CHOWN $OWN $PATHNAME"
        #`$CHOWN $OWN $PATHNAME`
        #`$CHMOD $MODE $PATHNAME`
    
    }
    
    for PACKAGE in $PACKAGES;
    do
        echo -e "Getting information for $PACKAGE\n"
        FILES=`/usr/bin/dpkg -c "${ARCHIVE_DIR}${PACKAGE}"`
    
        for FILE in "$FILES";
        do
            FILE_DETAILS=`echo "$FILE" | awk '{print $1"\t"$2"\t"$6}'`
            changePerms $FILE_DETAILS
        done
    done
     
    LAKSHA, Taleman and Jesse Norell like this.
  4. LAKSHA

    LAKSHA Member

    Code:
    /var/lib/php7.3-fpm/web40.sock
    /proc/963
    /proc/963/task
    /proc/963/task/963
    /proc/963/task/963/net
    /proc/963/task/963/attr
    /proc/963/net
    /proc/963/attr
    /proc/964
    /proc/964/task
    /proc/964/task/964
    /proc/964/task/964/net
    /proc/964/task/964/attr
    /proc/964/net
    /proc/964/attr
    /var/www/clients/client1/web40/
    Please let me know if i need to keep ispconfig as user and group for any folder.
    all my sites are working but ispconfig3 is not on port 8080
    on normal port of the hostname the site is working.

    Also if i choose to reinstall, how could i exactly keep all my installations in the precise folders so the installations reflects in my new ispconfig 3 panel ?
    all your help will be appreciated.
    Thank you for your informative revert :)
    @Steini86 :)
     
  5. till

    till Super Moderator Staff Member ISPConfig Developer

    run an ispconfig update with reconfigure services = yes during update.
     
    LAKSHA likes this.
  6. LAKSHA

    LAKSHA Member

    After the update
    This is the message i get on the hostname
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    as well on ipaddress i get ssl error and then the same message of 503.
     
  7. till

    till Super Moderator Staff Member ISPConfig Developer

    Take a look into the apache error.log file to see why it fails.
     
  8. LAKSHA

    LAKSHA Member

    Code:
    [Thu Jul 30 12:57:29.518847 2020] [fcgid:error] [pid 1042] (13)Permission denied: mod_fcgid: couldn't bind unix domain socket /var/lib/apache2/fcgid/sock/1042.383
    [Thu Jul 30 12:57:29.518986 2020] [fcgid:warn] [pid 1042] (13)Permission denied: mod_fcgid: spawn process /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter error
    [Thu Jul 30 12:57:29.519060 2020] [fcgid:warn] [pid 1191] [client 157.47.23.92:51356] mod_fcgid: can't apply process slot for /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter
    [Thu Jul 30 12:58:22.542574 2020] [mpm_prefork:notice] [pid 1032] AH00171: Graceful restart requested, doing restart
    
    [ 2020-07-30 12:58:22.5973 1046/7f612b7fe700 age/Cor/CoreMain.cpp:532 ]: Signal received. Gracefully shutting down... (send signal 2 more time(s) to force shutdown)
    [ 2020-07-30 12:58:22.5975 1046/7f613875d980 age/Cor/CoreMain.cpp:901 ]: Received command to shutdown gracefully. Waiting until all clients have disconnected...
    [ 2020-07-30 12:58:22.5984 1046/7f612affd700 Ser/Server.h:817 ]: [ServerThr.2] Freed 128 spare client objects
    [ 2020-07-30 12:58:22.5985 1046/7f612affd700 Ser/Server.h:464 ]: [ServerThr.2] Shutdown finished
    [ 2020-07-30 12:58:22.5992 1046/7f612a7fc700 Ser/Server.h:817 ]: [ServerThr.3] Freed 128 spare client objects
    [ 2020-07-30 12:58:22.5993 1046/7f612a7fc700 Ser/Server.h:464 ]: [ServerThr.3] Shutdown finished
    [ 2020-07-30 12:58:22.5997 1046/7f6129ffb700 Ser/Server.h:817 ]: [ServerThr.4] Freed 128 spare client objects
    [ 2020-07-30 12:58:22.5997 1046/7f6129ffb700 Ser/Server.h:464 ]: [ServerThr.4] Shutdown finished
    [ 2020-07-30 12:58:22.6000 1046/7f61297fa700 Ser/Server.h:817 ]: [ServerThr.5] Freed 128 spare client objects
    [ 2020-07-30 12:58:22.6000 1046/7f61297fa700 Ser/Server.h:464 ]: [ServerThr.5] Shutdown finished
    [ 2020-07-30 12:58:22.6002 1046/7f6128ff9700 Ser/Server.h:817 ]: [ServerThr.6] Freed 128 spare client objects
    [ 2020-07-30 12:58:22.6002 1046/7f6128ff9700 Ser/Server.h:464 ]: [ServerThr.6] Shutdown finished
    
    [ 2020-07-30 12:58:22.6005 1054/7fe1b7fff700 age/Ust/UstRouterMain.cpp:422 ]: Signal received. Gracefully shutting down... (send signal 2 more time(s) to force shutdown)
    [ 2020-07-30 12:58:22.6007 1054/7fe1bc64d980 age/Ust/UstRouterMain.cpp:492 ]: Received command to shutdown gracefully. Waiting until all clients have disconnected...
    [ 2020-07-30 12:58:22.6008 1054/7fe1b77fe700 Ser/Server.h:817 ]: [UstRouterApiServer] Freed 0 spare client objects
    [ 2020-07-30 12:58:22.6008 1054/7fe1b77fe700 Ser/Server.h:464 ]: [UstRouterApiServer] Shutdown finished
    [ 2020-07-30 12:58:22.6010 1054/7fe1b7fff700 Ser/Server.h:464 ]: [UstRouter] Shutdown finished
    [ 2020-07-30 12:58:22.6015 1046/7f612b7fe700 Ser/Server.h:817 ]: [ServerThr.1] Freed 128 spare client objects
    [ 2020-07-30 12:58:22.6015 1046/7f612b7fe700 Ser/Server.h:464 ]: [ServerThr.1] Shutdown finished
    [ 2020-07-30 12:58:22.6024 1046/7f60fbfff700 Ser/Server.h:817 ]: [ApiServer] Freed 0 spare client objects
    [ 2020-07-30 12:58:22.6024 1046/7f60fbfff700 Ser/Server.h:464 ]: [ApiServer] Shutdown finished
    [ 2020-07-30 12:58:22.6028 1054/7fe1bc64d980 age/Ust/UstRouterMain.cpp:523 ]: Passenger UstRouter shutdown finished
    [ 2020-07-30 12:58:22.7014 1046/7f613875d980 age/Cor/CoreMain.cpp:967 ]: Passenger core shutdown finished
    [ 2020-07-30 12:58:22.7976 24222/7fab1df5c980 age/Wat/WatchdogMain.cpp:1291 ]: Starting Passenger watchdog...
    [ 2020-07-30 12:58:22.8307 24225/7fac96477980 age/Cor/CoreMain.cpp:982 ]: Starting Passenger core...
    [ 2020-07-30 12:58:22.8319 24225/7fac96477980 age/Cor/CoreMain.cpp:235 ]: Passenger core running in multi-application mode.
    [ 2020-07-30 12:58:22.8359 24225/7fac96477980 age/Cor/CoreMain.cpp:732 ]: Passenger core online, PID 24225
    [ 2020-07-30 12:58:22.8525 24232/7fc17f796980 age/Ust/UstRouterMain.cpp:529 ]: Starting Passenger UstRouter...
    [ 2020-07-30 12:58:22.8552 24232/7fc17f796980 age/Ust/UstRouterMain.cpp:342 ]: Passenger UstRouter online, PID 24232
    [Thu Jul 30 12:58:22.965156 2020] [:error] [pid 1032] python_init: Python version mismatch, expected '2.7.5+', found '2.7.16'.
    [Thu Jul 30 12:58:22.965340 2020] [:error] [pid 1032] python_init: Python executable found '/usr/bin/python'.
    [Thu Jul 30 12:58:22.965353 2020] [:error] [pid 1032] python_init: Python path being used '/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload'.
    [Thu Jul 30 12:58:22.965375 2020] [:notice] [pid 1032] mod_python: Creating 8 session mutexes based on 150 max processes and 0 max threads.
    [Thu Jul 30 12:58:22.965392 2020] [:notice] [pid 1032] mod_python: using mutex_directory /tmp
    [Thu Jul 30 12:58:22.989319 2020] [mpm_prefork:notice] [pid 1032] AH00163: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 Phusion_Passenger/5.0.30 OpenSSL/1.1.1g mod_python/3.3.1 Python/2.7.16 configured -- resuming normal operations
    [Thu Jul 30 12:58:22.989365 2020] [core:notice] [pid 1032] AH00094: Command line: '/usr/sbin/apache2'
    [Thu Jul 30 12:58:22.989507 2020] [mpm_prefork:warn] [pid 1032] AH00167: long lost child came home! (pid 1040)
    

    This is what it it looks like
     
  9. till

    till Super Moderator Staff Member ISPConfig Developer

    Are you accessing the ispconfig port 8080 or another port?
    Do the other websites still work?
    What's in the access.log file when you get this error?
     
    LAKSHA likes this.
  10. LAKSHA

    LAKSHA Member

    All website are working fine.
    even hostname without 8080 is fine
    ERROR LOG
    Code:
    [Thu Jul 30 15:08:21.190403 2020] [fcgid:error] [pid 24221] (13)Permission denied: mod_fcgid: couldn't bind unix domain socket /var/lib/apache2/fcgid/sock/24221.127
    [Thu Jul 30 15:08:21.190451 2020] [fcgid:warn] [pid 24221] (13)Permission denied: mod_fcgid: spawn process /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter error
    [Thu Jul 30 15:08:21.190536 2020] [fcgid:warn] [pid 2403] [client 1.186.197.3:63044] mod_fcgid: can't apply process slot for /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter
    ACCESS LOG
    Code:
    127.0.0.1 - - [30/Jul/2020:15:05:03 +0200] "GET / HTTP/1.1" 200 10975 "-" "Mozilla/5.0 (ISPConfig monitor)"
    127.0.0.1 - - [30/Jul/2020:15:10:03 +0200] "GET / HTTP/1.1" 200 10975 "-" "Mozilla/5.0 (ISPConfig monitor)"
    ISPCONFIG LOG
    Code:
    30.07.2020-15:10 - DEBUG - Remove Lock: /usr/local/ispconfig/server/temp/.ispconfig_lock
    30.07.2020-15:11 - DEBUG - Calling function 'check_phpini_changes' from plugin 'webserver_plugin' raised by action 'server_plugins_loaded'.
    30.07.2020-15:11 - DEBUG - Remove Lock: /usr/local/ispconfig/server/temp/.ispconfig_lock
    30.07.2020-15:12 - DEBUG - Calling function 'check_phpini_changes' from plugin 'webserver_plugin' raised by action 'server_plugins_loaded'.
    30.07.2020-15:12 - DEBUG - Remove Lock: /usr/local/ispconfig/server/temp/.ispconfig_lock
     
  11. LAKSHA

    LAKSHA Member

    I have had innodb installed for something i dont rememebr. If that helps :) i am sorry i am a bit lethargic but still need to resolve this issue!
     
  12. till

    till Super Moderator Staff Member ISPConfig Developer

    Run these commands and post the result:

    ls -la /var/www/php-fcgi-scripts/
    ls -la /var/www/php-fcgi-scripts/ispconfig/
     
    LAKSHA likes this.
  13. LAKSHA

    LAKSHA Member

    Code:
    root@host:~# ls -la /var/www/php-fcgi-scripts/
    total 16
    drwxr-xr-x 4 root      root      4096 Jan 24  2020 .
    drwxr-xr-x 8 root      root      4096 Jul 27 22:59 ..
    drwxr-xr-x 2 root      root      4096 Jan 24  2020 apps
    drwxr-xr-x 2 ispconfig ispconfig 4096 Jan 24  2020 ispconfig
    root@host:~#
    root@host:~#
    root@host:~# ls -la /var/www/php-fcgi-scripts/ispconfig/
    total 12
    drwxr-xr-x 2 ispconfig ispconfig 4096 Jan 24  2020 .
    drwxr-xr-x 4 root      root      4096 Jan 24  2020 ..
    -rwxr-xr-x 1 ispconfig ispconfig  300 Jul 30 12:32 .php-fcgi-starter
    root@host:~#
    
     
  14. till

    till Super Moderator Staff Member ISPConfig Developer

    Please run:

    chown -R ispapps:ispapps /var/www/php-fcgi-scripts/apps

    and then run this command and post the result:

    ls -la /var/lib/apache2/fcgid/sock/
     
  15. LAKSHA

    LAKSHA Member

    Code:
    root@host:~# chown -R ispapps:ispapps /var/www/php-fcgi-scripts/apps
    root@host:~# ls -la /var/lib/apache2/fcgid/sock/
    total 24
    drwxr-xr-x 2 root root 20480 Jul 27 18:03 .
    drwxr-xr-x 3 root root  4096 Jul 30 12:58 ..
    srwx------ 1 root root     0 Feb  5 23:27 10015.0
    srwx------ 1 root root     0 Jun 10 16:08 10179.0
    srwx------ 1 root root     0 Jul 11 21:05 10204.0
    srwx------ 1 root root     0 Jul 11 21:06 10204.1
    srwx------ 1 root root     0 Jul 11 21:06 10204.2
    srwx------ 1 root root     0 May 22 08:38 10226.0
    srwx------ 1 root root     0 May 24 13:51 10247.0
    srwx------ 1 root root     0 May 24 14:08 10247.1
    srwx------ 1 root root     0 Jul 27 17:40 10302.0
    srwx------ 1 root root     0 Mar 21 21:19 10340.0
    srwx------ 1 root root     0 May 22 08:38 10456.0
    srwx------ 1 root root     0 Jun 30 02:18 10460.0
    srwx------ 1 root root     0 May 21 18:49 1055.0
    srwx------ 1 root root     0 Jul 16 16:38 10550.0
    srwx------ 1 root root     0 Jul 16 16:38 10550.1
    srwx------ 1 root root     0 Jul 16 16:38 10550.2
    srwx------ 1 root root     0 Jul 16 16:38 10550.3
    srwx------ 1 root root     0 May 21 19:56 1055.1
    srwx------ 1 root root     0 May 11 21:27 1056.0
    srwx------ 1 root root     0 Jun 27 10:26 10612.0
    srwx------ 1 root root     0 Jun 27 14:49 10612.1
    srwx------ 1 root root     0 Jun 27 14:49 10612.2
    srwx------ 1 root root     0 Jul 11 21:48 1066.0
    srwx------ 1 root root     0 May 22 08:38 10690.0
    srwx------ 1 root root     0 Jul 11 22:26 1070.0
    srwx------ 1 root root     0 Jul 11 22:27 1070.1
    srwx------ 1 root root     0 Mar 21 21:20 10719.0
    srwx------ 1 root root     0 Jul 11 22:15 1075.0
    srwx------ 1 root root     0 Jul 14 16:12 1077.0
    srwx------ 1 root root     0 Jan 27  2020 10785.0
    srwx------ 1 root root     0 Jan 27  2020 10785.1
    srwx------ 1 root root     0 Jan 27  2020 10785.2
    srwx------ 1 root root     0 Jan 27  2020 10785.3
    srwx------ 1 root root     0 Mar 17 21:48 10906.1
    srwx------ 1 root root     0 Mar 17 21:48 10906.2
    srwx------ 1 root root     0 Mar 17 21:48 10906.3
    srwx------ 1 root root     0 May 24 21:19 10917.0
    srwx------ 1 root root     0 May 22 04:18 1094.0
    srwx------ 1 root root     0 Jul  8 10:22 11006.0
    srwx------ 1 root root     0 Mar 21 21:21 11024.0
    srwx------ 1 root root     0 Feb 24 11:17 11043.0
    srwx------ 1 root root     0 Feb 24 12:23 11043.1
    srwx------ 1 root root     0 Feb 24 12:23 11043.2
    srwx------ 1 root root     0 May  9 11:13 11069.0
    srwx------ 1 root root     0 May  9 11:14 11069.1
    srwx------ 1 root root     0 May  9 11:14 11069.2
    srwx------ 1 root root     0 May 22 15:49 1120.0
    srwx------ 1 root root     0 May 23 15:32 11259.0
    srwx------ 1 root root     0 May 23 15:34 11259.1
    srwx------ 1 root root     0 Mar 21 21:22 11287.0
    srwx------ 1 root root     0 Feb  4 16:27 1133.0
    srwx------ 1 root root     0 May 24 21:20 11377.0
    srwx------ 1 root root     0 Jul 27 17:40 11465.0
    srwx------ 1 root root     0 Mar 21 19:45 1149.0
    srwx------ 1 root root     0 Jul 27 17:40 11700.0
    srwx------ 1 root root     0 Feb 11 02:34 11864.0
    srwx------ 1 root root     0 Jun 22 09:45 11872.0
    srwx------ 1 root root     0 Jun 22 09:47 11872.1
    srwx------ 1 root root     0 Jun 22 09:47 11872.3
    srwx------ 1 root root     0 Jul 27 17:40 11931.0
    srwx------ 1 root root     0 Mar 21 21:24 12135.0
    srwx------ 1 root root     0 Mar 10 02:42 12155.0
    srwx------ 1 root root     0 Feb 25 02:36 12156.0
    srwx------ 1 root root     0 May 21 09:50 12225.0
    srwx------ 1 root root     0 Feb 23 13:34 12289.0
    srwx------ 1 root root     0 Feb 23 13:35 12289.2
    srwx------ 1 root root     0 Feb 23 13:35 12289.3
    srwx------ 1 root root     0 Feb  6 00:00 12344.0
    srwx------ 1 root root     0 Mar 21 21:24 12359.0
    srwx------ 1 root root     0 May 22 08:39 12426.0
    srwx------ 1 root root     0 Mar 21 21:24 12583.0
    srwx------ 1 root root     0 Apr 25 20:06 12653.0
    srwx------ 1 root root     0 Apr 25 20:06 12653.1
    srwx------ 1 root root     0 Apr 25 20:06 12653.2
    srwx------ 1 root root     0 Apr 25 20:06 12653.3
    srwx------ 1 root root     0 May 23 15:40 12747.0
    srwx------ 1 root root     0 Mar 21 21:24 12803.0
    srwx------ 1 root root     0 May 22 07:55 1282.0
    srwx------ 1 root root     0 Jul 27 17:40 13011.0
    srwx------ 1 root root     0 May 23 13:17 13014.1
    srwx------ 1 root root     0 May 23 13:17 13014.2
    srwx------ 1 root root     0 May 23 13:17 13014.3
    srwx------ 1 root root     0 Mar 21 21:24 13029.0
    srwx------ 1 root root     0 Jul 11 21:48 1304.0
    srwx------ 1 root root     0 Mar 18 00:44 13118.0
    srwx------ 1 root root     0 Mar 18 09:30 13118.1
    srwx------ 1 root root     0 Mar 18 09:30 13118.2
    srwx------ 1 root root     0 Mar 18 09:30 13118.3
    srwx------ 1 root root     0 Mar 21 22:05 13134.0
    srwx------ 1 root root     0 Jul 27 17:41 13236.0
    srwx------ 1 root root     0 Mar 21 21:24 13246.0
    srwx------ 1 root root     0 May 11 19:24 13442.1
    srwx------ 1 root root     0 May 11 19:24 13442.2
    srwx------ 1 root root     0 May 11 19:24 13442.3
    srwx------ 1 root root     0 May 11 19:24 13442.4
    srwx------ 1 root root     0 Mar 21 21:24 13467.0
    srwx------ 1 root root     0 May 24 14:09 13478.0
    srwx------ 1 root root     0 May 22 08:39 13550.0
    srwx------ 1 root root     0 Jun  1 18:06 13629.0
    srwx------ 1 root root     0 Mar 21 21:24 13697.0
    srwx------ 1 root root     0 Feb  5 20:24 1371.0
    srwx------ 1 root root     0 May 22 08:39 13783.0
    srwx------ 1 root root     0 Mar 17 21:55 13803.0
    srwx------ 1 root root     0 Jul 10 15:28 13866.0
    srwx------ 1 root root     0 Mar 21 21:24 13917.0
    srwx------ 1 root root     0 Apr 10 14:43 13974.0
    srwx------ 1 root root     0 May 20 13:33 1405.0
    srwx------ 1 root root     0 Feb  4 16:29 1406.0
    srwx------ 1 root root     0 May  4 23:19 14111.0
    srwx------ 1 root root     0 Mar 21 21:24 14138.0
    srwx------ 1 root root     0 Mar 17 21:57 14155.0
    srwx------ 1 root root     0 Mar 17 22:43 14155.1
    srwx------ 1 root root     0 Mar 19 01:21 14195.0
    srwx------ 1 root root     0 Apr 12 19:54 14207.0
    srwx------ 1 root root     0 Apr 12 19:56 14207.1
    srwx------ 1 root root     0 Apr 12 19:56 14207.2
    srwx------ 1 root root     0 Apr 12 19:56 14207.3
    srwx------ 1 root root     0 May 22 08:39 14222.0
    srwx------ 1 root root     0 May 31 02:09 14225.0
    srwx------ 1 root root     0 Mar 21 21:24 14367.0
    srwx------ 1 root root     0 Jul 27 17:41 14399.0
    srwx------ 1 root root     0 May 22 08:39 14441.0
    srwx------ 1 root root     0 Mar 21 21:24 14588.0
    srwx------ 1 root root     0 Jul 27 17:41 14639.0
    srwx------ 1 root root     0 May 22 08:39 14672.0
    srwx------ 1 root root     0 Jul 27 17:41 14871.0
    srwx------ 1 root root     0 May 22 08:39 14890.0
    srwx------ 1 root root     0 May 22 08:40 15119.0
    srwx------ 1 root root     0 Mar  4 02:27 15304.0
    srwx------ 1 root root     0 Mar  4 05:42 15304.1
    srwx------ 1 root root     0 May 14 03:55 15411.0
    srwx------ 1 root root     0 May 22 08:40 15427.0
    srwx------ 1 root root     0 Jul 11 21:48 1543.0
    srwx------ 1 root root     0 May 21 09:47 15544.0
    srwx------ 1 root root     0 May 21 09:48 15544.1
    srwx------ 1 root root     0 May 21 09:48 15544.2
    srwx------ 1 root root     0 May 21 09:48 15544.3
     
  16. LAKSHA

    LAKSHA Member

    Code:
    srwx------ 1 root root     0 May 21 09:48 15544.4
    srwx------ 1 root root     0 Jun  5 16:05 15588.1
    srwx------ 1 root root     0 Jun  5 16:05 15588.3
    srwx------ 1 root root     0 Jun  5 16:05 15588.4
    srwx------ 1 root root     0 Mar 24 02:44 15827.0
    srwx------ 1 root root     0 May 17 18:04 15830.0
    srwx------ 1 root root     0 May 22 08:40 15886.0
    srwx------ 1 root root     0 Jul 27 17:41 15997.0
    srwx------ 1 root root     0 Jul  4 11:48 16016.0
    srwx------ 1 root root     0 May 22 08:40 16117.0
    srwx------ 1 root root     0 May 11 21:28 1615.0
    srwx------ 1 root root     0 May 11 21:37 1615.1
    srwx------ 1 root root     0 Jul 27 17:41 16232.0
    srwx------ 1 root root     0 Mar 21 19:50 1627.0
    srwx------ 1 root root     0 Mar 13 05:41 16283.0
    srwx------ 1 root root     0 May 22 08:40 16345.0
    srwx------ 1 root root     0 Jul 27 17:42 16459.0
    srwx------ 1 root root     0 May 24 10:11 16505.0
    srwx------ 1 root root     0 May 24 10:11 16505.1
    srwx------ 1 root root     0 May 22 08:40 16514.0
    srwx------ 1 root root     0 May 22 09:01 16514.1
    srwx------ 1 root root     0 Feb  4 16:29 1662.0
    srwx------ 1 root root     0 Feb  3 14:41 16629.0
    srwx------ 1 root root     0 May 11 21:01 16686.0
    srwx------ 1 root root     0 Jul 27 17:42 16710.0
    srwx------ 1 root root     0 Jan 24  2020 16883.0
    srwx------ 1 root root     0 Jul 27 17:42 16943.0
    srwx------ 1 root root     0 Jul 27 17:42 17175.0
    srwx------ 1 root root     0 Jul 14 10:12 17196.0
    srwx------ 1 root root     0 Mar 31 03:58 17259.0
    srwx------ 1 root root     0 Jun  2 19:15 17352.0
    srwx------ 1 root root     0 Jun  2 19:24 17352.1
    srwx------ 1 root root     0 Jun  2 19:24 17352.2
    srwx------ 1 root root     0 Jun  2 19:24 17352.3
    srwx------ 1 root root     0 Jan 24  2020 17358.0
    srwx------ 1 root root     0 Jan 24  2020 17358.1
    srwx------ 1 root root     0 Jun 14 23:05 17442.0
    srwx------ 1 root root     0 Jun 12 12:41 17632.0
    srwx------ 1 root root     0 Jul 11 21:48 1783.0
    srwx------ 1 root root     0 Jun 30 03:07 17833.0
    srwx------ 1 root root     0 Mar 15 13:37 18006.0
    srwx------ 1 root root     0 Jul 27 17:42 18070.0
    srwx------ 1 root root     0 Jul 27 17:44 18070.1
    srwx------ 1 root root     0 May 20 11:42 18109.0
    srwx------ 1 root root     0 May 20 11:42 18109.1
    srwx------ 1 root root     0 May 20 11:42 18109.2
    srwx------ 1 root root     0 Jul 27 17:26 1818.0
    srwx------ 1 root root     0 May 23 16:25 18213.0
    srwx------ 1 root root     0 May 22 09:42 1830.0
    srwx------ 1 root root     0 Mar 21 21:26 18350.0
    srwx------ 1 root root     0 Apr 14 04:03 18397.0
    srwx------ 1 root root     0 Feb  5 19:54 1845.1
    srwx------ 1 root root     0 Feb  5 19:54 1845.2
    srwx------ 1 root root     0 Feb  5 19:54 1845.3
    srwx------ 1 root root     0 May 20 11:43 18455.0
    srwx------ 1 root root     0 Jul 25 20:33 18493.0
    srwx------ 1 root root     0 Mar 21 21:26 18565.0
    srwx------ 1 root root     0 Jun 27 18:56 18605.0
    srwx------ 1 root root     0 Mar 21 21:26 18779.0
    srwx------ 1 root root     0 Mar 21 21:28 18779.1
    srwx------ 1 root root     0 Jun 27 18:58 18849.0
    srwx------ 1 root root     0 Jul 27 17:46 18856.0
    srwx------ 1 root root     0 Jun  6 07:31 18866.0
    srwx------ 1 root root     0 Apr 21 04:05 1912.0
    srwx------ 1 root root     0 Jun 13 07:00 19148.0
    srwx------ 1 root root     0 Jul 27 17:48 19198.0
    srwx------ 1 root root     0 Mar 20 01:51 1922.0
    srwx------ 1 root root     0 May 20 11:49 19236.0
    srwx------ 1 root root     0 May 25 10:27 19297.0
    srwx------ 1 root root     0 Mar 21 19:51 1933.0
    srwx------ 1 root root     0 Feb  5 20:37 1939.0
    srwx------ 1 root root     0 Jul 27 17:49 19537.0
    srwx------ 1 root root     0 May 22 09:02 19567.0
    srwx------ 1 root root     0 May 22 09:02 19567.1
    srwx------ 1 root root     0 Mar 18 09:32 19651.0
    srwx------ 1 root root     0 Mar 21 16:50 19757.0
    srwx------ 1 root root     0 Mar 21 19:44 19757.1
    srwx------ 1 root root     0 Mar 21 19:44 19757.2
    srwx------ 1 root root     0 Mar 21 19:44 19757.3
    srwx------ 1 root root     0 Jun 16 20:01 19794.0
    srwx------ 1 root root     0 Mar 21 21:29 19895.0
    srwx------ 1 root root     0 Feb  4 16:31 1991.0
    srwx------ 1 root root     0 Mar 18 09:32 19924.0
    srwx------ 1 root root     0 May  3 20:38 20019.0
    srwx------ 1 root root     0 Jul 11 21:48 2013.0
    srwx------ 1 root root     0 Mar 18 21:25 20181.1
    srwx------ 1 root root     0 Mar 18 21:25 20181.2
    srwx------ 1 root root     0 Mar 18 21:25 20181.3
    srwx------ 1 root root     0 May 22 09:06 20288.0
    srwx------ 1 root root     0 May 20 11:56 20289.0
    srwx------ 1 root root     0 Mar 21 21:31 20378.0
    srwx------ 1 root root     0 May  3 20:38 20388.0
    srwx------ 1 root root     0 May 20 11:57 20619.0
    srwx------ 1 root root     0 May 20 12:03 20619.1
    srwx------ 1 root root     0 May 20 12:03 20619.2
    srwx------ 1 root root     0 Jun 17 05:03 20675.0
    srwx------ 1 root root     0 Mar 21 21:33 20701.0
    srwx------ 1 root root     0 May 22 09:08 20730.0
    srwx------ 1 root root     0 May 22 09:08 20730.1
    srwx------ 1 root root     0 Mar 11 12:49 20741.0
    srwx------ 1 root root     0 May 25 10:25 20772.0
    srwx------ 1 root root     0 May 25 10:25 20772.1
    srwx------ 1 root root     0 May 25 10:25 20772.2
    srwx------ 1 root root     0 Jan 24  2020 20988.0
    srwx------ 1 root root     0 Apr 12 22:25 21209.0
    srwx------ 1 root root     0 May  3 20:43 21212.0
    srwx------ 1 root root     0 Feb  1 18:58 21217.0
    srwx------ 1 root root     0 May  3 20:27 21254.0
    srwx------ 1 root root     0 May  3 20:29 21254.1
    srwx------ 1 root root     0 May  3 20:29 21254.2
    srwx------ 1 root root     0 Jul 27 18:00 21271.0
    srwx------ 1 root root     0 Jul 27 18:01 21271.1
    srwx------ 1 root root     0 Jul 27 18:01 21271.2
    srwx------ 1 root root     0 May 20 09:46 21348.0
    srwx------ 1 root root     0 May 20 09:47 21348.1
    srwx------ 1 root root     0 May 20 09:47 21348.2
    srwx------ 1 root root     0 Jul 21 20:56 21436.0
    srwx------ 1 root root     0 Jan 24  2020 21514.0
    srwx------ 1 root root     0 Jul 27 18:02 21592.0
    srwx------ 1 root root     0 Feb 18 02:34 21614.0
    srwx------ 1 root root     0 May  3 20:44 21619.0
    srwx------ 1 root root     0 May 22 15:13 21664.0
    srwx------ 1 root root     0 May 12 04:06 21685.0
    srwx------ 1 root root     0 May 12 07:29 21685.1
    srwx------ 1 root root     0 May 12 07:29 21685.2
    srwx------ 1 root root     0 May 24 14:59 21708.0
    srwx------ 1 root root     0 Mar 21 19:53 2176.0
    srwx------ 1 root root     0 Jul 27 18:03 21885.0
    srwx------ 1 root root     0 May  9 11:30 22104.0
    srwx------ 1 root root     0 May 20 12:06 22255.0
    srwx------ 1 root root     0 May  5 02:21 22419.0
    srwx------ 1 root root     0 Feb  4 16:31 2242.0
    srwx------ 1 root root     0 Feb  4 16:31 2242.1
    srwx------ 1 root root     0 Jul 11 21:48 2244.0
    srwx------ 1 root root     0 May 22 04:05 22443.0
    srwx------ 1 root root     0 May 22 04:05 22443.1
    srwx------ 1 root root     0 May 22 09:43 2258.0
    srwx------ 1 root root     0 Feb 17 13:23 22692.0
    srwx------ 1 root root     0 May 22 08:00 2283.0
    srwx------ 1 root root     0 May 22 08:09 2283.1
    srwx------ 1 root root     0 Jun 27 14:58 22835.0
    srwx------ 1 root root     0 Feb 26 19:21 22907.0
    srwx------ 1 root root     0 Jan 27  2020 22964.0
    srwx------ 1 root root     0 Mar 22 10:40 22969.0
     
  17. till

    till Super Moderator Staff Member ISPConfig Developer

    run:

    chown -R www-data:www-data /var/lib/apache2/fcgid/sock
    chown www-data /var/lib/apache2/fcgid

    and then restart apache.
     
  18. LAKSHA

    LAKSHA Member

    Too Long, I just uploaded a text file .
     

    Attached Files:

  19. LAKSHA

    LAKSHA Member

    [​IMG]

    It got Resolved! :)
     
  20. LAKSHA

    LAKSHA Member

    Is there anything else i should do now ?
    as i know not to use forward slash without focusing on what i am doing ;-)
    but still is there anything else i need to do to make sure things are fine ?
     

Share This Page