1 摘要

本文描述基于京东云云主机,搭建WordPress网站所需的MySQL数据库和Web应用,并在完成Plugin配置后发布一篇博文的全过程。本文将用到如下京东云资源:

  • 云主机(m.n2.large,内存优化标准型,机器名为jdcoe-srv010):作为MySQL数据库
  • 云主机(c.n2.large,计算优化标准型,机器名为jdcoe-srv011):作为Web服务
  • 2 * 40G SSD云硬盘:作为jdcoe-srv010和jdcoe-srv011云主机系统盘
  • 1 * 40G SSD云硬盘:作为jdcoe-srv010数据盘,用于存储MySQL数据
  • 1 * 弹性公网IP: 提供公网访问,并绑定到云主机jdcoe-srv011上。

2 京东云资源准备

安装WordPress网站所需的云资源可以选择京东云华北-北京、华东-宿迁、华东-上海、华南-广州等区域创建,选择的依据取决与网络延时、每个区域的服务可用情况、云资源架构等因素。
获得网络延时的简单方法是使用ping命令。下面是在位于北京的电脑ping位于京东云华东-上海区域到云主机之间的网络延时情况。

serv001:~ user001$ ping 114.67.93.156 -c 10
PING 114.67.93.156 (114.67.93.156): 56 data bytes
64 bytes from 114.67.93.156: icmp_seq=0 ttl=45 time=74.244 ms
64 bytes from 114.67.93.156: icmp_seq=1 ttl=45 time=112.256 ms
64 bytes from 114.67.93.156: icmp_seq=2 ttl=45 time=58.010 ms
64 bytes from 114.67.93.156: icmp_seq=3 ttl=45 time=183.164 ms
64 bytes from 114.67.93.156: icmp_seq=4 ttl=45 time=152.838 ms
64 bytes from 114.67.93.156: icmp_seq=5 ttl=45 time=87.067 ms
64 bytes from 114.67.93.156: icmp_seq=6 ttl=45 time=136.476 ms
64 bytes from 114.67.93.156: icmp_seq=7 ttl=45 time=181.784 ms
64 bytes from 114.67.93.156: icmp_seq=8 ttl=45 time=138.437 ms
64 bytes from 114.67.93.156: icmp_seq=9 ttl=45 time=93.021 ms
--- 114.67.93.156 ping statistics ---
10 packets transmitted, 10 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 58.010/121.730/183.164/41.564 ms

在上述ping命令输出中,可获得从本机到114.67.93.156的网络延时最小58.010毫秒,最大183.164毫秒,平均值是121.730毫秒。
本文所用到京东云资源均创建在京东云华东-上海区域。

3 安装WordPress网站

本节将介绍安装WordPress网站所需的数据库、Web应用网站,并完成WordPress网站的初始化。

3.1 搭建MySQL数据库

京东云提供了MySQL托管服务,提供自动备份、监控和告警等功能,可以简化MySQL数据库的管理成本。客户也可以基于京东云云主机自己安装MySQL数据库,实现更加灵活的数据管理策略。本文采用在云主机上自己搭建MySQL数据库模式,为了提高数据库性能,选择的云主机规格为内存优化型,挂载SSD云盘。由于该数据库云主机需要获得MySQL安装包,因此需要绑定公网IP。整个MySQL安装过程如下:

  1. 下载MySQL安装包Yum源配置。
wget http://repo.mysql.com/mysql57-community-release-el7.rpm
  1. 配置MySQL yum源。
[root@srv013 ~]# rpm -ivh mysql57-community-release-el7.rpm
  1. 安装MySQL服务器。
[root@srv013 ~]# yum install -y mysql-server
  1. 挂载云硬盘作为数据盘,修改MySQL缺省数据文件目录。其中/mnt/vdb1是云硬盘的mount点。
    MySQL缺省的数据目录位于/var/lib/mysql,为了有更大的数据存储空间,创建MySQL数据目录,并分配权限。
