Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4462660
  • 博文数量: 1148
  • 博客积分: 25453
  • 博客等级: 上将
  • 技术积分: 11949
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-06 21:14
文章分类

全部博文(1148)

文章存档

2012年(15)

2011年(1078)

2010年(58)

分类: 系统运维

2011-06-29 13:25:13

代码附件: hello.rar  

  1. #include <stdio.h>

  2. int main(void)
  3. {
  4.     printf("Content-Type:text/plain;charset=us-ascii\n\n");//\n\n是CGI中格式
  5.     printf("Hello World\n\n");
  6.     return 0;
  7. }
编译:
    $gcc hello.c -o hello.cgi

  $sudo cp hello.cgi /var/www/cgi-bin/


   #chmod u+x /var/www/cgi-bin/hello.cgi

开启服务器:
  1. root@yuweixian:/home/ywx/yu# boa
  2. root@yuweixian:/home/ywx/yu# [29/Jun/2011:05:24:01 +0000] boa: server version Boa/0.94.13
  3. [29/Jun/2011:05:24:01 +0000] boa: server built Jun 27 2011 at 20:38:57.
  4. [29/Jun/2011:05:24:01 +0000] boa: starting server pid=2307, port 80
  5. [29/Jun/2011:05:24:08 +0000] request from 192.168.244.128 "GET /favicon.ico HTTP/1.1" ("/var/www/favicon.ico"): document open: No such file or directory

在浏览器中输入









阅读(1991) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~