嵌入式web boa配置流程详解

boa配置流程详解

  • 前期准备
      • boa介绍
      • 操作目的
      • 下载boa
  • 配置流程
      • 1.解压boa服务器
      • 2.配置Makefile
      • 3.编译boa服务器
      • 4.修改boa配置文件
      • 5.增加权限并编译cgi
      • 6.测试demo
      • 7.错误示例
  • 附录A history
  • 附录B boa.conf

前期准备

boa介绍

Boa服务器是一个小巧高效的web服务器,是一个运行于unix或linux下的,支持CGI的、适合于嵌入式系统的单任务的http服务器,源代码开放、性能高。Boa是一种非常小巧的Web服务器,其可执行代码只有大约60KB左右。作为一种单任务Web服务器,Boa只能依次完成用户的请求,而不会fork出新的进程来处理并发连接请求。但Boa支持CGI,能够为CGI程序fork出一个进程来执行。Boa的设计目标是速度和安全。

操作目的

本次流程目的是在飞凌开发板部署配置boa服务器,平台为aarch64,通过简单逻辑登录页面来验证流程是否成功,并将流程中的报错一并托出。

下载boa

boa官网地址:www.boa.org
记得不要选0.94.14rc21,这个解压后src目录下没有configure文件,选择0.94.13的here下载。下载的格式是boa-0.94.13.tar.gz
请添加图片描述

配置流程

首先先连接好目标ip将boa的压缩包传进去,例:如果使用ubuntu的小伙伴那就使用xftp或者MobaXterm或者FileZilla Client将boa-0.94.13.tar.gz传入Ubuntu。

(本文会将history附在最后,暂记附录A)

1.解压boa服务器

我们假设你已经进入到Ubuntu的home路径下,开始解压boa
sudo tar zxvf boa-0.94.13.tar.gz
cd boa-0.94.13
sudo apt-get install bison flex
cd src
./configure 生成Makefile

2.配置Makefile

这里需要注意的是,假使你的目标是X86平台,可以跳过步骤2,如果你的目标平台是aarch64 arm等,需要改动makefile

查看平台架构:uname -m
文件显示行号:按键Esc,输入英文:set nu 或者:set number

makefile改动CC CPP两点,如图示例。
执行
sudo vi Makefile
请添加图片描述
小伙伴们注意哈,aarch64-linux-gnu-gcc是tab补全的,千万别自己傻傻敲哈。

3.编译boa服务器

目前是在src目录下,即当前路径(以我为例)为/home/graysen/boa-0.94.13/src

3.1 编辑defines.h
sudo vi defines.h
请添加图片描述
这里是web服务器根目录,也就是web,cgi的存放位置。

3.2 编辑boa.c

sudo vi boa.c
请添加图片描述
3.3 编辑compat.h

sudo vi compat.h

请添加图片描述
3.4 编辑log.c

sudo vi log.c

请添加图片描述
这里需要注意下,注释log.c的作用是决定是否显示启动boa服务器的打印输出,比如我注释了,在启动boa时会在shell中显示详细执行情况;如果不注释,启动完boa无任何输出(无论注释或者不注释结果都会显示在/boa/log目录下)

编辑修改文件工作已经完成
当前在src目录下

执行
sudo make

开始编译


编译完成后,开始安装boa服务器
在src目录下
sudo mkdir -p /boa /boa/www /boa/cgi-bin /boa/log
请添加图片描述
cd …
回到boa-0.94.13目录,将编译后的文件copy到boa服务器位置
执行
sudo cp boa.conf /boa
sudo cp src/boa /boa
sudo cp src/boa_indexer /boa
sudo cp /etc/mime.types /boa

请添加图片描述

4.修改boa配置文件

我们将boa服务器放在了根目录下
cd /boa
sudo vim boa.conf

