看本教程需要需要在阿里云的云市场中购买阿里云linux一键安装web环境(含视频教程)安装包,这个我很早就在使用。

偶然发现这教程还是可以的额,因此在这摘抄一下自己平常使用的,算是总结吧。

目前使用apache比较多,因此以这个为准。

0、一键安装后的路径

网站目录:/alidata/www

服务器软件目录:/alidata/server

Mysql 目录 /alidata/server/mysql

Php 目录 /alidata/server/php

Tomcat 目录 /alidata/server/tomcat7

选择了 nginx 那么会有一个 nginx 目录在 /alidata/server/nginx/

Nginx 配置文件在 /alidata/server/nginx/conf

Nginx 虚拟主机添加 你可以修改 /alidata/server/nginx/conf/vhosts/phpwind.conf   选择了 apache 那么会有一个 httpd 目录在 /alidata/server/httpd

apache 配置文件在 /alidata/server/httpd/conf

apache 虚拟主机添加 你可以修改 /alidata/server/httpd/conf/vhosts/phpwind.conf

1、各服务操作命令

nginx:

/etc/init.d/nginx start/stop/restart/reload)

apache:

/etc/init.d/httpd start/stop/restart/...

mysql:

/etc/init.d/mysqld  start/stop/restart/...

php-fpm:

/etc/init.d/php-fpm  start/stop/restart/...
  Tomcat:

/etc/init.d/tomcat7 start/stop/restart/…
ftp:

/etc/init.d/vsftpd  start/stop/restart/...

高亮的是我常用的。

2、修改用户和组

下面我是在root用户下

#修改文件夹下的文件及文件夹用户为water
chown -R water /
#修改文件夹下的文件以及文件夹的组为water
chgrp -R water /

3、配置默认虚拟机(vhost)

在这个一键web中所处的

/alidata/server/httpd/conf/vhosts/125lacom.conf

红色的是虚拟机配置文件。

下面是conf中目录配置,也就是/alidata/www/125la/就是一个虚拟机啦

<DirectoryMatch "/alidata/www/125la/(attachment|html|data)">
<Files ~ ".php">
Order allow,deny
Deny from all
</Files>
</DirectoryMatch>

<VirtualHost *:80>
        DocumentRoot /alidata/www/125la  #指定的根目录空间
        ServerName www.125la.cn
        ServerAlias 125la.cn
        <Directory "/alidata/www/125la">
            Options Indexes FollowSymLinks
            AllowOverride all
            Order allow,deny
            Allow from all
        </Directory>
        ErrorLog "/alidata/log/httpd/125la-error.log"
        CustomLog "/alidata/log/httpd/125la.log" common
</VirtualHost>

如果修改了配置文件,需要重启Apache(本文以这个为主),使用下面命令即可重启。

/etc/init.d/httpd restart

 

本文是《Linux 一键安装 web 环境使用指南》的简写版

相关文章

暂无评论

none
暂无评论...