美文网首页我爱编程
apache server 配置相关

apache server 配置相关

作者: 北铭 | 来源:发表于2018-03-28 17:30 被阅读19次

启动关闭 apache server

apachectl start
apachectl stop
apachectl restart

禁止访问apach目录

find . -name "httpd.conf" -print
1、打开apache配置文件httpd.conf
2、找到
<Directory />
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
只需要修改Options Indexes为Options None即可,注:根据PHP运行环境安装包的不同,Options Indexes也有可能是Options Indexes FollowSymLinks,一并改为Options None即可。

把文件上传到Linux服务器中

scp使用说明:

1、把本机的文件传给目的服务器:
scp sourceFile root@ip:/targetDirectory
备注:把本机sourceFile拷贝到ip这台服务器的targetDirectory目录下,需要提供目标服务器的密码

2、在本机上执行scp,把远端的服务器文件拷贝到本机上:
scp root@ip:/sourceDirectory/sourceFile /targetDirectory
备注:在本机上执行scp,把远端服务器的sourceFile文件拷贝到本机的targetDirectory目录下

3、拷贝目录下的所有文件:
scp -r /sourceDirectory/ root@ip:/
备注:把/sourceDirectory/目录下的所有文件,拷贝到目标服务器根目录下

相关文章

网友评论

    本文标题:apache server 配置相关

    本文链接:https://www.haomeiwen.com/subject/cvducftx.html