请添加图片描述
请添加图片描述
#ErrorLog /var/log/boa/error_log是定向输出到这的错误日志,如果您不想记录错误,请设置为 /dev/null。
请添加图片描述
请添加图片描述
DocumentRoot /boa/www是你的web的目录,存放web的地方
请添加图片描述
请添加图片描述
请添加图片描述
ScriptAlias /cgi-bin/ /boa/cgi-bin/是存放.c .cgi文件的地方,当然可以指定任何地方,可以在www下建立cgi-bin进行存放,那么这里就需要修改为:
ScriptAlias /cgi-bin/ /boa/www/cgi-bin/
请添加图片描述
里面字段的具体含义可以参考官网解释http://www.boa.org/documentation/boa-2.html#ss2.3

(本文会将boa.conf全文放置最后,暂且记附录B)

5.增加权限并编译cgi

修改boa权限

cd /boa
sudo chmod 777 *

编写简单html demo存放至/boa/www下

<html>
<head>
<title>CGI login</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head> 
<body>  
<form name="login" action="../cgi-bin/login.cgi">name:<input type="text" name="name" />
<br/>password:<input type="password" name="pwd" /> 
<br/>true:<input type="submit" value="login" />
</form>
</body>
</html>

编写简单c demo编译后存放至/boa/cgi-bin下

#include<stdio.h> 
#include<stdlib.h>   
int main() 
{   
    char *date;   
    char name[50],pwd[20];   
    printf("content-type:text/html;charset=utf-8\n\n");  
    printf("<TITLE>login ret</TITLE>");
    printf("<H3>login ret</h3>");    
    date=getenv("QUERY_STRING");  
    if(date==NULL)    
        printf("<p>err</p>");  
    else
    {    
        sscanf(date,"name=%[^&]&pwd=%s",name,pwd);  
        printf("<p>name=%s</p>",name);   
        printf("<p>pwd=%s</p>",pwd);   
        printf("%s",date);  
    }   
    return 0; 
}
printf("content-type:text/html;charset=utf-8\n\n");  如果你自己C文件这句话一定要加上

注意:
如果你是X86平台运行,请使用gcc编译
如果你是aarch64 arm平台运行,请使用aarch64-linux-gnu-gcc或者arm-linux-gnueabi-gcc编译

以我为例,使用aarch64-linux-gnu-gcc编译

请添加图片描述
将我的示例代码login.cgi存放至/boa/cgi-bin下

sudo cp login.cgi /boa/cgi-bin
并增加权限
(当前我已经切换到/boa/cgi-bin目录下)
sudo chmod 777 *(或者sudo chmod 777 login.cgi)

6.测试demo

在/boa目录下会看到boa
执行
./boa
启动服务器

打开浏览器输入 (你的ubuntu ip或者开发板ip)(boa.conf设置的端口)
以我为例:192.168.31.201:8080
请添加图片描述
成功显示页面,并输入账号密码

请添加图片描述
成功跳转到/cgi-bin/login.cgi,显示正确

7.错误示例

7.1 -bash: ./boa: cannot execute binary file: Exec format error
出现-bash: ./boa: cannot execute binary file: Exec format error错误可能是因为你的交叉编译出问题了,有可能是你的目标环境是aarch64,但是你是用gcc编译的C文件,请尝试修改makefile,使用正确的编译器编译,遵循makefile-编译C-目标环境一致。

7.2Could not chdir to “/etc/boa”: aborting
关于该目录的定义在 defines.h中,可能你的boa服务器目录没有配置或者配置路径出错,按照我们示例,是将#define SERVER_ROOT修改为 “/boa”

7.3 502 Bad GatewayThe CGI was not CGI/1.1 compliant

出现
502 Bad Gateway
The CGI was not CGI/1.1 compliant
cgi_header: unable to find LFLF

原因有以下几点:
1.可能是网址打错了(路径是否和配置文件对应)
2.配置有问题
3.权限没给足 chmod 777 test.cgi
4.代码本身有问题(先测测 cgi-test.cgi)
5.c代码使用错误的编译器生成了cgi
请添加图片描述
6.试试关闭两端防火墙,关闭火绒等

依次检查完无误后如果还是不行,可以尝试重新配置并移植boa

7.4 GET http://192.168.77.149:888/favicon.ico

在网络调试抓捕中出现GET http://192.168.77.149:888/favicon.ico
请添加图片描述