mkdir -p /mnt/vdb1/mysql
chown -R mysql:mysql /mnt/vdb1/mysql

将MySQL数据存储在数盘的特定目录下(假设为/mnt/vdb1/mysql)。修改/etc/my.cnf

datadir=/mnt/vdb1/mysql
  1. 配置并启动MySQL服务。
   [root@srv013 ~]# chkconfig mysqld onNote: Forwarding request to 'systemctl enable mysqld.service'.[root@srv013 ~]# service mysqld restartRedirecting to /bin/systemctl restart mysqld.service
  1. 重置MySQL缺省口令。首先查看MySQL安装时生成的缺省口令,然后登录MySQL设置口令。
   [root@srv013 ~]# grep "password" /var/log/mysqld.log 2018-11-06T03:01:40.331842Z 1 [Note] A temporary password is generated for root@localhost: ftmgLQl;r0qhmysql> set password=password('Passw0rd@123');

在完成MySQL数据库实例安装后,需要初始化WordPress数据库。具体过程如下:

[root@jdcoe-srv010 ~]# mysql -uroot -pPassw0rd@123
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.24 MySQL Community Server (GPL)Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.#创建数据库
mysql> create database wordpress;
Query OK, 1 row affected (0.00 sec)#创建用户
mysql> create user 'wpuser'@'%' identified by 'Passw0rd@123';
Query OK, 0 rows affected (0.00 sec)#给用户授权
mysql> grant all on *.* to 'wpuser'@'%' identified by 'Passw0rd@123';
Query OK, 0 rows affected, 1 warning (0.00 sec)mysql> quit
Bye
#验证新用户访问数据库
[root@jdcoe-srv010 ~]# mysql -uwpuser -p -hlocalhost
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.24 MySQL Community Server (GPL)Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> use wordpress;
Database changed
mysql> show tables;
Empty set (0.00 sec)mysql>

3.2 搭建Nginx服务器

WordPress Web服务器我们选择Nginx,并运行在计算密集型云主机上。同时由于WordPress基于PHP技术栈,因此安装PHP-FPM。由于Nginx服务器需要提供互联网访问,因此该云主机需要绑定公网IP。

3.2.1 安装Nginx

安装Nginx,将自动创建名为nginx的账号和账号组,并创建Nginx服务,该服务以nginx账号身份运行。

[root@srv011 ~]# yum install nginx -y
[root@srv011 ~]# id nginx
uid=996(nginx) gid=994(nginx) groups=994(nginx)
[root@srv011 ~]# chkconfig nginx on
[root@srv011 ~]# service nginx start
Redirecting to /bin/systemctl start nginx.service
[root@srv011 ~]# service nginx status
Redirecting to /bin/systemctl status nginx.service
● nginx.service - The nginx HTTP and reverse proxy serverLoaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)Active: active (running) since Tue 2018-10-30 15:10:22 CST; 1s agoProcess: 1412 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)Process: 1409 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)Process: 1407 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)Main PID: 1414 (nginx)CGroup: /system.slice/nginx.service├─1414 nginx: master process /usr/sbin/nginx├─1415 nginx: worker process└─1416 nginx: worker processOct 30 15:10:22 srv011 systemd[1]: Starting The nginx HTTP and reverse proxy server...
Oct 30 15:10:22 srv011 nginx[1409]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
Oct 30 15:10:22 srv011 nginx[1409]: nginx: configuration file /etc/nginx/nginx.conf test is successful
Oct 30 15:10:22 srv011 systemd[1]: Started The nginx HTTP and reverse proxy server.

通过执行curl命令验证Nginx运行是否正常,并访问缺省的页面。

[root@srv011 ~]# curl http://localhost -I
HTTP/1.1 200 OK
Server: nginx/1.12.2
Date: Tue, 30 Oct 2018 07:15:19 GMT
Content-Type: text/html
Content-Length: 3700
Last-Modified: Tue, 06 Mar 2018 09:26:21 GMT
Connection: keep-alive
ETag: "5a9e5ebd-e74"
Accept-Ranges: bytes
[root@srv011 ~]# curl http://localhost

