فهرست منبع

重新梳理手动安装文档

James Iter 8 سال پیش
والد
کامیت
2c83245b53
2فایلهای تغییر یافته به همراه121 افزوده شده و 101 حذف شده
  1. 7 0
      INSTALL.sh
  2. 114 101
      docs/install.md

+ 7 - 0
INSTALL.sh

@@ -111,6 +111,12 @@ function prepare() {
     pip install virtualenv -i ${PYPI}
 }
 
+function set_ntp() {
+    timedatectl set-timezone Asia/Shanghai
+    timedatectl set-ntp true
+    timedatectl status
+}
+
 function clear_up_environment() {
     systemctl stop firewalld
     systemctl disable firewalld
@@ -263,6 +269,7 @@ function deploy() {
     check_precondition
     clear_up_environment
     prepare
+    set_ntp
     create_web_user
     create_web_sites_directory
     clone_and_checkout_JimVC

+ 114 - 101
docs/install.md

@@ -3,28 +3,78 @@
 [TOC]: # "手动安装"
 
 # 手动安装
+- [声明全局变量](#声明全局变量)
 - [安装必要软件](#安装必要软件)
+- [开启 NTP 同步](#开启-ntp-同步)
+- [清理环境](#清理环境)
 - [部署 MariaDB](#部署-mariadb)
 - [部署 Redis](#部署-redis)
 - [创建 Web 用户](#创建-web-用户)
 - [创建站点发布目录](#创建站点发布目录)
-- [克隆JimV-C项目](#克隆jimv-c项目)
+- [克隆 JimV-C 项目](#克隆-jimv-c-项目)
 - [安装所需库](#安装所需库)
+- [适配 www 用户权限](#适配-www-用户权限)
 - [初始化JimV MySQL数据库](#初始化jimv-mysql数据库)
 - [修改配置文件](#修改配置文件)
 - [启动服务](#启动服务)
 - [部署 Nginx](#部署-nginx)
 
 
+## 声明全局变量
+
+``` bash
+export PYPI='https://mirrors.aliyun.com/pypi/simple/'
+export JIMVC_REPOSITORY_URL='https://raw.githubusercontent.com/jamesiter/JimV-C'
+export EDITION='master'
+export NGINX_JIMV_URL=${JIMVC_REPOSITORY_URL}'/'${EDITION}'/misc/nginx_jimv.conf'
+export GENERATE_PASSWORD_SCRIPT_TMP_PATH='/tmp/gen_pswd.sh'
+export SMTP_HOST=''
+export SMTP_USER=''
+export SMTP_PASSWORD=''
+
+curl ${JIMVC_REPOSITORY_URL}'/'${EDITION}'/misc/gen_pswd.sh' -o ${GENERATE_PASSWORD_SCRIPT_TMP_PATH}
+chmod +x ${GENERATE_PASSWORD_SCRIPT_TMP_PATH}
+
+export RDB_ROOT_PSWD=`${GENERATE_PASSWORD_SCRIPT_TMP_PATH}`
+export RDB_JIMV_PSWD=`${GENERATE_PASSWORD_SCRIPT_TMP_PATH}`
+export REDIS_PSWD=`${GENERATE_PASSWORD_SCRIPT_TMP_PATH} 128`
+export JWT_SECRET=`${GENERATE_PASSWORD_SCRIPT_TMP_PATH} 128`
+export SECRET_KEY=`${GENERATE_PASSWORD_SCRIPT_TMP_PATH} 128`
+
+rm -f ${GENERATE_PASSWORD_SCRIPT_TMP_PATH}
+```
+
 ## 安装必要软件
 
 ``` bash
-yum install screen python2-pip -y
-pip install --upgrade pip -i https://mirrors.aliyun.com/pypi/simple/
-pip install virtualenv -i https://mirrors.aliyun.com/pypi/simple/
+yum install epel-release python2-pip git -y
+pip install --upgrade pip -i ${PYPI}
+pip install virtualenv -i ${PYPI}
+```
+
+## 开启 NTP 同步
+
+``` bash
+timedatectl set-timezone Asia/Shanghai
+timedatectl set-ntp true
+timedatectl status
+```
+
+## 清理环境
+
+``` bash
+systemctl stop firewalld
+systemctl disable firewalld
+systemctl stop NetworkManager
+systemctl disable NetworkManager
+
+sed -i 's@SELINUX=enforcing@SELINUX=disabled@g' /etc/sysconfig/selinux
+sed -i 's@SELINUX=enforcing@SELINUX=disabled@g' /etc/selinux/config
+setenforce 0
 ```
 
 ## 部署 MariaDB
+
 ``` bash
 # 安装 MariaDB
 yum install mariadb mariadb-server -y
@@ -49,8 +99,8 @@ systemctl start mariadb.service
 mysql_secure_installation << EOF
 
 Y
-your_root_db_password
-your_root_db_password
+${RDB_ROOT_PSWD}
+${RDB_ROOT_PSWD}
 Y
 Y
 Y
@@ -58,10 +108,11 @@ Y
 EOF
 
 # 测试是否部署成功
-mysql -u root -pyour_root_db_password -e 'show databases'
+mysql -u root -p${RDB_ROOT_PSWD} -e 'show databases'
 ```
 
 ## 部署 Redis
+
 ``` bash
 # 安装 Redis
 yum install redis -y
@@ -72,7 +123,7 @@ sysctl -p
 sed -i '@^daemonize no@daemonize yes@g' /etc/redis.conf
 sed -i 's@^bind 127.0.0.1@bind 0.0.0.0@g' /etc/redis.conf
 sed -i 's@^appendonly no@appendonly yes@g' /etc/redis.conf
-echo 'requirepass your_jimv_redis_passwordddddddddddddddddddddddddddddddddddddddddddddddddddddddd' >> /etc/redis.conf
+echo "requirepass ${REDIS_PSWD}" >> /etc/redis.conf
 
 # 启动并使其随机启动
 systemctl enable redis.service
@@ -83,91 +134,101 @@ systemctl start redis.service
 
 ```bash
 useradd -m www
-echo "www:www.pswd.com" | chpasswd
-echo "www ALL = (root) ALL" >> /etc/sudoers.d/www; chmod 0440 /etc/sudoers.d/www
 ```
 
 ## 创建站点发布目录
 
 ```bash
-su - www
-mkdir ~/sites
+su - www -c "mkdir ~/sites"
 ```
 
-## 克隆JimV-C项目
+## 克隆 JimV-C 项目
 
 ```bash
-git clone https://github.com/jamesiter/JimV-C.git ~/sites/JimV-C
+su - www -c "git clone https://github.com/jamesiter/JimV-C.git ~/sites/JimV-C"
 ```
 
 ## 安装所需库
 
 ```bash
 # 创建 python 虚拟环境
-virtualenv --system-site-packages venv
+su - www -c "virtualenv --system-site-packages ~/venv"
 
 # 导入 python 虚拟环境
-source ~/venv/bin/activate
+su - www -c "source ~/venv/bin/activate"
 
 # 使切入 www 用户时自动导入 python 虚拟环境
-echo '. ~/venv/bin/activate' >> .bashrc
+su - www -c "echo '. ~/venv/bin/activate' >> .bashrc"
 
 # 安装JimV-C所需扩展库
-pip install -r ~/sites/JimV-C/requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
+su - www -c "pip install -r ~/sites/JimV-C/requirements.txt -i ${PYPI}"
+```
+
+## 适配 www 用户权限
+
+``` bash
+mkdir -p /var/log/jimv
+chown www.www /var/log/jimv
+
+mkdir -p /run/jimv
+chown www.www /run/jimv
 ```
 
 ## 初始化JimV MySQL数据库
 
 ```bash
 # 建立 JimV 数据库专属用户
-mysql -u root -pyour_root_db_password -e 'grant all on jimv.* to jimv@localhost identified by "your_jimv_db_password"; flush privileges'
+mysql -u root -p${RDB_ROOT_PSWD} -e "grant all on jimv.* to jimv@localhost identified by \"${RDB_JIMV_PSWD}\"; flush privileges"
 # 初始化数据库
-mysql -u jimv -pyour_jimv_db_password < ~/sites/JimV-C/misc/init.sql
+su - www -c "mysql -u jimv -p${RDB_JIMV_PSWD} < ~/sites/JimV-C/misc/init.sql"
 # 确认是否初始化成功
-mysql -u jimv -pyour_jimv_db_password -e 'show databases'
+mysql -u jimv -p${RDB_JIMV_PSWD} -e 'show databases'
 ```
 
 ## 修改配置文件
 
 配置文件的默认读取路径:`/etc/jimvc.conf`
 ``` bash
-sudo cp ~/sites/JimV-C/jimvc.conf /etc/jimvc.conf
+cp -v /home/www/sites/JimV-C/jimvc.conf /etc/jimvc.conf
+sed -i "s/\"db_password\".*$/\"db_password\": \"${RDB_JIMV_PSWD}\",/" /etc/jimvc.conf
+sed -i "s/\"redis_password\".*$/\"redis_password\": \"${REDIS_PSWD}\",/" /etc/jimvc.conf
+sed -i "s/\"jwt_secret\".*$/\"jwt_secret\": \"${JWT_SECRET}\",/" /etc/jimvc.conf
+sed -i "s/\"SECRET_KEY\".*$/\"SECRET_KEY\": \"${SECRET_KEY}\",/" /etc/jimvc.conf
+sed -i "s/\"smtp_host\".*$/\"smtp_host\": \"${SMTP_HOST}\",/" /etc/jimvc.conf
+sed -i "s/\"smtp_user\".*$/\"smtp_user\": \"${SMTP_USER}\",/" /etc/jimvc.conf
+sed -i "s/\"smtp_password\".*$/\"smtp_password\": \"${SMTP_PASSWORD}\",/" /etc/jimvc.conf
 ```
 **提示:**
 > 下表中凸显的配置项,需要用户根据自己的环境手动修改。
 
-| 配置项             | 默认值                   | 说明              |
-|:------------------|:------------------------|:-----------------|
-| listen            | 127.0.0.1               | JimV-C 侦听的地址 |
-| port              | 8008                    | JimV-C 侦听的端口 |
-| db_name           | jimv                    | 数据库名称        |
-| db_host           | localhost               | 数据库地址        |
-| db_port           | 3306                    | 数据库端口        |
-| db_user           | jimv                    | 连接数控的用户名   |
-| **`db_password`** | your_jimv_db_password   | 连接数控的密码     |
-| redis_host        | localhost               | redis数据库地址   |
-| redis_port        | 6379                    | redis数据库端口   |
-| **`redis_password`**                       || redis数据库密码   |
-| redis_dbid        | 0                       | 连接的redis数据库  |
-| log_file_path     | /var/log/jimv/jimvc.log | 日志存储路径       |
-| **`jwt_secret`**                           || token安全码       |
-| **`SECRET_KEY`**  |                         | session安全码     |
-| **`smtp_host`**                            || SMTP 服务器地址   |
-| smtp_port         | 25                      | SMTP 服务器端口   |
-| **`smtp_user`**                            || SMTP 用户         |
-| **`smtp_password`**                        || SMTP 密码         |
-| smtp_starttls     | true                    | SMTP 是否开启 TLS |
+| 配置项            | 默认值                   | 说明              |
+|:-----------------|:------------------------|:-----------------|
+| listen           | 127.0.0.1               | JimV-C 侦听的地址 |
+| port             | 8008                    | JimV-C 侦听的端口 |
+| db_name          | jimv                    | 数据库名称        |
+| db_host          | localhost               | 数据库地址        |
+| db_port          | 3306                    | 数据库端口        |
+| db_user          | jimv                    | 连接数控的用户名   |
+| **`db_password`**                         || 连接数控的密码     |
+| redis_host       | localhost               | redis数据库地址   |
+| redis_port       | 6379                    | redis数据库端口   |
+| **`redis_password`**                      || redis数据库密码   |
+| redis_dbid       | 0                       | 连接的redis数据库  |
+| log_file_path    | /var/log/jimv/jimvc.log | 日志存储路径       |
+| **`jwt_secret`**                          || token安全码       |
+| **`SECRET_KEY`** |                         | session安全码     |
+| **`smtp_host`**                           || SMTP 服务器地址   |
+| smtp_port        | 25                      | SMTP 服务器端口   |
+| **`smtp_user`**                           || SMTP 用户         |
+| **`smtp_password`**                       || SMTP 密码         |
+| smtp_starttls    | true                    | SMTP 是否开启 TLS |
 
 
 ## 启动服务
 
 ```bash
-sudo mkdir -p /var/log/jimv
-sudo chown www.www /var/log/jimv
-# 进入JimV-C目录
-cd ~/sites/JimV-C
 # 启动JimV-C
-gunicorn -c gunicorn_config.py main:app
+/home/www/sites/JimV-C/startup.sh
 ```
 
 ## 部署 Nginx
@@ -177,62 +238,14 @@ gunicorn -c gunicorn_config.py main:app
 yum install nginx -y
 
 # 配置 Nginx
-sed -i 's@^user nginx;@user www;@g' /etc/nginx/nginx.conf
-chown -R www.www /var/log/nginx
+mkdir -p /etc/jimv/keys
+chown -R www.www /var/lib/nginx
+sed -i 's@user nginx.*$@user www;@' /etc/nginx/nginx.conf
+sed -i '/^.*server {/,$d' /etc/nginx/nginx.conf
+curl ${NGINX_JIMV_URL} >> /etc/nginx/nginx.conf
 
 # 启动并使其随机启动
 systemctl enable nginx.service
 systemctl start nginx.service
 ```
 
-```nginx
-    gzip on;
-    gzip_min_length 1100;
-    gzip_buffers 4 8k;
-    gzip_types text/plain application/javascript text/css;
-
-    autoindex off;
-    add_header X-Frame-Options SAMEORIGIN;
-    add_header X-Content-Type-Options: nosniff;
-
-    server {
-        listen 443;
-        server_name jimv.your-domain;
-
-        access_log  /var/log/nginx/jimv.access.log;
-        error_log  /var/log/nginx/jimv.error.log;
-
-        ssl on;
-        ssl_certificate /opt/pki/tls/certs/jimv.your.crt;
-        ssl_certificate_key /opt/pki/tls/certs/jimv.your.key;
-        ssl_session_timeout 5m;
-        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
-        ssl_ciphers AESGCM:ALL:!DH:!EXPORT:!RC4:+HIGH:!MEDIUM:!LOW:!aNULL:!eNULL;
-        ssl_prefer_server_ciphers on;
-
-        root /home/www/sites/JimV-C;
-
-        # 拒绝访问隐藏文件(如:.git、.svn等目录)
-        location ~ /\..* {
-            return 403;
-        }
-        location ~ .(sql|py|pyc|ini|conf|log|svn|git|cfg)$ {
-            return 403;
-        }
-        location ~ /$ {
-            rewrite http://$host/index.html break;
-        }
-        location / {
-            try_files $uri @inner;
-        }
-
-        location @inner {
-            proxy_pass         http://127.0.0.1:8008;
-            proxy_redirect     off;
-            proxy_set_header   Host             $host;
-            proxy_set_header   X-Real-IP        $remote_addr;
-            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
-        }
-    }
-```
-