显示你没有favicon.ico文件,在/boa/www下传入favicon.ico文件即可

favicon.ico一般用于作为缩略的网站标志,它显示在浏览器的地址栏、浏览器标签上或者在收藏夹上,是展示网站个性的缩略logo标志。

你可以使用在线转换网页来将任意图片转换为favicon.ico


附录A history

cd boa-0.94.13/
ls
sudo apt-get install bison flex
cd src/
sudo ./configure 
ls
sudo vi defines.h 
sudo vi boa.c
sudo vi compat.h 
sudo make
sudo mkdir -p /boa /boa/www /boa/cgi-bin /boa/log
sudo cp boa.conf /boa
sudo cp src/boa /boa
sudo cp src/boa_indexer /boa
sudo cp /etc/mime.types /boa
sudo cp test.html /boa/www/
sudo cp test.c /boa/cgi-bin/
sudo ufw disable

附录B boa.conf

# Boa v0.94 configuration file
# File format has not changed from 0.93
# File format has changed little from 0.92
# version changes are noted in the comments
#
# The Boa configuration file is parsed with a lex/yacc or flex/bison
# generated parser.  If it reports an error, the line number will be
# provided; it should be easy to spot.  The syntax of each of these
# rules is very simple, and they can occur in any order.  Where possible
# these directives mimic those of NCSA httpd 1.3; I saw no reason to 
# introduce gratuitous differences.

# $Id: boa.conf,v 1.25 2002/03/22 04:33:09 jnelson Exp $

# The "ServerRoot" is not in this configuration file.  It can be compiled
# into the server (see defines.h) or specified on the command line with
# the -c option, for example:
#
# boa -c /usr/local/boa


# Port: The port Boa runs on.  The default port for http servers is 80.
# If it is less than 1024, the server must be started as root.

#Port 80
Port 8080

# Listen: the Internet address to bind(2) to.  If you leave it out,
# it takes the behavior before 0.93.17.2, which is to bind to all
# addresses (INADDR_ANY).  You only get one "Listen" directive,
# if you want service on multiple IP addresses, you have three choices:
#    1. Run boa without a "Listen" directive
#       a. All addresses are treated the same; makes sense if the addresses
#          are localhost, ppp, and eth0.
#       b. Use the VirtualHost directive below to point requests to different
#          files.  Should be good for a very large number of addresses (web
#          hosting clients).
#    2. Run one copy of boa per IP address, each has its own configuration
#       with a "Listen" directive.  No big deal up to a few tens of addresses.
#       Nice separation between clients.
# The name you provide gets run through inet_aton(3), so you have to use dotted
# quad notation.  This configuration is too important to trust some DNS.

#Listen 192.68.0.5

#  User: The name or UID the server should run as.
# Group: The group name or GID the server should run as.

User nobody
#Group nogroup
Group nobody

# ServerAdmin: The email address where server problems should be sent.
# Note: this is not currently used, except as an environment variable
# for CGIs.

#ServerAdmin root@localhost

# ErrorLog: The location of the error log file. If this does not start
# with /, it is considered relative to the server root.
# Set to /dev/null if you don't want errors logged.
# If unset, defaults to /dev/stderr

#ErrorLog /var/log/boa/error_log
ErrorLog /boa/log/error_log
# Please NOTE: Sending the logs to a pipe ('|'), as shown below,
#  is somewhat experimental and might fail under heavy load.
# "Usual libc implementations of printf will stall the whole
#  process if the receiving end of a pipe stops reading."
#ErrorLog "|/usr/sbin/cronolog --symlink=/var/log/boa/error_log /var/log/boa/error-%Y%m%d.log"

# AccessLog: The location of the access log file. If this does not
# start with /, it is considered relative to the server root.
# Comment out or set to /dev/null (less effective) to disable 
# Access logging.

#AccessLog /var/log/boa/access_log
AccessLog /boa/log/access_log
# Please NOTE: Sending the logs to a pipe ('|'), as shown below,
#  is somewhat experimental and might fail under heavy load.
# "Usual libc implementations of printf will stall the whole
#  process if the receiving end of a pipe stops reading."
#AccessLog  "|/usr/sbin/cronolog --symlink=/var/log/boa/access_log /var/log/boa/access-%Y%m%d.log"