获得如下HTML页面信息,可发现缺省的配置文件是/etc/nginx/nginx.conf,文档根目录是/usr/share/nginx/html

<div class="content"><p>This is the default <tt>index.html</tt> page thatis distributed with <strong>nginx</strong> onFedora.  It is located in<tt>/usr/share/nginx/html</tt>.</p><p>You should now put your content in a location ofyour choice and edit the <tt>root</tt> configurationdirective in the <strong>nginx</strong>configuration file<tt>/etc/nginx/nginx.conf</tt>.</p>
</div>

3.2.2 配置PHP模块

WordPress是基于PHP的架构,因此需要配置php-fp作为FastCGI后台程序运行。下面是需要安装的模块。

  • php-fpm: PHP FastCGI Process Manager
  • php: A module for PHP applications that use MySQL databases
  • php-cli: Command-line interface for PHP
[root@srv011 html]# yum -y install php-fpm php-mysql php-cli
Loaded plugins: fastestmirror, langpacks
Repository base is listed more than once in the configuration[root@srv011 html]# chkconfig php-fpm on
Note: Forwarding request to 'systemctl enable php-fpm.service'.
Created symlink from /etc/systemd/system/multi-user.target.wants/php-fpm.service to /usr/lib/systemd/system/php-fpm.service.[root@jdcoe-srv011 ~]# service php-fpm start
Redirecting to /bin/systemctl start php-fpm.service
[root@jdcoe-srv011 ~]# service php-fpm status
Redirecting to /bin/systemctl status php-fpm.service
● php-fpm.service - The PHP FastCGI Process ManagerLoaded: loaded (/usr/lib/systemd/system/php-fpm.service; enabled; vendor preset: disabled)Active: active (running) since Tue 2018-11-27 10:45:39 CST; 2s agoMain PID: 3125 (php-fpm)Status: "Ready to handle connections"CGroup: /system.slice/php-fpm.service├─3125 php-fpm: master process (/etc/php-fpm.conf)├─3127 php-fpm: pool www├─3128 php-fpm: pool www├─3129 php-fpm: pool www├─3130 php-fpm: pool www└─3131 php-fpm: pool wwwNov 27 10:45:39 jdcoe-srv011 systemd[1]: Starting The PHP FastCGI Process Manager...
Nov 27 10:45:39 jdcoe-srv011 systemd[1]: Started The PHP FastCGI Process Manager.

编辑PHP-FPM配置文件/etc/php-fpm.d/www.conf, 让PHP FastCGI Process Manager以nginx账户身份去访问文件。原文件内容为:

; RPM: apache Choosed to be able to access some dir as httpd
user = apache
; RPM: Keep a group allowed to write in log dir.
group = apache

修改后到文件内容为:

; RPM: apache Choosed to be able to access some dir as httpd
user = nginx
; RPM: Keep a group allowed to write in log dir.
group = nginx

在/usr/share/nginx/html/目录下创建phpinfo.php,内容如下:

<?php phpinfo();?>

此时,执行如下命令,发现nginx并没有把php文件发送给后台的php-fpm模块,原因是我们还没有完成nginx.conf的配置,把PHP文件请求发送给PHP FPM。

[root@srv011 html]# curl http://localhost/phpinfo.php
<?php phpinfo();?>

修改/etc/nginx/nginx.conf

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000#location ~ \.php$ {root           /usr/share/nginx/html;fastcgi_pass   127.0.0.1:9000;fastcgi_index  index.php;fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;include        fastcgi_params;}

在重新启动nginx服务后,将看到如下信息(特别是X-Powered-By: PHP/5.4.16),表示nginx和php的集成配置成功。

[root@srv011 nginx]# curl http://localhost/phpinfo.php -I
HTTP/1.1 200 OK
Server: nginx/1.12.2
Date: Tue, 30 Oct 2018 07:47:36 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.4.16

