NGINX 2013 年 5 月 16 日 21:55 分区 WEB 服务器与应用配置 LNMP 的第 2 页

Size: px
Start display at page:

Download "NGINX 2013 年 5 月 16 日 21:55 分区 WEB 服务器与应用配置 LNMP 的第 2 页"

Transcription

1 Apache&nginx 的优缺点 2013 年 6 月 2 日 21:04 Nginx 网站服务 Nginx ( engine x ) 是一个高性能的 HTTP 和反向代理服务器, 也是一个 IMAP/POP3/SMTP 代理服 Apache 服务器和 nginx 的优缺点 : 我们之前大量使用 Apache 来作为 HTTPServer Apache 具有很优秀的性能, 而且通过模块可以提供各种丰富的功能 1) 首先 Apache 对客户端的响应是支持并发的, 运行 httpd 这个 daemon 进程之后, 它会同时产生多个子进程 / 线程, 每个子进程 / 线程分别对客户端的请求进行响应 ; Apache 两种工作模式 : 是 prefork 模式与 worker 模式 prefork 每个子进程只有一个线程, 效率高但消耗内存大, 是 lunix 下默认的模式 ;worker 模式每个子进程有多个线程, 内存消耗低, 但一个线程崩溃会牵连其它同子进程的线程 2) 另外,Apache 可以提供静态和动态的服务, 例如对于 PHP 的解析不是通过性能较差的 CGI 实现的而是通过支持 PHP 的模块来实现的 ( 通常为 mod_php5, 或者叫做 apxs2) 3) 缺点 : 因此通常称为 Apache 的这种 Server 为 process-based server, 也就是基于多进程的 HTTPServer, 因为它需要对每个用户请求创建一个子进程 / 线程进行响应 ; 这样的缺点是, 如果并发的请求非常多 ( 这在大型门户网站是很常见的 ) 就会需要非常多的线程, 从而占用极多的系统资源 CPU 和内存 因此对于并发处理不是 Apache 的强项 4) 解决方法 : 目前来说出现了另一种 WebServer, 在并发方面表现更加优越, 叫做 asynchronous servers 异步服务器 最有名的为 Nginx 和 Lighttpd 所谓的异步服务器是事件驱动程序模式的 event-driven, 除了用户的并发请求通常只需要一个单一的或者几个线程 因此占用系统资源就非常少 这几种又被称为 lightweight web server 举例, 对于 10,000 的并发连接请求,nginx 可能仅仅使用几 M 的内存 ; 而 Apache 可能需要使用几百 M 的内存资源 使用 Apache 来作为 HTTPServer 的情况我这里不再多做介绍 ; 上面我们介绍到 Apache 对于 PHP 等服务器端脚本的支持是通过自己的模块来实现的, 而且性能优越 我们同样可以使用 nginx 或者 lighttpd 来作为 HTTPServer 来使用 nginx 和 Apache 类似都通过各种模块可以对服务器的功能进行丰富的扩展, 同样都是通过 conf 配置文件对各种选项进行配置 对于 PHP 等,nginx 没有内置的模块来对 PHP 进行支持, 而是通过 FastCGI 来支持的 nginx 则没有自己提供处理 PHP 的功能, 需要通过第三方的模块来提供对 PHP 进行 FastCGI 方式的集成 Nginx( 发音 engine x) 专为性能优化而开发, 其最知名的优点是它的稳定性和低系统资源消耗, 以及对 HTTP 并发连接的高处理能力 ( 单台物理服务器可支持 30000~50000 个并发请求 ) 正因为如此, 大量提供社交网站 新闻资讯 电子商务以及虚拟主机等服务的企业纷纷选择 Ngnix 来提供 WEB 服务 分区 WEB 服务器与应用配置 LNMP 的第 1 页

2 NGINX 2013 年 5 月 16 日 21:55 分区 WEB 服务器与应用配置 LNMP 的第 2 页

3 分区 WEB 服务器与应用配置 LNMP 的第 3 页

4 分区 WEB 服务器与应用配置 LNMP 的第 4 页

5 配置项说明 2013 年 5 月 17 日 1:56 The build is configured using the configure command. It defines various aspects of the system, including the methods nginx is allowed to use for connection processing. At the end it creates a Makefile. The configure command supports the following parameters: --prefix=path defines a directory that will keep server files. This same directory will also be used for all relative paths set by configure (except for paths to libraries sources) and in the nginx.conf configuration file. It is set to the /usr/local/nginx directory by default. --sbin-path=path sets the name of an nginx executable file. This name is used only during installation. By default the file is named prefix/sbin/nginx. --conf-path=path sets the name of an nginx.conf configuration file. If needs be, nginx can always be started with a different configuration file, by specifying it in the command-line parameter -c file. By default the file is named prefix/conf/nginx.conf. --pid-path=path sets the name of an nginx.pid file that will store the process ID of the main process. After installation, the file name can always be changed in the nginx.conf configuration file using the pid directive. By default the file is named prefix/logs/nginx.pid. --error-log-path=path sets the name of the primary error, warnings, and diagnostic file. After installation, the file name can always be changed in the nginx.conf configuration file using the error_log directive. By default the file is named prefix/logs/error.log. --http-log-path=path sets the name of the primary request log file of the HTTP server. After installation, the file name can always be changed in the nginx.conf configuration file using the access_log directive. By default the file is named prefix/logs/access.log. --user=name sets the name of an unprivileged user whose credentials will be used by worker processes. After installation, the name can always be changed in the nginx.conf configuration file using the user directive. The default user name is nobody. --group=name sets the name of a group whose credentials will be used by worker processes. After installation, the name can always be changed in the nginx.conf configuration file using the user directive. By default, a group name is set to the name of an unprivileged user. --with-select_module --without-select_module enables or disables building a module that allows the server to work with the select() method. This module is built automatically if the platform does not appear to support more appropriate methods such as kqueue, epoll, rtsig, or /dev/poll. --with-poll_module --without-poll_module enables or disables building a module that allows the server to work with the poll() method. This module is built automatically if the platform does not appear to support more appropriate methods such as kqueue, epoll, rtsig, or /dev/poll. --without-http_gzip_module disables building a module that compresses responses of an HTTP server. The zlib library is required to build and run this module. --without-http_rewrite_module disables building a module that allows an HTTP server to redirect requests and change URI of requests. The PCRE library is required to build and run this module. --without-http_proxy_module disables building an HTTP server proxying module. --with-http_ssl_module enables building a module that adds the HTTPS protocol support to an HTTP 分区 WEB 服务器与应用配置 LNMP 的第 5 页

6 server. This module is not built by default. The OpenSSL library is required to build and run this module. --with-pcre=path sets the path to the sources of the PCRE library. The library distribution (version ) needs to be downloaded from the PCRE site and extracted. The rest is done by nginx s./configure and make. The library is required for regular expressions support in the location directive and for the ngx_http_rewrite_module module. --with-pcre-jit builds the PCRE library with just-in-time compilation support (1.1.12, the pcre_jit directive). --with-zlib=path sets the path to the sources of the zlib library. The library distribution (version ) needs to be downloaded from the zlib site and extracted. The rest is done by nginx s./configure and make. The library is required for the ngx_http_gzip_module module. --with-cc-opt=parameters sets additional parameters that will be added to the CFLAGS variable. When using the system PCRE library under FreeBSD, --with-cc-opt="-i /usr/local/include" should be specified. If the number of files supported by select() needs to be increased it can also be specified here such as this: --withcc-opt="-d FD_SETSIZE=2048". --with-ld-opt=parameters sets additional parameters that will be used during linking. When using the system PCRE library under FreeBSD, --with-ld-opt="-l /usr/local/lib" should be specified. Example of parameters usage (all of this needs to be typed in one line):./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-http_ssl_module --with-pcre=../pcre with-zlib=../zlib 分区 WEB 服务器与应用配置 LNMP 的第 6 页