# UseLocaltime: Logical switch.  Uncomment to use localtime 
# instead of UTC time
#UseLocaltime

# VerboseCGILogs: this is just a logical switch.
#  It simply notes the start and stop times of cgis in the error log
# Comment out to disable.

#VerboseCGILogs

# ServerName: the name of this server that should be sent back to 
# clients if different than that returned by gethostname + gethostbyname 

#ServerName www.your.org.here

# VirtualHost: a logical switch.
# Comment out to disable.
# Given DocumentRoot /var/www, requests on interface 'A' or IP 'IP-A'
# become /var/www/IP-A.
# Example: http://localhost/ becomes /var/www/127.0.0.1
#
# Not used until version 0.93.17.2.  This "feature" also breaks commonlog
# output rules, it prepends the interface number to each access_log line.
# You are expected to fix that problem with a postprocessing script.

#VirtualHost 

# DocumentRoot: The root directory of the HTML documents.
# Comment out to disable server non user files.

#DocumentRoot /var/www
DocumentRoot /boa/www
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is recieved.

UserDir public_html

# DirectoryIndex: Name of the file to use as a pre-written HTML
# directory index.  Please MAKE AND USE THESE FILES.  On the
# fly creation of directory indexes can be _slow_.
# Comment out to always use DirectoryMaker

DirectoryIndex index.html

# DirectoryMaker: Name of program used to create a directory listing.
# Comment out to disable directory listings.  If both this and
# DirectoryIndex are commented out, accessing a directory will give
# an error (though accessing files in the directory are still ok).

#DirectoryMaker /usr/lib/boa/boa_indexer
DirectoryMaker /boa/boa_indexer
# DirectoryCache: If DirectoryIndex doesn't exist, and DirectoryMaker
# has been commented out, the the on-the-fly indexing of Boa can be used
# to generate indexes of directories. Be warned that the output is 
# extremely minimal and can cause delays when slow disks are used.
# Note: The DirectoryCache must be writable by the same user/group that 
# Boa runs as.

# DirectoryCache /var/spool/boa/dircache

# KeepAliveMax: Number of KeepAlive requests to allow per connection
# Comment out, or set to 0 to disable keepalive processing

KeepAliveMax 1000

# KeepAliveTimeout: seconds to wait before keepalive connection times out

KeepAliveTimeout 10

# MimeTypes: This is the file that is used to generate mime type pairs
# and Content-Type fields for boa.
# Set to /dev/null if you do not want to load a mime types file.
# Do *not* comment out (better use AddType!)

#MimeTypes /etc/mime.types
MimeTypes /boa/mime.types
# DefaultType: MIME type used if the file extension is unknown, or there
# is no file extension.

DefaultType text/plain

# CGIPath: The value of the $PATH environment variable given to CGI progs.

CGIPath /bin:/usr/bin:/usr/local/bin

# SinglePostLimit: The maximum allowable number of bytes in 
# a single POST.  Default is normally 1MB.

# AddType: adds types without editing mime.types
# Example: AddType type extension [extension ...]

# Uncomment the next line if you want .cgi files to execute from anywhere
#AddType application/x-httpd-cgi cgi

# Redirect, Alias, and ScriptAlias all have the same semantics -- they
# match the beginning of a request and take appropriate action.  Use
# Redirect for other servers, Alias for the same server, and ScriptAlias
# to enable directories for script execution.

# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Example: Redirect /bar http://elsewhere/feh/bar

# Aliases: Aliases one path to another.
# Example: Alias /path1/bar /path2/foo

Alias /doc /usr/doc

# ScriptAlias: Maps a virtual path to a directory for serving scripts
# Example: ScriptAlias /htbin/ /www/htbin/

#ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
ScriptAlias /cgi-bin/ /boa/cgi-bin/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/114279.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

虹科示波器 | 汽车免拆检修 | 2012 款上汽大众帕萨特车 发动机偶尔无法起动