3.3 安装WordPress

3.3.1 下载Wordpress安装包

访问https://cn.wordpress.org/download/网站,可获得最新的中文版本。下面下载最新的WordPress中文版,并解压缩到/opt目录下。

[root@srv011 ~]# wget https://cn.wordpress.org/wordpress-4.9.4-zh_CN.tar.gz
--2018-10-31 10:25:34--  https://cn.wordpress.org/wordpress-4.9.4-zh_CN.tar.gz
Resolving cn.wordpress.org (cn.wordpress.org)... 198.143.164.252
Connecting to cn.wordpress.org (cn.wordpress.org)|198.143.164.252|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9082696 (8.7M) [application/octet-stream]
Saving to: ‘wordpress-4.9.4-zh_CN.tar.gz’100%[======================================>] 9,082,696   3.48MB/s   in 2.5s   2018-10-31 10:25:38 (3.48 MB/s) - ‘wordpress-4.9.4-zh_CN.tar.gz’ saved [9082696/9082696][root@srv011 opt]# tar zxvf /root/wordpress-4.9.8.tar.gz
wordpress/
wordpress/xmlrpc.php
wordpress/wp-blog-header.php

然后修改文件拥有者为nginx。

[root@srv011 opt]# chown -R nginx:nginx wordpress

3.3.2 修改Nginx配置文件

为了能通过Nginx访问WordPress,需要修改/etc/nginx/nginx.conf文件配置,具体内容如下。

