linuxapache权限
㈠ linux Apache中的awstats日志分析软件,访问时出现没有权限,求大神帮忙
selinux的问题,简单的做法是setenforce 0;
麻烦的方案是,你去设置文件夹的selinux权限;
selinux的权限用ls -alZ 查看。
㈡ 我想把linux系统下的 /etc/apache2/apache2.conf 这个文件的权限修改为可读可写可执行 ,具体如何操作
修改权限 用 chmod 命令你找找他的用法
㈢ linux 下apache的权限该怎样设置
楼上已经说的很全了,该用户能不能登录主要要看/etc/passwd文件中该用户对应的shell是什么,如果是nologin说明不能登录。正常能登录的shell有sh,bash,csh,ksh等。
㈣ linux 主机 我已经设置 所有文件夹为777权限,为什么 apache不能访问呢,而drwxr-xr-x确可以访问
你可以用find指令来完成:
# 例如现在在test文件夹下面有这些文档和子目录
find ./test -exec ls -l {} \;
# output如下:
drwxr-sr-x 2 wenlee comm 256 Dec 22 10:43 d1
drwxr-sr-x 2 wenlee comm 256 Dec 22 10:43 d2
drwxr-sr-x 2 wenlee comm 256 Dec 22 10:43 d3
drwxr-sr-x 2 wenlee comm 256 Dec 22 10:43 d4
drwxr-sr-x 2 wenlee comm 256 Dec 22 10:43 d5
total 0
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 ./test/d1/1.txt
total 0
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 ./test/d2/1.txt
total 0
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 ./test/d3/1.txt
total 0
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 ./test/d4/1.txt
total 0
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--r-- 1 wenlee comm 0 Dec 22 10:35 ./test/d5/1.txt
# 现在你可以用下面的指令把其他的权限更改为 - rw- 如(-rw-r--rw-):
find ./test -exec chmod o+w {} \;
# 验证结果:
$ find ./test -exec ls -l {} \;
total 0
drwxr-srwx 2 wenlee comm 256 Dec 22 10:43 d1
drwxr-srwx 2 wenlee comm 256 Dec 22 10:43 d2
drwxr-srwx 2 wenlee comm 256 Dec 22 10:43 d3
drwxr-srwx 2 wenlee comm 256 Dec 22 10:43 d4
drwxr-srwx 2 wenlee comm 256 Dec 22 10:43 d5
total 0
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 ./test/d1/1.txt
total 0
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 ./test/d2/1.txt
total 0
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 ./test/d3/1.txt
total 0
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 ./test/d4/1.txt
total 0
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 1.txt
-rw-r--rw- 1 wenlee comm 0 Dec 22 10:35 ./test/d5/1.txt
了解了吗?
Good Luck! thx
㈤ 如何在Linux下修改文件file的用户权限,从root修改成Apache
如果想要修改权限使用
chmod
rxw
file_name
r代表只读
w代表只写
x代表只有指向权限
修改用户
chown
Apache
file_name。
㈥ linux apache进程 什么权限
一般都是新建一个普通账户,比如www,然后在httpd.conf里设置www为守护进程
㈦ linux下如何让ftp账户获得apache文件的读写权限又不会影响apache的读写
vsftpd设置虚拟账户权限,把local_root的路径设置为apache的文件夹路径,再设置读写权限。
㈧ linux root用户安装apache运行README文件时提示权限不够
这个是正常的,如果你的权限设置不对的话,root也不能安装。
一方面要看看文件/文件夹的权限,另一方面要看看是否启用了SELinux.