zwwcn

Just another WordPress.com site

Category Archives: LINUX

checking file permission on linux

I uploaded a file to the server but the file can’t be accessed from the website. I checked the permission and ownership they all look fine. Until I use ls-Z to check the file context, it shows me the problem: The filed was uploaded to a different folder first, so it retains the original type after I moving it the public folder. ll comand wouldn’t show the type details, we will have to use ls -Z and then use chcon command to change it.

(13)Permission denied

What happens here is that I scped the file to server under my home directory, and then move it directly to the css folder. even I changed
the owner and permission, I keep getting permission error.
use command: ll, showing something like this:

-rwxr-xr-x 1 apache apache 69345 Nov 29 09:50 1place.css
-rwxr-xr-x 1 apache apache  2897 Nov 14 12:14 1place-framework.css


use command : ls -alZ

-rwxr-xr-x  apache apache root:object_r:httpd_sys_content_t alert.css
-rwxr-xr-x  apache apache user_u:object_r:httpd_sys_content_t alternate.css

we could see some files have a different value for sllinux from others. it points to my user account rather than the system one.

then we need to run command to fix it:
sudo restorecon *

another solution is to copy the file to a folder under var, and then move the file from the new folder to under css.

ref:http://blogs.n1zyy.com/n1zyy/2011/12/08/stumped-by-13permission-denied-file-permissions-deny-server-access/

CVS Default port

should be 2401

grep cvs /etc/services

java test

sdfsdf