一、故障现象 一辆2012款上汽大众帕萨特车&#xff0c;搭载CFB发动机&#xff0c;累计行驶里程约为12万km。车主反映&#xff0c;将点火开关置于起动挡&#xff0c;偶尔只能听到“咔哒”一声&#xff0c;起动机没有反应&#xff0c;类似蓄电池亏电时起动发动机的现象。为此&…

优思学院|质量管理工作困难重重,为何仍有人乐此不疲?

有一位网友说道&#xff1a;质量管理工作困难重重&#xff0c;为何仍有人乐此不疲&#xff1f;我完全理解他的困惑&#xff0c;质量管理工作的确是个不容易的任务&#xff0c;充满挑战&#xff0c;需要不断的努力和耐心。尽管如此&#xff0c;很多人依然选择从事这个领域的工作…

学习c++的第二天

目录 数据类型 基本数据类型 typedef 声明 枚举类型 类型转换 变量类型 变量定义 变量声明 左值&#xff08;Lvalues&#xff09;和右值&#xff08;Rvalues&#xff09; 变量作用域 数据类型 基本数据类型 C 为程序员提供了种类丰富的内置数据类型和用户自定义的数…

uni-app 应对微信小程序最新隐私协议接口要求的处理方法

这里给大家分享我在网上总结出来的一些知识&#xff0c;希望对大家有所帮助 一&#xff0c;问题起因 最新在开发小程序的时候&#xff0c;调用微信小程序来获取用户信息的时候经常报错一个问题 fail api scope is not declared in the privacy agreement&#xff0c;api更具公告…

Windows Server 2008安装

1.典型 2.稍后安装操作系统 3.Microsoft Windows 4.尽量虚拟机名称也改一下&#xff0c;我忘记改了 5. 默认40G差不多了&#xff0c;不用修改了 6.直接点完成 7.配置处理器和镜像 8.中文简体 9.现在安装 10.第一个就行&#xff08;完全安装&#xff09; 11.我接受&#xff0c…

HarmonyOS数据管理与应用数据持久化(一)

一. 数据管理概述 功能介绍 数据管理为开发者提供数据存储、数据管理能力&#xff0c;比如联系人应用数据可以保存到数据库中&#xff0c;提供数据库的安全、可靠等管理机制。 数据存储&#xff1a;提供通用数据持久化能力&#xff0c;根据数据特点&#xff0c;分为用户首选项、…

设计模式_状态模式

状态模式 介绍 设计模式定义案例问题堆积在哪里解决办法状态模式一个对象 状态可以发生改变 不同的状态又有不同的行为逻辑游戏角色 加载不同的技能 每个技能有不同的&#xff1a;攻击逻辑 攻击范围 动作等等1 状态很多 2 每个状态有自己的属性和逻辑每种状态单独写一个类 角色…

银河麒麟x86版、银河麒麟arm版操作系统编译zlmediakit

脚本 # 安装依赖 gcc-c.x86_64 这个不加的话会有问题 sudo yum -y install gcc gcc-c libssl-dev libsdl-dev libavcodec-dev libavutil-dev ffmpeg git openssl-devel gcc-c.x86_64mkdir -p /home/zenglg cd /home/zenglg git clone --depth 1 https://gitee.com/xia-chu…

7.OsgEarth加载Obj模型

愿你出走半生,归来仍是少年&#xff01; 除了大面积的倾斜摄影的加载&#xff0c;同时还存在单个模型的加载。常用的obj模型作为单体在三维场景中的呈现。 原理类似于6.OsgEarth加载倾斜摄影-CSDN博客中的倾斜加载。 1.代码 通过osg读取文件作为节点添加到GeoTransform节点中&…

探索ChatGPT在学术写作中的应用与心得

随着人工智能的迅猛发展&#xff0c;ChatGPT作为一种强大的自然语言处理模型&#xff0c;逐渐在学术界引起了广泛的关注。本文将探讨ChatGPT在学术写作中的应用&#xff0c;并分享使用ChatGPT进行学术写作时的一些经验和心得。 01 — ChatGPT在学术写作中的应用 1.文献综述和…