worker_processes  1;events {worker_connections  1024;
}http {include       mime.types;default_type  application/octet-stream;sendfile        on;keepalive_timeout  65;server {listen       80;server_name  localhost;location / {root   /opt/wordpress;index  index.php index.html index.htm;}# redirect server error pages to the static page /404.htmlerror_page  404              /404.html;location = /404.html {root   /usr/share/nginx/html;}# redirect server error pages to the static page /50x.htmlerror_page   500 502 503 504  /50x.html;location = /50x.html {root   /usr/share/nginx/html;}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000location ~ \.php$ {root           /opt/wordpress;fastcgi_pass   127.0.0.1:9000;fastcgi_index  index.php;fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;include        fastcgi_params;}}
}

3.3.2 修改WordPress配置文件

修改/opt/wordpress/wp-config.php配置文件。

[root@srv011 wordpress]# cp wp-config-sample.php wp-config.php

修改配置文件wp-config.php,设置数据访问信息。

// ** MySQL 设置 - 具体信息来自您正在使用的主机 ** //
/** WordPress数据库的名称 */
define('DB_NAME', 'wordpress');/** MySQL数据库用户名 */
define('DB_USER', 'wpuser');/** MySQL数据库密码 */
define('DB_PASSWORD', 'Passw0rd@123');/** MySQL主机 */
define('DB_HOST', '10.0.3.3');

在完成上述配置后,重新启动nginx和php-fpm服务,在浏览器中访问地址http://{公网IP}/wp-admin/install.php, 将显示如下信息:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-0RIj7pxT-1571413846257)(http://114.67.93.156/wp-content/uploads/2018/11/wordpress-install-1024x967.png)]
在上图中输入必要的信息(包括站点标题、用户名、密码等),点击[安装WordPress],将完成安装。此时,访问MySQL数据库,将看到已经生成如下表。

[root@jdcoe-srv010 ~]# mysql -uwpuser -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 176
Server version: 5.7.24 MySQL Community Server (GPL)Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> use wordpress
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -ADatabase changed
mysql> show tables;
+-----------------------+
| Tables_in_wordpress   |
+-----------------------+
| wp_commentmeta        |
| wp_comments           |
| wp_links              |
| wp_options            |
| wp_postmeta           |
| wp_posts              |
| wp_term_relationships |
| wp_term_taxonomy      |
| wp_termmeta           |
| wp_terms              |
| wp_usermeta           |
| wp_users              |
+-----------------------+
12 rows in set (0.01 sec)

3.3.3 配置Web网站图标

对于网站,通常需要配置网站图标,否则会在Nginx的访问错误日志报如下错误:

2018/11/27 11:24:38 [error] 4703#0: *7 open() "/opt/wordpress/favicon.ico" failed (2: No such file or directory), client: 223.104.3.193, server: _, request: "GET /favicon.ico HTTP/1.1", host: "114.67.93.156"

首先安装php-gd.x86_64程序包,如果不安装改程序包,在WordPress中无法对图片文件进行剪辑等操作。

[root@jdcoe-srv011 ~]# yum install php-gd.x86_64
[root@jdcoe-srv011 ~]#  yum info php-gd.x86_64
Installed Packages
Name        : php-gd
Arch        : x86_64
Version     : 5.4.16
Release     : 45.el7
Size        : 343 k
Repo        : installed
From repo   : base
Summary     : A module for PHP applications for using the gd graphics library
URL         : http://www.php.net/
License     : PHP and BSD
Description : The php-gd package contains a dynamic shared object that will add: support for using the gd graphics library to PHP.

在完整完成gd图形包后,然后通过【外观】->【自定义】功能配置图标。操作界面如下图。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-E3Cx2Cra-1571413846259)(http://114.67.93.156/wp-content/uploads/2018/11/wordpress-favicon-352x1024.jpg)]

3.3.4 配置WordPress主题和Markdown编辑

通过浏览器访问http://{公网IP}/wp-login.php 地址,并用WordPress初始安装过程设置的用户名和口令登录到WordPress,并完成如下配置:

  1. 在【外观】-> 【主题】页面,启动“Twenty Sixteen“主题,并更新到最新版本。
  2. 在【插件】界面,选择添加插件,安装“Table of Contents Plus”和“WP Editor.md”插件。如在线安装失败,可先下载插件,然后通过upload插件进行安装。最终安装的plugin如下图:
    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-d4p5kvCO-1571413846261)(http://114.67.93.156/wp-content/uploads/2018/11/wordpress-plugins-1-1024x446.png)]
  3. 配置“Table of Contents Plus”插件,使得在文章的顶部显示文章目录。配置界面如下图。
    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-1sEVsbfN-1571413846261)(http://114.67.93.156/wp-content/uploads/2018/11/wordpress-content-785x1024.png)]
  4. 配置“WP Editor.md”插件,设置文章中的代码格式。
    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-odfyOLyM-1571413846263)(http://114.67.93.156/wp-content/uploads/2018/11/wordpress-wpeditor-1024x961.png)]

4 新建第一篇文章

在工具栏中选择【文章】->【写文章】,可按Markdown格式编辑文章。其中图片通过WordPress媒体库集中管理。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-CZcjfu8e-1571413846263)(http://114.67.93.156/wp-content/uploads/2018/11/wordpress-post-1024x623.png)]

基于京东云云主机搭建WordPress网站相关推荐

  1. wordpress 通过域名无法访问_VPS主机和宝塔面板搭建WordPress网站教程

    这是一篇Wordpress建站教程,记录了我在VPS主机上,通过使用宝塔面板,搭建Wordpress网站或个人博客的详细步骤,外贸新人或小白在建立网站的时候可以作为参考. WordPress是全球最流 ...

  2. 怎么样用香港主机搭建游戏网站

    香港是全球主要的互联网骨干节点,拥有质量较高的网络基础设施,在网络速度和稳定性方面表现良好.因此,使用香港主机搭建游戏网站可以使用户在游戏中的体验流畅且基本不会延迟情况.本文将向用户解释如何使用香港主 ...

  3. 在本地怎么使用phpstudy搭建WordPress网站

    在本地怎么使用phpstudy搭建WordPress网站(小白学习版) 工具准备 WordPress网站:可以使用一下提取码下载,也可以到官网上下载最新版本 链接:https://pan.baidu. ...

  4. 体验云上快速搭建WordPress网站小记

    1月12日下午到北京阿里总部体验云上快速搭建WordPress网站,一次完美的体验,小记于此. 美好的一天,以一碗超赞的小面开始,饕餮之余,就是跟随张会长义无反顾的穿越京城.抵达望京阿里中心, 已然下 ...

  5. 新手搭建 WordPress 网站终极解决方案 基于 Bitnami 堆栈快速搭建完美个人博客(Blog)

    为了搭建一个自己的博客,对于没有相关知识的我来说,真的时相当不容易,经过很长时间的摸索研究,总算是搭起了这个博客(Blog),那么第一篇文章就是来记录一下,经过反复的折腾后感觉最适合我自己的一个方法, ...

  6. 【云计算】实验1:云主机搭建静态网站

    文章目录 一.实验目的 二.实验环境 三.实验内容 1.创建并连接云主机 2.搭建Http静态服务器环境 安装 Nginx 配置静态服务器访问路径 3.创建第一个静态文件 总结 一.实验目的 云计算体 ...

  7. 使用docker搭建wordpress网站

    概述 使用docker的好处就是尽量减少了环境部署,可靠性强,容易维护,我使用docker搭建wordpress的主要目标有下面几个 首先我重新生成数据库容器可以保证数据库数据不丢失,重新生成word ...

  8. 腾讯云服务器搭建WordPress网站教程(全流程)

    已经有了腾讯云服务器如何搭建网站?腾讯云服务器网以腾讯云服务器,借助宝塔面板搭建Web环境,然后使用WordPress博客程序搭建网站,大致分为三步,首先购买腾讯云服务器,然后在腾讯云服务器上部署宝塔 ...

  9. 基于wowchemy和hugo搭建个人网站

    基于wowchemy和Hugo搭建个人博客 概述 1.环境准备 2.Fork Academic 主题repo到自己的github 3.修改本地仓库,进行配置和写文章 4.部署站点到github 更多详 ...

最新文章

  1. android: 静态XML和动态加载XML混合使用,以及重写Layout控件
  2. beetl模板引擎之自定义html标签,Beetl模板引擎自定义分页标签
  3. 【渝粤教育】电大中专沟通技巧答案作业 题库
  4. 【渝粤题库】国家开放大学2021春1070组织行为学题目
  5. 计算机信息技术知识点思维导图,思维导图信息技术的学习方法
  6. 字体外面怎么加边框_教您使用html代码给文字加边框!
  7. win11怎么看激活状态
  8. linux文件分号意思,linux中的分号和,|和||的用法与区别
  9. 旋转图像 顺时针与逆时针方法
  10. 向日葵设置开机自启动
  11. C++中的yield和reenter和fork
  12. MySQL存储引擎MyISAM和InnoDB的区别
  13. 从零开始学习HTML
  14. android 为摄像头增加闪光灯(s5pv210)
  15. 大学生个人网页模板 简单网页制作作业成品 极简风格个人介绍HTML(个人博客 4页)
  16. easyui select 标签事件
  17. Apache Commons Codec 也就那样吧!!!
  18. FMOD音频引擎简单使用
  19. 论文笔记:Succinct Zero-Knowledge Batch Proofs for Set Accumulators
  20. SecureCrt自动生成log 设置图解

热门文章

  1. Oracle行列互换总结
  2. 记springboot项目POM文件第一行报错 Unknown Error
  3. fabric2.环境部署
  4. Win8上Service程序及外部App调用此Service
  5. Downie 4.2.6 Mac 上视频下载工具
  6. RocketMQ学习笔记(8)----RocketMQ的Producer API简介
  7. 巴西队提前出线,预定大力神杯?数据分析告诉你,到底谁才是冠军
  8. 惯性效应与反转效应——tushare实验
  9. [转] 去大公司还是去小公司?做专业性的工作,还是做销售?
  10. Flask后端实践 连载十四 Flask输出Word报表