Discover Centmin Mod today
Register Now

Change owner permissions from root to nginx

Discussion in 'System Administration' started by pamamolf, Jul 17, 2014.

Tags:
  1. pamamolf

    pamamolf Premium Member Premium Member

    4,071
    427
    83
    May 31, 2014
    Ratings:
    +833
    Local Time:
    9:21 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    Hi

    How can i change the permissions from root to nginx using ssh?

    I know that i can do it on a folder using:


    Code:
    chown -R nginx:nginx public
    But how can i include all folders and subfolders and all files in the public?

    Thanks
     
  2. eva2000

    eva2000 Administrator Staff Member

    53,865
    12,160
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,712
    Local Time:
    5:21 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    the -R command makes it recursive so every directory and file within public gets the chown applied :)
     
  3. pamamolf

    pamamolf Premium Member Premium Member

    4,071
    427
    83
    May 31, 2014
    Ratings:
    +833
    Local Time:
    9:21 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    I am asking as i found on the net this command:

    Code:
    chown -R nginx:nginx *
     
  4. eva2000

    eva2000 Administrator Staff Member

    53,865
    12,160
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,712
    Local Time:
    5:21 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    that command would apply to everything within the current directory and all sub directories and files within current directory

    see http://linuxmanpages.com/man1/chown.1.php