7 配置文件 2013 年 6 月 2 日 21:01 在 Nginx 服务器的主配置文件 nginx.conf 中, 包括全局配置 I/O 事件配置 HTTP 配置这三大块内容, 配置语句的格式为 关键字值 ; ( 末尾以分号表示结束 ), 以 # 开始的部分表示注释 1) 全局配置由各种配置语句组成, 不使用特定的界定标记 全局配置部分包括运行用户 工作进程数 错误日志 PID 存放位置等基本设置 常用配置项 : user nobody; // 运行用户,Nginx 的运行用户实际是编译时指定的 nginx, 若编译时未指定则默认为 nobody worker_processes 2; // 指定 nginx 启动的工作进程数量, 建议按照 cpu 数目来指定, 一般为它的倍数 worker_cpu_affinity ; // 为每个进程分配 cpu, 上例中将 2 个进程分配到两个 cpu, 当然可以写多个, 或者将一个进程分配到多个 cpu worker_rlimit_nofile ; // 这个指令是指当一个 nginx 进程打开的最多文件数目, 理论值应该是最多打开文件数 (ulimit -n) 与 nginx 进程数相除, 但是 nginx 分配请求并不是那么均匀, 所以最好与 ulimit -n 的值保持一致 ( 通过 ulimit n 数值 可以修改打开的最多文件数目 ) error_log logs/error.log; // 全局错误日志文件的位置 pid logs/nginx.pid; //PID 文件的位置 2)I/O 事件配置 : 使用 events { 界定标记, 用来指定 Nginx 进程的 I/O 响应模型, 每个进程的连接数等设置 events { use epool; // 使用 epool 模型, 对于 2.6 以上的内核, 建议使用 epool 模型以提高性能 worker_connections 4096; // 每个进程允许的最多连接数 ( 默认为 1024), 每个进程的连接数应根据实际需要来定, 一般在 以下, 理论上每台 nginx 服务器的最大连接数为 worker_processes*worker_connections, 具体还要看服务器的硬件 带宽等 3)HTTP 配置使用 http{ 界定标记, 包括访问日志 HTTP 端口 网页目录 默认字符集 连接保持 以及虚拟主机 PHP 解析等一系列设置 其中大部分配置语句包含在子界定标记 servier { 内 http { # 设定 mime 类型, 即 conf/ 目录下的 mime.types 文件中的设定 include mime.types; default_type application/octet-stream; # 设定日志格式 log_format main '"$request" $status $bytes_sent ' '"$http_referer" "$http_user_agent" ' '"$gzip_ratio"'; '$remote_addr - $remote_user [$time_local]' log_format download '$remote_addr - $remote_user [$time_local] ' '"$request" $status $bytes_sent ' '"$http_referer" "$http_user_agent" ' '"$http_range" "$sent_http_content_range"'; # 设定 access log 分区 WEB 服务器与应用配置 LNMP 的第 7 页

8 access_log logs/access.log main; sendfile on; // 支持文件发送 ( 下载 ) keepalive_timeout 65; // 连接保持超时 # 设定虚拟主机 server { // 用来配置虚拟主机 listen 80; //WEB 服务的监听设置, 可以采用 IP 地址 : 端口 形式 server_name 网站名, 称可以写多个名称, 用空格分隔 location / { // 表示如何匹配后面的路径的 index index.html; // 默认首页 root html; // 网页根目录位置, 默认为 Nginx 安装目录下的 html/ 子目录,root 语句用来设置特定访问位置的网页文档路径, 根据需要可改为 /var/www/html 等其他路径 charset gb2312; // 网页的默认字符集 # 设定本虚拟主机的访问日志 access_log logs/ main; error_page /50x.html; // 内部错误的反馈页面 location = /50x.html { root html; Nginx 的 location 基本语法 : location [= ~ ~* ^~] /uri/ { = 表示做精确匹配 ~ : 为区分大小写匹配 ~*: 为不区分大小写匹配!~ : 和!~* 分别为区分大小写不匹配及不区分大小写不匹配正则表达式匹配, 其中 : 文件及目录匹配, 其中 : -f 和!-f 用来判断是否存在文件 -d 和!-d 用来判断是否存在目录 -e 和!-e 用来判断是否存在文件或目录 -x 和!-x 用来判断文件是否可执行示例 1: location = / { # 只匹配 / 查询 location / { # 匹配任何查询, 因为所有请求都已 / 开头 但是正则表达式规则和长的块规则将被优先和查询匹配 示例 2: location ^~ /images/ { # 匹配任何以 /images/ 开头的任何查询并且停止搜索 任何正则表达式将不会被测试 示例 3: location ~* \.(gif jpg jpeg)$ { # 匹配任何以 gif jpg 或 jpeg 结尾的请求 分区 WEB 服务器与应用配置 LNMP 的第 8 页

