Learn about Centmin Mod LEMP Stack today
Become a Member

Change owner permissions from root to nginx

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

Tags:
  1. pamamolf

    pamamolf Well-Known Member

    4,022
    421
    83
    May 31, 2014
    Ratings:
    +816
    Local Time:
    1:56 AM
    Nginx-1.17.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

    50,473
    11,662
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,084
    Local Time:
    8:56 AM
    Nginx 1.25.x
    MariaDB 10.x
    the -R command makes it recursive so every directory and file within public gets the chown applied :)
     
  3. pamamolf

    pamamolf Well-Known Member

    4,022
    421
    83
    May 31, 2014
    Ratings:
    +816
    Local Time:
    1:56 AM
    Nginx-1.17.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

    50,473
    11,662
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,084
    Local Time:
    8:56 AM
    Nginx 1.25.x
    MariaDB 10.x
    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