标签:my.cnf screen 访问 www. log 网站 down status sudo su
环境 CenterOS
下载lamp:地址 https://lamp.sh/download.html
事先安装 wget, screen ,git,unzip
按照网站上的说明,逐步执行。
注意:
1.lamp安装mysql时时间会比较久,不要打断安装
在安装lamp时,会有一些默认的设置选项,一般选择默认即可。但是在一个 HTTP,HTTPS的选项时,选择N,这个配置选项是询问是否设置HTTP自动转换成HTTPS,因为本地并没有HTTPS的证书,所以本地网址访问为HTTP,如果设置为Y,会自动重定向为HTTPS
程序目录
网站目录:
配置文件:
命令一览:
/etc/init.d/mysqld (start|stop|restart|status)
/etc/init.d/httpd (start|stop|restart|status)
/etc/init.d/memcached (start|stop|restart|status)
/etc/init.d/redis-server (start|stop|restart|status)
安装完成lamp后,来配置项目
项目地址我放在/data/www/shop 这个目录下,
我希望访问devwww.shop.com这个域名,可以访问这个项目。则还需要2步配置
1.配置host
host 地址为/etc/hosts
sudo su
vi /etc/hosts
i
添加以行代码: 127.0.0.1 devwww.shop.com
esc
:wq!
2.配置虚拟域名
cd /usr/local/apache/conf/extra
sudo su
vi httpd-vhosts.conf
添加以下代码
<VirtualHost *:80>
ServerName devwww.shop.com
ServerAlias devwww.shop.com
DocumentRoot /data/www/shop
<Directory /data/www/shop>
SetOutputFilter DEFLATE
Options FollowSymLinks
AllowOverride All
Order Deny,Allow
Require all granted
DirectoryIndex index.php index.html index.htm
</Directory>
</VirtualHost>
然后重启apache即可。
重启apache 代码为
severice httpd restart
个人小结:除了安装的命令不一样,程序目录地址一样,配置apache,php扩展等,配置相关的思路和方法与windows下相同
标签:my.cnf screen 访问 www. log 网站 down status sudo su
原文地址:https://www.cnblogs.com/xlban163/p/9963390.html