9 状态统计 & 虚拟主机 2013 年 6 月 2 日 21:01 Nginx 内置了 HTTP_STUB_STATUS 状态统计模块, 用来反馈当前的 WEB 访问情况 配置编译参数时可添加 with-http_stub_stastus_module 来启用此模块 要使用 Nginx 的状态统计功能, 除了启用内建模块以外, 还需要修改 nginx.conf 文件, 指定访问位置并打开 stub_status 配置 在 http{ 配置的 server{ 子配置内添加如下配置项 注 :location /tongji // 匹配任何包含 /tongji 的任何查询 stub_status on // 打开状态统计功能 Access_log off // 关闭此位置的日志记录 Nginx 支持为目录添加密码认证, 使用 apache 的 htpasswd 来创建密码文件 htpasswd -c /usr/local/nginx/.htpasswd 用户名保存修改过的 nginx.conf 文件并重启 nginx 服务使修生效 新的配置生效后, 在浏览器中访问 Nginx 服务器的 /tongji 网站位置 ( 服务器 IP/tongji) 可以看到状态统计信息 如上图所示 : 其中 Active connections 表示当前的活动连接数 ; 而 server accepts handled requests 表示已经处理的连接信息, 三个数字依次表示已处理的连接数 成功的 TCP 握手次数 已处理的请求数. 客户端访问控制 : 注 :allow 允许规则,deny 拒绝规则 ; 规则的执行是按从上向下执行, 匹配某条规则后将不再检查其他规则 2) 虚拟主机 : 使用 Nginx 搭建虚拟主机服务器时, 每个虚拟 WEB 站点拥有独立的 server { 配置段, 各自监听的 IP 地址 端口号可以单独指定, 当然网站名称也是不同的 例如 : 要创建两个站点 和 为两个虚拟 WEB 主机分别建立根目录, 并准备测试首页 调整 nginx.conf 配置文件 --- 域名虚拟主机配置两个 server { 区域, 分别对应两个 WEB 站点, 指定各自的网站名称 监听地址 网站根目录 访问日志等信息, 然后重载配置 分区 WEB 服务器与应用配置 LNMP 的第 9 页

10 测试 : 使用浏览器分别通过 和 访问两个 WEB 站点 ( 注意域名解析 分区 WEB 服务器与应用配置 LNMP 的第 10 页

11 PHP 站点配置 2013 年 5 月 17 日 1:59 如何处理一个请求 Nginx 首先选定由哪一个虚拟主机来处理请求 让我们从一个简单的配置 ( 其中全部 3 个虚拟主机都在端口 *: 80 上监听 ) 开始 : server { listen 80; server_name example.org server { listen 80; server_name example.net server { listen 80; server_name example.com 在这个配置中,nginx 仅仅检查请求的 Host 头以决定该请求应由哪个虚拟主机来处理 如果 Host 头没有匹配任意一个虚拟主机, 或者请求中根本没有包含 Host 头, 那 nginx 会将请求分发到定义在此端口上的默认虚拟主机 在以上配置中, 第一个被列出的虚拟主机即 nginx 的默认虚拟主机 这是 nginx 的默认行为 而且, 可以显式地设置某个主机为默认虚拟主机, 即在 "listen" 指令中设置 "default_server" 参数 : server { listen 80 default_server; server_name example.net "default_server" 参数从 版开始可用 在之前的版本中, 应该使用 "default" 参数代替 请注意 "default_server" 是监听端口的属性, 而不是主机名的属性 后面会对此有更多介绍 如何防止处理未定义主机名的请求 如果不允许请求中缺少 Host 头, 可以定义如下主机, 丢弃这些请求 : server { listen 80; server_name ""; return 444; 在这里, 我们设置主机名为空字符串以匹配未定义 Host 头的请求, 而且返回了一个 nginx 特有的, 非 http 标准的返回码 444, 它可以用来关闭连接 从 版本开始, 这已成为主机名的默认设置, 所以可以省略 server_name "" 而之前的版本使用机器的 hostname 作为主机名的默认值 基于域名和 IP 混合的虚拟主机 分区 WEB 服务器与应用配置 LNMP 的第 11 页

12 下面让我们来看一个复杂点的配置, 在这个配置里, 有几个虚拟主机在不同的地址上监听 : server { listen :80; server_name example.org server { listen :80; server_name example.net server { listen :80; server_name example.com 这个配置中,nginx 首先测试请求的 IP 地址和端口是否匹配某个 server 配置块中的 listen 指令配置 接着 nginx 继续测试请求的 Host 头是否匹配这个 server 块中的某个 server_name 的值 如果主机名没有找到,nginx 将把这个请求交给默认虚拟主机处理 例如, 一个从 :80 端口收到的访问 的请求将被监听 :80 端口的默认虚拟主机处理, 本例中就是第一个服务器, 因为这个端口上没有定义名为 的虚拟主机 默认服务器是监听端口的属性, 所以不同的监听端口可以设置不同的默认服务器 : server { listen :80; server_name example.org server { listen :80 default_server; server_name example.net server { listen :80 default_server; server_name example.com 一个简单 PHP 站点配置 现在我们来看在一个典型的, 简单的 PHP 站点中,nginx 怎样为一个请求选择 location 来处理 : server { listen 80; server_name example.org root /data/www; location / { index index.html index.php; location ~* \.(gif jpg png)$ { 分区 WEB 服务器与应用配置 LNMP 的第 12 页

13 expires 30d; location ~ \.php$ { fastcgi_pass localhost:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; 首先,nginx 使用前缀匹配找出最准确的 location, 这一步 nginx 会忽略 location 在配置文件出现的顺序 上面的配置中, 唯一的前缀匹配 location 是 "/", 而且因为它可以匹配任意的请求, 所以被作为最后一个选择 接着, nginx 继续按照配置中的顺序依次匹配正则表达式的 location, 匹配到第一个正则表达式后停止搜索 匹配到的 location 将被使用 如果没有匹配到正则表达式的 location, 则使用刚刚找到的最准确的前缀匹配的 location 请注意所有 location 匹配测试只使用请求的 URI 部分, 而不使用参数部分 这是因为写参数的方法很多, 比如 : /index.php?user=john&page=1 /index.php?page=1&user=john 除此以外, 任何人在请求串中都可以随意添加字符串 : /index.php?page=1&something+else&user=john 现在让我们来看使用上面的配置, 请求是怎样被处理的 : 请求 "/logo.gif" 首先匹配上 location "/", 然后匹配上正则表达式 "\.(gif jpg png)$" 因此, 它将被后者处理 根据 "root /data/www" 指令,nginx 将请求映射到文件 /data/www/logo.gif", 并发送这个文件到客户端 请求 "/index.php" 首先也匹配上 location "/", 然后匹配上正则表达式 "\.(php)$" 因此, 它将被后者处理, 进而被发送到监听在 localhost:9000 的 FastCGI 服务器 fastcgi_param 指令将 FastCGI 的参数 SCRIPT_FILENAME 的值设置为 "/data/www/index.php", 接着 FastCGI 服务器执行这个文件 变量 $document_root 等于 root 指令设置的值, 变量 $fastcgi_script_name 的值是请求的 uri,"/index.php" 请求 "/about.html" 仅能匹配上 location "/", 因此, 它将使用此 location 进行处理 根据 "root /data/www" 指令, nginx 将请求映射到文件 "/data/www/about.html", 并发送这个文件到客户端 请求 "/" 的处理更为复杂 它仅能匹配上 location "/", 因此, 它将使用此 location 进行处理 然后,index 指令使用它的参数和 "root /data/www" 指令所组成的文件路径来检测对应的文件是否存在 如果文件 /data/www/index.html 不存在, 而 /data/www/index.php 存在, 此指令将执行一次内部重定向到 "/index.php", 接着 nginx 将重新寻找匹配 "/index.php" 的 location, 就好像这次请求是从客户端发过来一样 正如我们之前看到的那样, 这个重定向的请求最终交给 FastCGI 服务器来处理 分区 WEB 服务器与应用配置 LNMP 的第 13 页

14 MYSQL 2013 年 5 月 16 日 23:07 MySQL CMake 参数说明 MySQL 自 5.5 版本以后, 就开始使用 CMake 编译工具了, 因此, 你在安装源文件中找不到 configure 文件是正常的 很多人下到了新版的 MySQL, 因为找不到 configure 文件, 不知道该怎么继续下去 有没有一篇可供参考的文章呢? 其实在 网站上有一篇文章, 专门介绍了如何用 CMake 工具进行新版 MySQL 的编译安装 介绍 CMake 是个开源的跨平台自动化建构系统, 它用组态档控制建构过程 (build process) 的方式和 Unix 的 Make 相似, 只是 CMake 的组态档取名为 CmakeLists.txt Cmake 并不直接建构出最终的软件, 而是产生标准的建构档 ( 如 Unix 的 Makefile 或 Windows Visual C++ 的 projects/workspaces), 然后再依一般的建构方式使用 这使得熟悉某个集成开发环境 (IDE) 的开发者可以用标准的方式建构他的软件, 这种可以使用各平台的原生建构系统的能力是 CMake 和 SCons 等其他类似系统的区别之处 CMake 可以编译源代码 制做程序库 产生适配器 (wrapper) 还可以用任意的顺序建构可执行文件 CMake 支持 in-place 建构 ( 二进档和源代码在同一个目录树中 ) 和 out-of-place 建构 ( 二进档在别的目录里 ), 因此可以很容易从同一个源代码目录树中建构出多个二进档 CMake 也支持静态与动态程序库的建构 CMake 这个名字是 "cross platform make" 的缩写 虽然名字中含有 "make", 但是 CMake 和 Unix 上常见的 make 系统是分开的, 而且更为高级 命令调用语法 下表列出了常用编译工具的调用语法和等效的 CMake 命令. 表示你当前的工作目录路径, 请根据你所在的目录, 适当的替换掉路径. configure 命令./configure cmake. CMake 命令./configure --help cmake. -LH or ccmake. 在重新配置或重新构建之前, 需要先清除旧的对象文件和缓存信息, 方法如下 : Autotools: view plain copy make clean rm config.cache CMake (Unix/Linux): view plain copy make clean rm CMakeCache.txt CMake (Windows): view plain copy devenv MySQL.sln /clean del CMakeCache.txt 安装参数选项 在下表中, CMAKE_INSTALL_PREFIX 的值表示的是安装根目录, 其他参数值的路径都是相对于根目录的, 当然你也可以直接使用绝对路径, 具体如下 : 参数值说明配置选项 CMak 选项 安装根目录 --prefix=/usr -DCMAKE_INSTALL_PREFIX=/usr 分区 WEB 服务器与应用配置 LNMP 的第 14 页

15 mysqld 目录 --libexecdir=/usr/sbin -DINSTALL_SBINDIR=sbin 数据存储目录 --localstatedir=/var/lib/mysql -DMYSQL_DATADIR=/var/lib/mysql 配置文件 (my.cnf) 目录 插件目录 --sysconfdir=/etc/mysql --withplugindir=/usr/lib64/mysql/plugi n -DSYSCONFDIR=/etc/mysql - DINSTALL_PLUGINDIR=lib64/mysql/pl ugin 手册文件目录 --mandir=/usr/share/man -DINSTALL_MANDIR=share/man 共享数据目录 -- sharedstatedir=/usr/share/mysql -DINSTALL_SHAREDIR=share Library 库目录 --libdir=/usr/lib64/mysql -DINSTALL_LIBDIR=lib64/mysql Header 安装目录 --includedir=/usr/include/mysql - DINSTALL_INCLUDEDIR=include/mysql 信息文档目录 --infodir=/usr/share/info -DINSTALL_INFODIR=share/info 存储引擎选项 存储引擎是以插件的形式存在的, 所以, 该选项可以控制插件的构建, 比如指定使用某个特定的引擎 --with-plugins 配置选项接受两种形式的参数值, 它没有对应的 CMake 配置参数 : 1 以逗号 (,) 分隔的引擎名称列表 ; 2 a "group name" value that is shorthand for a set of engines 在 CMake 中, 引擎被作为单个的选项来进行控制 假设有以下配置选项 : view plain copy --with-plugins=csv,myisam,myisammrg,heap,innobase,archive,blackhole 上面的参数指定 MySQL 数据库可以支持哪些数据库引擎, 将上述编译选项转换成 CMake 编译选项时, 下面的几个引擎名字可以被省略, 因为编译时, 默认就支持 : view plain copy csv myisam myisammrg heap 然后使用下面的编译参数, 以启用 InnoDB ARCHIVE 和 BLACKHOLE 引擎支持 : view plain copy -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 当然也可以使用 ON 来替代数字 1, 它们是等效的 如果你想除去对某种引擎的支持, 则在 CMake 编译选项中使用 - DWITHOUT_<ENGINE>_STORAGE_ENGINE, 例如 : view plain copy -DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 -DWITHOUT_FEDERATED_STORAGE_ENGINE=1 -DWITHOUT_PARTITION_STORAGE_ENGINE=1 库文件加载选项 该选项指明 Mysql 使用库的情况 : 参数值说明配置选项 readline 库 --with-readline CMak 选项 -DWITH_READLINE=1 SSL 库 --with-ssl=/usr -DWITH_SSL=system zlib 库 --with-zlib-dir=/usr -DWITH_ZLIB=system libwrap 库 --without-libwrap -DWITH_LIBWRAP=0 其他选项 CMake 编译选项支持大部分之前版本的 MySQL 编译选项, 新老编译选项的差别在于 : 之前的 分区 WEB 服务器与应用配置 LNMP 的第 15 页

16 是小写, 现在全部变成了大写, 之前采用双横线, 现在使用单横线, 之前使用的破折号, 现在取而代之的是使用下划线, 例如 : view plain copy --with-debug => WITH_DEBUG=1 --with-embedded-server => WITH_EMBEDDED_SERVER 下面是编译 MySQL 的新老参数对照表 : 参数值说明配置选项 CMak 选项 TCP/IP 端口 --with-tcp-port-=3306 -DMYSQL_TCP_PORT=3306 UNIX socket 文件 --with-unix-socketpath=/tmp/mysqld.sock - DMYSQL_UNIX_ADDR=/tmp/mysqld.s ock 启用加载本地数据 --enable-local-infile -DENABLED_LOCAL_INFILE=1 扩展字符支持 --with-extra-charsets=all( 默认 : all) -DEXTRA_CHARSETS=all( 默认 : all) 默认字符集 --with-charset=utf8 -DDEFAULT_CHARSET=utf8 默认字符校对 --with-collation=utf8_general_ci -DDEFAULT_COLLATION=utf8 _general_ci Build the server --with-server 无 嵌入式服务器 --with-embedded-server -DWITH_EMBEDDED_SERVER=1 libmysqld 权限控制 --with-embedded-privilege-control 无 安装文档 --without- docs 无 Big tables 支持 --with-big-tables, --without-bigtables mysqld 运行用户 --with-mysqld-user=mysql -DMYSQL_USER=mysql 调试模式 --without-debug( 默认禁用 ) -DWITH_DEBUG=0( 默认禁用 ) GIS 支持 --with-geometry 无 社区功能 --enable-community-features 无 Profiling --disable-profiling( 默认启用 ) -DENABLE_PROFILING=0( 默认启 用 ) pstack --without-pstack 无 ( 新版移除该功能 ) 汇编字符串函数 --enable-assembler 无 构建类型 --build=x86_64-pc-linux-gnu 没有等效参数 交叉编译主机 --host=x86_64-pc-linux-gnu 没有等效参数 客户端标志 --with-client-ldflags=-lstdc++ 无 线程安全标志 --enable-thread-safe-client 无 注释存储类型 --with-comment='string' -DWITH_COMMENT='string' Shared/static binaries --enable-shared --enable-static 内存使用控制 --with-low-memory 无 无 无 安装 mysql tar.gz 分区 WEB 服务器与应用配置 LNMP 的第 16 页

17 分区 WEB 服务器与应用配置 LNMP 的第 17 页

18 分区 WEB 服务器与应用配置 LNMP 的第 18 页

19 PHP 2013 年 5 月 16 日 23:56 分区 WEB 服务器与应用配置 LNMP 的第 19 页

20 分区 WEB 服务器与应用配置 LNMP 的第 20 页

21 分区 WEB 服务器与应用配置 LNMP 的第 21 页

22 分区 WEB 服务器与应用配置 LNMP 的第 22 页

23 PHPMYADMIN 2013 年 5 月 17 日 1:21 分区 WEB 服务器与应用配置 LNMP 的第 23 页

24 DISCUZ 2013 年 5 月 17 日 1:28 分区 WEB 服务器与应用配置 LNMP 的第 24 页

25 分区 WEB 服务器与应用配置 LNMP 的第 25 页

26 分区 WEB 服务器与应用配置 LNMP 的第 26 页

27 分区 WEB 服务器与应用配置 LNMP 的第 27 页

28 分区 WEB 服务器与应用配置 LNMP 的第 28 页

29 分区 WEB 服务器与应用配置 LNMP 的第 29 页

30 分区 WEB 服务器与应用配置 LNMP 的第 30 页

助文档 天翼云镜像使用帮 天翼云镜像使用帮助文档 一 镜像环境说明 1. 操作系统 Ubuntu 位 2. php 运行环境 nginx+ PHP5.4+mysql 镜像软件明细 Mysql5.5 + FTP + PHPmyadmin + zend 二 软件账号和密码 1

助文档 天翼云镜像使用帮 天翼云镜像使用帮助文档 一 镜像环境说明 1. 操作系统 Ubuntu 位 2. php 运行环境 nginx+ PHP5.4+mysql 镜像软件明细 Mysql5.5 + FTP + PHPmyadmin + zend 二 软件账号和密码 1 一 镜像环境说明 1. 操作系统 Ubuntu12.04 64 位 2. php 运行环境 nginx+ PHP5.4+mysql5.5 3. 镜像软件明细 Mysql5.5 + FTP + PHPmyadmin + zend 二 软件账号和密码 1. FTP FTP 账号 :tianyiyun FTP 密码 : 密码随机生成, 具体密码查看方式请登录主机后参考 passwd.txt 文件 2. MySQL

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

untitled

untitled MySQL DBMS under Win32 Editor: Jung Yi Lin, Database Lab, CS, NCTU, 2005/09/16 MySQL 料 理 MySQL 兩 Commercial License 利 GPL MySQL http://www.mysql.com Developer Zone http://www.mysql.com Download 連 連 MySQL

More information

关于我 夏志培 沪江网运维架构师 / 基础运维团队负责人,10+ 年运维经验 负责沪江 Redis/Codis,DNS,ApiGateway,RabbitMQ,ELK,Ceph 等基础组件运维和架构工作 对系统底层以及开源的软件有浓厚的兴趣 微信 :summer_xia_027

关于我 夏志培 沪江网运维架构师 / 基础运维团队负责人,10+ 年运维经验 负责沪江 Redis/Codis,DNS,ApiGateway,RabbitMQ,ELK,Ceph 等基础组件运维和架构工作 对系统底层以及开源的软件有浓厚的兴趣 微信 :summer_xia_027 沪江 ApiGateway 实践 关于我 夏志培 沪江网运维架构师 / 基础运维团队负责人,10+ 年运维经验 负责沪江 Redis/Codis,DNS,ApiGateway,RabbitMQ,ELK,Ceph 等基础组件运维和架构工作 对系统底层以及开源的软件有浓厚的兴趣 微信 :summer_xia_027 目录 01 02 03 背景和目的 ApiGateway 架构 ApiGateway 的实现

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

http://panweizeng.com http://meituan.com http://meituan.com hosts http://meituan.com hosts localhost 127.0.0.1 /etc/nsswitch.conf /etc/hosts /etc/resolv.conf Mail Client Web Browser cache 1-30mins Clients

More information

投影片 1

投影片 1 FreeBSD A 95/10/11 19:00~21:00 95/10/11 FreeBSD 練 1 Services Setup SSH, lighttpd, PHP, MySQL, FTP, Postfix, phpmyadmin, Blog, Gallery 95/10/11 FreeBSD 練 2 1. 2. # FreeBSD # 3. vi ee joe nano etc 95/10/11

More information

目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功 能... 7 一 銷 售 及 訂 單... 7 二 稅... 8 三 應 收 帳 款... 8 四 存 貨... 8 五 購 買... 9 六 應 付 帳 款... 9

目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功 能... 7 一 銷 售 及 訂 單... 7 二 稅... 8 三 應 收 帳 款... 8 四 存 貨... 8 五 購 買... 9 六 應 付 帳 款... 9 東 吳 大 學 企 研 所 資 訊 管 理 期 末 報 告 weberp 使 用 說 明 書 指 導 教 授 : 尚 榮 安 教 授 第 一 組 童 偉 哲 01353025 劉 彥 澧 01353028 史 璦 禎 01353031 吳 采 紋 98153143 1 目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

PowerPoint Presentation

PowerPoint Presentation 立 97 年度 SNMG 練 DNS & BIND enc1215@gmail.com DNS BIND Resolver Named 理 Named 更 DNS DNS Reference 2 DNS DNS 料 domain ip DNS server DNS server 理 DNS server DNS DNS 狀. root name server 理 3 DNS 狀 DNS (2). com

More information

2005 3

2005 3 Text 2009.4 hongqn@douban.com 2005 3 2.8M 1/4 20M / 500~600/sec 23 PC (1U*15/2U*8) 12 38G memcached 1U (frodo) AMD Athlon 64 1.8GHz 1G 160G SATA*2 Gentoo Linux MySQL 5 Quixote (a Python web framework)

More information

untitled

untitled Chapter 01 1.0... 1-2 1.1... 1-2 1.1.1...1-2 1.1.2...1-4 1.1.2.1... 1-6 1.1.2.2... 1-7 1.1.2.3... 1-7 1.1.2.4... 1-7 1.1.2.5... 1-8 1.1.2.6... 1-8 1.1.3??...1-8 1.1.4...1-9 1.2...1-12 1.3...1-14 1.4...1-17

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

<4D6963726F736F667420576F7264202D20383439342D352DBED6D3F2CDF8D7E9BDA8D3EBB9DCC0EDCFEEC4BFBDCCB3CCD5FDCEC42E646F63>

<4D6963726F736F667420576F7264202D20383439342D352DBED6D3F2CDF8D7E9BDA8D3EBB9DCC0EDCFEEC4BFBDCCB3CCD5FDCEC42E646F63> 第 4 单 元 搭 建 自 己 的 Web 站 点 本 单 元 通 过 学 习 架 构 Web 服 务 器, 实 现 Web 服 务, 管 理 Web 站 点, 了 解 Web 站 点 服 务 器 的 架 构 个 人 空 间 和 虚 拟 主 机 的 概 念, 掌 握 IIS 组 件 的 安 装 Web 站 点 的 创 建 管 理 站 点 属 性 选 项 卡 的 配 置 管 理 等 知 识,Web 网

More information

A9RF716.tmp

A9RF716.tmp 1 PART I 1 2 3 4 5 6 7 8 Docker Docker Image Container Repository Docker le Docker Docker 8 1 Docker Linux 2 Docker Docker 3 5 Docker 6 Docker volume 7 8 Docker le Docker le 1 C H A P T E R 1 CPU Data

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

六域链联盟 SDChain-Matrix 节点搭建指南 2018/07/26 Version : 1.0.0

六域链联盟 SDChain-Matrix 节点搭建指南 2018/07/26 Version : 1.0.0 SDChain-Matrix 节点搭建指南 目录 1 环境要求... 3 2 软件下载... 4 3 安装部署... 4 3.1 部署可执行程序目录... 4 3.2 部署配置文件目录... 4 3.3 部署数据库文件目录... 4 3.4 部署日志文件目录... 4 3.5 部署依赖库文件目录... 4 4 配置参数... 5 5 启动运行... 7 5.1 普通模式启动... 7 5.2 加载启动模式...

More information

ch08.PDF

ch08.PDF 8-1 CCNA 8.1 CLI 8.1.1 8-2 8-3 8.1.21600 2500 1600 2500 / IOS 8-4 8.2 8.2.1 A 5 IP CLI 1600 2500 8-5 8.1.2-15 Windows 9598NT 2000 HyperTerminal Hilgraeve Microsoft Cisco HyperTerminal Private Edition (PE)

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

MASQUERADE # iptables -t nat -A POSTROUTING -s / o eth0 -j # sysctl net.ipv4.ip_forward=1 # iptables -P FORWARD DROP #

MASQUERADE # iptables -t nat -A POSTROUTING -s / o eth0 -j # sysctl net.ipv4.ip_forward=1 # iptables -P FORWARD DROP # iptables 默认安全规则脚本 一 #nat 路由器 ( 一 ) 允许路由 # iptables -A FORWARD -i eth0 -o eth1 -j ACCEPT ( 二 ) DNAT 与端口转发 1 启用 DNAT 转发 # iptables -t nat -A PREROUTING -p tcp -d 192.168.102.37 dprot 422 -j DNAT to-destination

More information

ArcIMS ArcIMS Shape ArcIMS Monitor ArcIMS Tasker ArcIMS Windows NT UNIX ArcIMS ArcIMS MapService ArcIMS ArcIMS ArcIMS ArcIMS JAVA Windows NT UNIX ArcI

ArcIMS ArcIMS Shape ArcIMS Monitor ArcIMS Tasker ArcIMS Windows NT UNIX ArcIMS ArcIMS MapService ArcIMS ArcIMS ArcIMS ArcIMS JAVA Windows NT UNIX ArcI ArcIMS ArcIMS4.0 ( ) ArcIMS GIS ArcIMS GIS ArcIMS GIS Internet ArcIMS HTML Java ArcGIS Desktop ArcIMS ArcIMS ArcIMS ArcIMS ArcIMS ( ) Internet Intranet ArcIMS ArcIMS ArcIMS ArcIMS ArcIMS Spatial Server

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM Oracle Solaris Studio 12.2 DLight 2010 9 2 2 3 DLight 3 3 6 13 CPU 16 18 21 I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AMP Apache MySQL

More information

1 1 大概思路 Nginx 集群之 SSL 证书的 WebApi 微服务 HTTP 与 HTTPS(SSL 协议 ) Openssl 生成 SSL 证书 编写.NET WebApi 部署 WebApi 到局域网内 3 台 PC 机 Nginx 集群配置搭建 运行结果 总结 2 Nginx 集群之

1 1 大概思路 Nginx 集群之 SSL 证书的 WebApi 微服务 HTTP 与 HTTPS(SSL 协议 ) Openssl 生成 SSL 证书 编写.NET WebApi 部署 WebApi 到局域网内 3 台 PC 机 Nginx 集群配置搭建 运行结果 总结 2 Nginx 集群之 目录 1 大概思路... 1 2 Nginx 集群之 SSL 证书的 WebApi 微服务... 1 3 HTTP 与 HTTPS(SSL 协议 )... 1 4 Openssl 生成 SSL 证书... 2 5 编写.NET WebApi... 3 6 部署 WebApi 到局域网内 3 台 PC 机... 5 7 Nginx 集群配置搭建... 6 8 运行结果... 8 9 总结... 9 1

More information

Microsoft Word - 在VMWare-5.5+RedHat-9下建立本机QTopia-2.1.1虚拟平台a.doc

Microsoft Word - 在VMWare-5.5+RedHat-9下建立本机QTopia-2.1.1虚拟平台a.doc 在 VMWare-5.5+RedHat-9 下建立 本机 QTopia-2.1.1 虚拟平台 张大海 2008-5-9 一 资源下载 1. 需要以下安装包 : tmake-1.13.tar.gz qtopia-free-source-2.1.1.tar.gz qt-embedded-2.3.10-free.tar.gz qt-x11-2.3.2.tar.gz qt-x11-free-3.3.4.tar.gz

More information

ext-web-auth-wlc.pdf

ext-web-auth-wlc.pdf 使 用 无 线 局 域 网 控 制 器 的 外 部 Web 身 份 验 证 配 置 示 例 目 录 简 介 先 决 条 件 要 求 使 用 的 组 件 规 则 背 景 信 息 外 部 Web 身 份 验 证 过 程 网 络 设 置 配 置 为 来 宾 用 户 创 建 动 态 接 口 创 建 预 先 身 份 验 证 ACL 在 WLC 上 为 来 宾 用 户 创 建 本 地 数 据 库 配 置 外 部

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

Chapter #

Chapter # 第三章 TCP/IP 协议栈 本章目标 通过本章的学习, 您应该掌握以下内容 : 掌握 TCP/IP 分层模型 掌握 IP 协议原理 理解 OSI 和 TCP/IP 模型的区别和联系 TCP/IP 介绍 主机 主机 Internet TCP/IP 早期的协议族 全球范围 TCP/IP 协议栈 7 6 5 4 3 应用层表示层会话层传输层网络层 应用层 主机到主机层 Internet 层 2 1 数据链路层

More information

1

1 TW5.0---APACHE---SSL(window 环境 ) 实现过程一 先做好 APCHE-SSL 准备 1. 下载 apache_2.2.11-win32-x86-openssl-0.9.8i.msi 2 安装此 APACHE, 在进行下一步之前, 请确认 Apache 已经安装并可以正常工作. 并且 ssl 需要的文件在如下的位置 : [Apache 安装目录 ]/modules/mod_ssl.so

More information

资源管理软件TORQUE与作业调度软件Maui的安装、设置及使用

资源管理软件TORQUE与作业调度软件Maui的安装、设置及使用 TORQUE Maui hmli@ustc.edu.cn 2008 1 1 TORQUE 2 1.1 TORQUE........................... 2 1.2 TORQUE...................... 2 1.3 TORQUE.......................... 4 1.4 TORQUE........................... 4

More information

.. 3 N

.. 3 N 1 .. 3 N9.. 4 5.. 6 7.. 8 20.. 21 23.. 24.. 25 26.. 27.. 28.. 29 2 (Cyber Café) Linux (LAN) Linux Public Home 3 K12LTSP K12LTSPFedora Core 4 (Linux)LTSP Linux (command line interface) (Graphical User Interface,

More information

Get Started产品文档

Get Started产品文档 腾讯云 CDB for MySQL Get Started 产品文档 版权声明 2015-2016 腾讯云版权所有 本文档著作权归腾讯云单独所有, 未经腾讯云事先书面许可, 任何主体不得以任何形式复制 修改 抄袭 传 播全部或部分本文档内容 商标声明 及其它腾讯云服务相关的商标均为腾讯云计算 ( 北京 ) 有限责任公司及其关联公司所有 本文档涉及的第三方 主体的商标, 依法由权利人所有 服务声明 本文档意在向客户介绍腾讯云全部或部分产品

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

f2.eps

f2.eps 前 言, 目 录 产 品 概 况 1 SICAM PAS SICAM 电 力 自 动 化 系 统 配 置 和 使 用 说 明 配 置 2 操 作 3 实 时 数 据 4 人 机 界 面 5 SINAUT LSA 转 换 器 6 状 态 与 控 制 信 息 A 版 本 号 : 08.03.05 附 录, 索 引 安 全 标 识 由 于 对 设 备 的 特 殊 操 作 往 往 需 要 一 些 特 殊 的

More information

VIDEOJET connect 7000 VJC-7000-90 zh- CHS Operation Manual VIDEOJET connect 7000 zh-chs 3 目 录 1 浏 览 器 连 接 7 1.1 系 统 要 求 7 1.2 建 立 连 接 7 1.2.1 摄 像 机 中 的 密 码 保 护 7 1.3 受 保 护 的 网 络 7 2 系 统 概 述 8 2.1 实 况

More information

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se 1 SQL Server 2005 DBA Microsoft SQL Server SQL ServerSQL Server SQL Server SQL Server SQL Server SQL Server 2005 SQL Server 2005 SQL Server 2005 o o o SQL Server 2005 1 SQL Server 2005... 3 2 SQL Server

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

Progress Report of BESIII Slow Control Software Development

Progress Report of BESIII Slow Control Software Development BESIII 慢控制系统高压和 VME 监控 系统的设计和实现 陈锡辉 BESIII 慢控制组 2006-4-27 Outline Design and implementation of HV system Features Implementation Brief introduction to VME system Features Implementation of a demo Tasks

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

QVM330 多阜寬頻路由器

QVM330 多阜寬頻路由器 俠 諾 神 捕 QnoSniff 專 業 版 2.0 繁 體 中 文 使 用 手 冊 目 錄 一 簡 介... 4 二 QnoSniff 專 業 版 系 統 安 裝 與 配 置... 6 2.1 開 始 之 前 的 準 備... 6 2.2 QnoSniff 專 業 版 安 裝 過 程 中 所 需 元 件... 6 2.3 佈 署 連 接 範 例 拓 樸... 7 2.4 開 始 安 裝... 7

More information

目 录(目录名)

目  录(目录名) 目录 目录...1-1 1.1 域名解析配置命令... 1-1 1.1.1 display dns domain... 1-1 1.1.2 display dns dynamic-host... 1-1 1.1.3 display dns server... 1-2 1.1.4 display ip host... 1-3 1.1.5 dns domain... 1-4 1.1.6 dns resolve...

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE "Project Properties" IDE makefile 1.

Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE Project Properties IDE makefile 1. Oracle Solaris Studio 12.2 IDE 2010 9 2 8 9 10 11 13 20 26 28 30 32 33 Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE "Project Properties" IDE makefile 1. "File" > "New

More information

快 速 入 门 (Linux) 概 述 文 档 目 的 本 文 档 介 绍 了 如 何 快 速 创 建 Linux 系 统 实 例 远 程 连 接 实 例 部 署 环 境 等 旨 在 引 导 您 一 站 式 完 成 实 例 的 创 建 登 录 和 快 速 环 境 部 署 云 服 务 器 ECS 实

快 速 入 门 (Linux) 概 述 文 档 目 的 本 文 档 介 绍 了 如 何 快 速 创 建 Linux 系 统 实 例 远 程 连 接 实 例 部 署 环 境 等 旨 在 引 导 您 一 站 式 完 成 实 例 的 创 建 登 录 和 快 速 环 境 部 署 云 服 务 器 ECS 实 云 服 务 器 ECS 快 速 入 门 (Linux) 快 速 入 门 (Linux) 概 述 文 档 目 的 本 文 档 介 绍 了 如 何 快 速 创 建 Linux 系 统 实 例 远 程 连 接 实 例 部 署 环 境 等 旨 在 引 导 您 一 站 式 完 成 实 例 的 创 建 登 录 和 快 速 环 境 部 署 云 服 务 器 ECS 实 例, 有 时 候 也 被 称 为 阿 里 云

More information

68369 (ppp quickstart guide)

68369 (ppp quickstart guide) Printed in USA 04/02 P/N 68369 rev. B PresencePLUS Pro PC PresencePLUS Pro PresencePLUS Pro CD Pass/Fails page 2 1 1. C-PPCAM 2. PPC.. PPCAMPPCTL 3. DB9D.. STPX.. STP.. 01 Trigger Ready Power 02 03 TRIGGER

More information

QVM330 多阜寬頻路由器

QVM330 多阜寬頻路由器 侠 诺 神 捕 QnoSniff 专 业 版 2.0 简 体 中 文 使 用 手 册 目 录 一 简 介... 4 二 QnoSniff 专 业 版 系 统 安 装 与 配 置... 5 2.1 开 始 之 前 的 准 备... 5 2.2 QnoSniff 专 业 版 安 装 过 程 中 所 需 组 件... 5 2.3 布 署 连 接 范 例 拓 朴... 6 2.4 开 始 安 装... 6

More information

Microsoft Word - 100118002.htm

Microsoft Word - 100118002.htm 100 年 度 11800 電 腦 軟 體 應 用 乙 級 技 術 士 技 能 檢 定 學 科 測 試 試 題 本 試 卷 有 選 擇 題 80 題, 每 題 1.25 分, 皆 為 單 選 選 擇 題, 測 試 時 間 為 100 分 鐘, 請 在 答 案 卡 上 作 答, 答 錯 不 倒 扣 ; 未 作 答 者, 不 予 計 分 准 考 證 號 碼 : 姓 名 : 選 擇 題 : 1. (3)

More information

软件概述

软件概述 Cobra DocGuard BEIJING E-SAFENET SCIENCE & TECHNOLOGY CO.,LTD. 2003 3 20 35 1002 010-82332490 http://www.esafenet.com Cobra DocGuard White Book 1 1....4 1.1...4 1.2 CDG...4 1.3 CDG...4 1.4 CDG...5 1.5

More information

Pchome

Pchome H Linux Linux Red Hat Linux Fedora 1 DNS Mail WWW Domain tslg.idv.tw IP 192.168.1.254 tslg.idv.tw PChome Seednet ISP http://rs.twnic.net.tw/index2.html Seednet http://rs.seed.net.tw/ Pchome http://myname.pchome.com.tw/

More information

计算机网络实验说明

计算机网络实验说明 计算机网络实验说明 龚旭东 电三楼 420 lzgxd@mailustceducn 2011 年 11 月 1 日 龚旭东 (TA) 计算机网络实验说明 2011 年 11 月 1 日 1 / 20 Outline 1 实验系统介绍 实验环境实验流程 2 实验内容编程实验交互实验观察实验 3 一些控制台命令 4 实验报告说明 龚旭东 (TA) 计算机网络实验说明 2011 年 11 月 1 日 2

More information

UDP 8.2 TCP/IP OSI OSI 3 OSI TCP/IP IP TCP/IP TCP/IP Transport Control Protocol TCP User Datagram Protocol UDP TCP TCP/IP IP TCP TCP/IP TC

UDP 8.2 TCP/IP OSI OSI 3 OSI TCP/IP IP TCP/IP TCP/IP Transport Control Protocol TCP User Datagram Protocol UDP TCP TCP/IP IP TCP TCP/IP TC 8 TCP/IP TCP/IP TCP OSI 8.1 OSI 4 end to end A B FTP OSI Connection Management handshake Flow Control Error Detection IP Response to User s Request TCP/IP TCP 181 UDP 8.2 TCP/IP OSI OSI 3 OSI 3 8.1 TCP/IP

More information

<55342D323637CBB5C3F7CAE92E786C73>

<55342D323637CBB5C3F7CAE92E786C73> U4-267 / 1 U4-267 / : CF PowerPoint, TCP/IP Internet Explorer 2 ..2..3..4..5..5..5..9 PC...10 11 12 14 14....15....15....16....16....17....17....18....18....20 23....27 27 PC...27....28 3 CF SanDisk CompactFlash)

More information

SiteView技术白皮书

SiteView技术白皮书 SiteView ECC V6.2 技 术 白 皮 书 游 龙 网 络 科 技 ( 中 国 ) 有 限 公 司 DragonFlow Networks(China),Inc. 目 录 第 一 章 产 品 概 述... 3 第 二 章 系 统 结 构... 6 一 系 统 架 构... 7 1 用 户 管 理 模 块... 7 2 Web Server... 8 3 存 储 加 密 模 块... 8

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

1. ( B ) IT (A) (B) (C) (D) 2. ( A ) (A) (B) (C) (D) 3. ( B ) (A) GPS (B) GIS (C) ETC (D) CAI 4. ( D ) (A) (B) (C) (D) 5. ( B ) (Stored Program) (A) H

1. ( B ) IT (A) (B) (C) (D) 2. ( A ) (A) (B) (C) (D) 3. ( B ) (A) GPS (B) GIS (C) ETC (D) CAI 4. ( D ) (A) (B) (C) (D) 5. ( B ) (Stored Program) (A) H ... 2... 4... 6... 8... 10... 12... 14... 16... 18... 20... 22... 24... 25... 26... 28 1. ( B ) IT (A) (B) (C) (D) 2. ( A ) (A) (B) (C) (D) 3. ( B ) (A) GPS (B) GIS (C) ETC (D) CAI 4. ( D ) (A) (B) (C)

More information

ansoft_setup21.doc

ansoft_setup21.doc Cadence Cadence Cadence 1000 (1) (2) CIC (3).. CIC Cadence (a) CIC license license server license CIC license CIC license (b) 2000 Cadence license 92 1 1 license server CIC 92 1 1 Cadence license licenser

More information

ICD ICD ICD ICD ICD

ICD ICD ICD ICD ICD MPLAB ICD2 MPLAB ICD2 PIC MPLAB-IDE V6.0 ICD2 usb PC RS232 MPLAB IDE PC PC 2.0 5.5V LED EEDATA MPLAB ICD2 Microchip MPLAB-IDE v6.0 Windows 95/98 Windows NT Windows 2000 www.elc-mcu.com 1 ICD2...4 1.1 ICD2...4

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

第 3 章 LAMP 的 基 本 安 装 与 配 置 3 LAMP 的 基 本 安 装 与 配 置 知 识 点 Apache 的 安 装 与 配 置 MySQL 的 安 装 与 配 置 PHP 的 安 装 与 配 置 LAMP 是 Linux + Apache + MySQL + PHP 的 首 字

第 3 章 LAMP 的 基 本 安 装 与 配 置 3 LAMP 的 基 本 安 装 与 配 置 知 识 点 Apache 的 安 装 与 配 置 MySQL 的 安 装 与 配 置 PHP 的 安 装 与 配 置 LAMP 是 Linux + Apache + MySQL + PHP 的 首 字 Linux 体 系 结 构 与 程 序 设 计 写 的 : PATH=/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/ usr/sbin:/usr/bin:/root/bin; export PATH 这 是 用 来 设 定 环 境 变 量 PATH 的, 所 以 在 at 里 输 入 的

More information

校友会系统白皮书feb_08

校友会系统白皮书feb_08 硕 士 研 究 生 招 生 管 理 系 统 1 产 品 白 皮 书 希 尔 数 字 校 园 硕 士 研 究 生 招 生 管 理 系 统 白 皮 书 目 录 1 产 品 概 述... 1 1.1 产 品 简 介... 1 1.2 应 用 范 围... 1 2 产 品 功 能 结 构 图... 2 3 产 品 功 能... 3 3.1 系 统 设 置... 3 3.2 信 息 发 布... 3 3.3

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

1 C++ 2 Bjarne Stroustrup C++ (system programming) 6 (infrastructure) C++ 7 Herb Sutter 8 C++ (efficiency) (flexibility) 9 (abstraction) (productivity

1 C++ 2 Bjarne Stroustrup C++ (system programming) 6 (infrastructure) C++ 7 Herb Sutter 8 C++ (efficiency) (flexibility) 9 (abstraction) (productivity 1 C++ 1 C++ Primer C++ (giantchen@gmail.com) 2012-7-11 Creative Commons - - 3.0 Unported (cc by-nc-nd) http://creativecommons.org/licenses/by-nc-nd/3.0/ 1 C++ 2009 Stanley Lippman C++ C++ Java/C#/Python

More information

公 司 年 度 大 事 记 2015 年 10 月 -11 月, 公 司 完 成 股 份 制 改 造 10 月 13 日, 百 灵 有 限 临 时 股 东 会 作 出 决 议, 同 意 各 发 起 人 将 其 在 百 灵 有 限 拥 有 的 截 至 2015 年 8 月 31 日 经 审 计 的 原

公 司 年 度 大 事 记 2015 年 10 月 -11 月, 公 司 完 成 股 份 制 改 造 10 月 13 日, 百 灵 有 限 临 时 股 东 会 作 出 决 议, 同 意 各 发 起 人 将 其 在 百 灵 有 限 拥 有 的 截 至 2015 年 8 月 31 日 经 审 计 的 原 百 灵 电 子 NEEQ :836943 郑 州 百 灵 电 子 技 术 股 份 有 限 公 司 (ZHENGZHOU BEELINK ELECTRONIC TECHNOLOGY CO.,LTD.) 年 度 报 告 2015 第 1 页, 共 110 页 公 司 年 度 大 事 记 2015 年 10 月 -11 月, 公 司 完 成 股 份 制 改 造 10 月 13 日, 百 灵 有 限 临 时

More information

puppet 简介 3 puppet 是什么 3 Hello world 4 puppet 安装 5 debian 系发行版安装 puppet 5 redhat 系发行版安装 puppet 5 源代码安装 puppet 6 配置 c/s 模式的 puppet 试验环境 6 puppet 语法 8 资

puppet 简介 3 puppet 是什么 3 Hello world 4 puppet 安装 5 debian 系发行版安装 puppet 5 redhat 系发行版安装 puppet 5 源代码安装 puppet 6 配置 c/s 模式的 puppet 试验环境 6 puppet 语法 8 资 puppet 入门 puppet 简介 3 puppet 是什么 3 Hello world 4 puppet 安装 5 debian 系发行版安装 puppet 5 redhat 系发行版安装 puppet 5 源代码安装 puppet 6 配置 c/s 模式的 puppet 试验环境 6 puppet 语法 8 资源 8 类和函数 10 节点 11 变量和数组 12 模块 13 几个常用的资源

More information

Go构建日请求千亿微服务最佳实践的副本

Go构建日请求千亿微服务最佳实践的副本 Go 构建 请求千亿级微服务实践 项超 100+ 700 万 3000 亿 Goroutine & Channel Goroutine Channel Goroutine func gen() chan int { out := make(chan int) go func(){ for i:=0; i

More information

Oracle Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE "P

Oracle Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE P Oracle Solaris Studio 12.3 IDE 2011 12 E26461-01 2 7 8 9 9 Oracle 10 12 14 21 26 27 29 31 32 33 Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE "Project

More information

10384 199928010 UDC 2002 4 2002 6 2002 2002 4 DICOM DICOM 1. 2. 3. Canny 4. 5. DICOM DICOM DICOM DICOM I Abstract Eyes are very important to our lives. Biologic parameters of anterior segment are criterions

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

<4D6963726F736F667420576F7264202D20C9CFBAA3CAD0BCC6CBE3BBFAB5C8BCB6BFBCCAD4C8FDBCB6BFBCCAD4B4F3B8D95FBDA8D2E9B8E55F5F303632352E646F63>

<4D6963726F736F667420576F7264202D20C9CFBAA3CAD0BCC6CBE3BBFAB5C8BCB6BFBCCAD4C8FDBCB6BFBCCAD4B4F3B8D95FBDA8D2E9B8E55F5F303632352E646F63> 上 海 市 高 等 学 校 计 算 机 等 级 考 试 ( 三 级 ) 考 试 大 纲 -- 建 议 稿 -- 2007-6-25 25 目 录 上 海 市 高 等 学 校 计 算 机 等 级 考 试 三 级 总 体 说 明 -----------------1 三 级 ( 计 算 机 系 统 与 网 络 技 术 ) 考 试 大 纲 ---------------------2 三 级 ( 管 理

More information

目 录(目录名)

目  录(目录名) 目录 1 域名解析配置命令... 1-1 1.1 域名解析配置命令...1-1 1.1.1 display dns domain... 1-1 1.1.2 display dns dynamic-host... 1-2 1.1.3 display dns proxy table... 1-2 1.1.4 display dns server... 1-3 1.1.5 display ip host...

More information

Microsoft Word - 2011-030-1-1SRS - 軟體需求規格.doc

Microsoft Word - 2011-030-1-1SRS - 軟體需求規格.doc 快 樂 牧 場 主 人 軟 體 需 求 規 格 SRS-IM-2011-030-1-1 朝 陽 科 技 大 學 資 訊 管 理 系 指 導 老 師 : 范 揚 文 副 教 授 學 生 : 王 昱 尚 何 駿 青 陳 伯 誠 董 次 麟 許 閔 翔 中 華 民 國 一 百 年 十 二 月 五 日 目 錄 1. 簡 介... 4 1.1 目 的... 4 1.2 範 圍... 4 1.3 參 考 文 件...

More information

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli BYOD 204 2015 GoogleHicloud (Load Balance) Server Load Balance Link Load Balance Server Redirect 1. URL Redirect redirector URL redirect Real Server Client HTTP Real Server Web Client 2 (1) URL Redirect

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

Web

Web Email: tian@dr.com http://www.digiark.com/tian Web 1. 2. 3. 4. 5. 6. Internet Internet (Hacker) Internet web IP 1 Internet UNIX Windows VLAN Internet IP 2 Internet FTP TELNET PING IP 8 telnet FTP RLOGIN

More information

W. Richard Stevens UNIX Sockets API echo Sockets TCP OOB IO C struct C/C++ UNIX fork() select(2)/poll(2)/epoll(4) IO IO CPU 100% libevent UNIX CPU IO

W. Richard Stevens UNIX Sockets API echo Sockets TCP OOB IO C struct C/C++ UNIX fork() select(2)/poll(2)/epoll(4) IO IO CPU 100% libevent UNIX CPU IO Linux muduo C++ (giantchen@gmail.com) 2012-09-30 C++ TCP C++ x86-64 Linux TCP one loop per thread Linux native muduo C++ IT 5 C++ muduo 2 C++ C++ Primer 4 W. Richard Stevens UNIX Sockets API echo Sockets

More information

ebook65-20

ebook65-20 2 0 H T T P C G I We b C G I We b H T M L C G I H T M L C G I 20.1 HTTP 17 We b N e t s c a p e Internet Explorer We b A p a c h e I I S C G I H T T P HTTP 1.0 HTTP 1.1 I n t e r n e t I n t e r n e t

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

untitled

untitled 年度 路 GSN IPv6 年 749 750 說 (Dual Stack) 路 IPv4 IPv6 路 (DNS/WWW Server) 路 CISCO 路 例來 說 列 令 (DNS/WWW Server) FreeBSD 來說 BIND apache Server 來 DNS WWW Server 了 料 數 了 IPv4 路 IPv6 更 利 751 752 錄 錄 錄 錄 論 路 說 路

More information

本文由筱驀釹贡献

本文由筱驀釹贡献 本 文 由 筱 驀 釹 贡 献 ppt 文 档 可 能 在 WAP 端 浏 览 体 验 不 佳 建 议 您 优 先 选 择 TXT, 或 下 载 源 文 件 到 本 机 查 看 Linux 操 作 系 统 Linux 操 作 系 统 第 一 部 分 介 绍 与 安 装 Linux 的 由 来 : Linux 的 由 来 : 的 由 来 Linus Torvalds 1.Linux 的 版 本 1.Linux

More information

ARIS Design Platform

ARIS Design Platform ARIS - 20045 ARIS 1 ARIS 6.................................................................4 2 ARIS 6.....................................................5 2.1 ARIS.......................................................................6

More information

0 配置 Host MIB 设备 V ( 简体版 ) 0 Update: 2016/1/30

0 配置 Host MIB 设备 V ( 简体版 ) 0 Update: 2016/1/30 0 配置 Host MIB 设备 V 1.1.2 ( 简体版 ) 0 Update: 2016/1/30 前言 N-Reporter 支持 Host Resource MIB 监控主机 (Host) 状态, 本文件描述 N-Reporter 用户如何配置 Host MIB 设备 文件章节如下 : 1. 配置 Windows Server 2003... 2 1-1.Windows Server 2003

More information

华恒家庭网关方案

华恒家庭网关方案 LINUX V1.5 1 2 1 2 LINUX WINDOWS PC VC LINUX WINDOWS LINUX 90% GUI LINUX C 3 REDHAT 9 LINUX PC TFTP/NFS http://www.hhcn.com/chinese/embedlinux-res.html minicom NFS mount C HHARM9-EDU 1 LINUX HHARM9-EDU

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

第一章 Linux與網路資源

第一章 Linux與網路資源 1 28 Proxy Server 28-1 Proxy proxy Server rpm qa grep squid Linux Proxy Proxy Proxy Proxy Proxy Request Proxy Proxy Proxy RedHat Linux Fedora #mount /mnt/cdrom squid squid Proxy #cd /mnt/cdrom/redhat/rpms

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

目录 1 IPv6 快速转发 IPv6 快速转发配置命令 display ipv6 fast-forwarding aging-time display ipv6 fast-forwarding cache ipv6 fas

目录 1 IPv6 快速转发 IPv6 快速转发配置命令 display ipv6 fast-forwarding aging-time display ipv6 fast-forwarding cache ipv6 fas 目录 1 IPv6 快速转发 1-1 1.1 IPv6 快速转发配置命令 1-1 1.1.1 display ipv6 fast-forwarding aging-time 1-1 1.1.2 display ipv6 fast-forwarding cache 1-1 1.1.3 ipv6 fast-forwarding aging-time 1-3 1.1.4 ipv6 fast-forwarding

More information

ebook62-1

ebook62-1 1 Red Hat Linux R e d Hat Linux L i n u x X Wi n d o w Red Hat L i n u x 1.1 Red Hat Linux Red Hat 16 M 120 M 3. 5 Intel 386 C D - R O M C D - R O M We b / 1.1.1 L i n u x L i n u 4 Primary Partition Extended

More information

Basic System Administration

Basic System Administration 基 本 系 统 管 理 ESX Server 3.5 ESX Server 3i 版 本 3.5 Virtual Center 2.5 基 本 管 理 指 南 基 本 管 理 指 南 修 订 时 间 :20080410 项 目 :VI-CHS-Q208-490 我 们 的 网 站 提 供 最 新 的 技 术 文 档, 网 址 为 : http://www.vmware.com/cn/support/

More information

EMC® VNX® Series VNX8000™ Block 安装指南

EMC® VNX® Series VNX8000™ Block 安装指南 EMC VNX Series VNX8000 Block 安 装 指 南 300-999-791 REV 05 版 权 所 有 2014-2015 EMC Corporation 保 留 所 有 权 利 中 国 印 刷 发 布 日 期 : 2015 年 2 月 EMC 确 信 本 出 版 物 在 发 布 之 日 内 容 准 确 无 误 本 出 版 物 中 的 信 息 可 随 时 更 改 而 不 另

More information

C6_ppt.PDF

C6_ppt.PDF C01-202 1 2 - (Masquerade) (Replay) (Message Modification) (Denial of Service) - ( ) (Eavesdropping) (Traffic Analysis) 8 1 2 7 3 6 5 4 3 - TCP SYN (SYN flood) Smurf Ping of Death LAND Attack Teardrop

More information

(CSR)...2 CA CA CA CA Base64 CA CA SSL

(CSR)...2 CA CA CA CA Base64 CA CA SSL 2005 6 17 Red Hat Linux 7.2 apache 1.3.20-16 IE 5.0 Apache1.3.20-16 www.cnca.net Guangdong Electronic Certification Authority ...1...1 (CSR)...2 CA...3 4.1...3 4.2...5...5 5.1...5 5.2 CA...6 5.2.1 CA...6

More information

ebook

ebook 2 2 P D C S a m b a Windows NT P D C S a m b a ( 2. 0 ) Windows NT P D C ( S a m b a - n t d o m @ S a m b a. o rg ) U N I X P D C U N I X Samba PDC N I S i n t e l S p a r c S a m b a Windows NT PDC 21

More information

Linux操作系统

Linux操作系统 实验四 : 代理服务器 一 实验目的 1 理解正向代理服务器和反向代理服务器的工作原理; 2 掌握搭建反向代理服务器的方法; 3 掌握使用方向代理实现负载均衡 二 实验学时 2 学时 三 实验类型 创新性 四 实验需求 1 硬件每人配备计算机 1 台, 不低于双核 CPU 8G 内存 500GB 硬盘 2 软件 Windows 操作系统, 安装 VirtualBox 虚拟化软件, 安装 Putty

More information

關於本書 Part 3 CSS XHTML Ajax Part 4 HTML 5 API JavaScript HTML 5 API Canvas API ( ) Video/Audio API ( ) Drag and Drop API ( ) Geolocation API ( ) Part 5

關於本書 Part 3 CSS XHTML Ajax Part 4 HTML 5 API JavaScript HTML 5 API Canvas API ( ) Video/Audio API ( ) Drag and Drop API ( ) Geolocation API ( ) Part 5 網頁程式設計 HTML JavaScript CSS HTML JavaScript CSS HTML 5 JavaScript JavaScript HTML 5 API CSS CSS Part 1 HTML HTML 5 API HTML 5 Apple QuickTime Adobe Flash RealPlayer Ajax XMLHttpRequest HTML 4.01 HTML 5

More information