Openssl数据安全传输平台019:外联接口类的封装以及动态库的制作 - Bug未解决,感觉不是代码的问题

文章目录 1 外联接口1.1 接口类的封装1.2 共享内存与配置文件 2 json格式配置文件的定义2.1 共享内存中存储的节点结构2.2 服务器端配置文件2.3 客户端配置文件2.4 改进配置文件 3 共享内存类修改4 将接口打包成库(静态/动态)4.1 相关的指令4.1.1 静态库4.1.2 动态库 4.2 外联接…

数据结构之树(图解)

文章目录 前言一、树是什么&#xff1f;二、树的特点三、树的相关概念四、树的表示方法&#xff08;孩子兄弟表示法&#xff09;总结 前言 在学习完线性结构&#xff0c;例如顺序表、链表、栈、队列后&#xff0c;我们要开始学习一个新的数据结构----树 一、树是什么&#xf…

安防视频监控平台EasyCVR服务器需要开启firewalld防火墙,该如何开放端口?

智能视频监控/视频云存储/集中存储/视频汇聚平台EasyCVR具备视频融合汇聚能力&#xff0c;作为安防视频监控综合管理平台&#xff0c;它支持多协议接入、多格式视频流分发&#xff0c;视频监控综合管理平台EasyCVR支持海量视频汇聚管理&#xff0c;可应用在多样化的场景上&…

ElasticSearch 批量插入漏数据

项目场景&#xff1a; 项目中需要把Mysql数据同步到ElasticSearch中 问题描述 数据传输过程中数据不时出现丢失的情况&#xff0c;偶尔会丢失一部分数据&#xff0c;本地测试也无法复现&#xff0c;后台程序也没有报错&#xff0c;一到正式环境就有问题,很崩溃 这里是批量操…

Collction的List方法,list特有方法,遍历方式,迭代器选择

[to] list特有方法 //插入指定元素//list.add(1,"ddd");//System.out.println(list);//[aaa, ddd, bbb, ccc]//这个表示在一索引的位置插入ddd//他会把原来一索引位置的元素往后移动一位在添加//删除指定元素//String remove list.remove(1);//System.out.println(…

云原生安全日志审计

记得添加&#xff0c;把配置文件挂载进去 - mountPath: /etc/kubernetes/auditname: audit-policyreadOnly: true.....- hostPath:path: /etc/kubernetes/audit/type: DirectoryOrCreatename: audit-policy/etc/kubernetes/manifests/kube-apiserver.yaml 具体配置文件如下 a…

查询平均提速 700%,奇安信基于 Apache Doris 升级日志安全分析系统

本文导读&#xff1a; 数智时代的到来使网络安全成为了不可忽视的重要领域。奇安信作为一家领先的网络安全解决方案领军者&#xff0c;致力于为企业提供先进全面的网络安全保护&#xff0c;其日志分析系统在网络安全中发挥着关键作用&#xff0c;通过对运行日志数据的深入分析…

Git复制代码

目录 一、常用下载代码 1.登录Git克隆SSH​编辑 2.新建文件然后右键点击Git Bash Here 3.git clone Paste 二. 本地下载 1.从本地进入页面 2.生成代码——>导入——>生成代码后下载 3.解压道相应位置 一、常用下载代码 1.登录Git克隆SSH 2.新建文件然后右键点击…

【JavaEE】cookie和session

cookie和session cookie什么是 cookieServlet 中使用 cookie相应的API Servlet 中使用 session 相应的 API代码示例: 实现用户登陆Cookie 和 Session 的区别总结 cookie 什么是 cookie cookie的数据从哪里来? 服务器返回给浏览器的 cookie的数据长什么样? cookie 中是键值对…

一文看懂MySQL 5.7和MySQL 8到底有哪些差异?

目录 ​编辑 引言 1、数据字典和系统表的变化 2、JSON支持的改进 3、新的数据类型 4、安全性增强 5、性能改进 6、InnoDB存储引擎的改进 结论 引言 MySQL作为最常用的开源关系型数据库管理系统之一&#xff0c;一直在不断发展和改进。随着时间的推移&#xff0c;MySQ…