您的位置 首页 方案

nginx环境建好后建立虚拟站点根本流程

因为把一块空的磁盘挂在 home 上了 … 建议不要挂在 home 目录 …cd /home/wwwroot/ (进到站点目录)mkdir xxx.xxx (创建文件夹,一般以域名命名文件夹)

由于把一块空的磁盘挂在 home 上了 … 主张不要挂在 home 目录 …

cd /home/wwwroot/ (进到站点目录)

mkdir xxx.xxx (创立文件夹,一般以域名命名文件夹)

cd xxx.xxx (进入方才自己创立的文件夹)

1、下载方式:

wget xxx.xxx/xxx.xxx

能够直接的,直接下载到目录下面,然后解压 。。。

2、上传方式:

必须先建个 ftp

puredb 这种方式:

pure-pw useradd xxx.xxxftp -u ftpgroup -d /home/wwwroot/xxx.xxx -m # xxx.xxxftp 是用户名 ftpgroup 是 ftp 用户(非虚拟用户) -d 后跟 xxx.xxxftp 用户目录 -m 直接生成 puredb 不必 mkdb

传好后相同解压。

创立mysql账户

mysql -u root -p # 回车输入暗码

create database xxx.xxx; # 创立数据库 (xxx.xxx 为数据库名)。

create user ‘xxx.xxx’@’localhost’ identified by ‘password’; # 创立数据库用户名 xxx.xxx 为用户名 password 为用户名对应的暗码;

grant all privileges on xxx.xxx.* to ‘xxx.xxx’@’localhost; # 为 xxx.xxx 这个数据库指定 xxx.xxx 这个数据库用户名,并指定一切权限;

OK 退出;

测验 新建账户是否可用

mysql -u xxx.xxx -p # 输入方才的password ;

show databases; # 检查是否有xxx.xxx 这个数据库;

解压到方才新建的那个站点文件根目录后:

导入数据库:

用方才新建的数据库账户登录,并导入;

source /home/wwwroot/xxx.xxx/xxx.xxx.sql;

OK

创立虚拟站点配置文件

cd /usr/local/nginx/conf # 这途径有环境决议

不知道途径能够 whereis nginx

cp default.conf xxx.xxx.conf

vi xxx.xxx.conf

修正 server_name 后的站点名为 www.xxx.xxx; 或许 xxx.xxx 由要求决议 ;

修正 root 后的虚拟站点根目录为 /home/wwwroot/xxx.xxx 完好途径

OK

修正 data/com.inc.php 文件

对应数据库、账户、暗码。

最终一步,解析

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/fangan/324273.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部