10

这个问题我肯定已经回答了,但老实说,我不知道如何通过搜索来提问。所以请原谅我缺乏知识,因为这是我在计算机科学领域真正缺乏知识的唯一地方之一。

我如何/是否有可能在托管服务器上运行 C 程序。我可以去哪里http://mysite.com/myspecialcprogram.c它会运行?或者更好的是,我可以在多大程度上使用像 C 这样的高级语言来为我的服务器编程?

还应该注意的是,我有一个运行 apache 的专用 Linux 机器。所以我有完全的访问权限。

4

2 回答 2

9

正如@paddy 已经提到的,一种方法是将其作为 CGI 运行。但是,程序会运行缓慢,启动时间长。

另一种方法是使用FastCGI运行它。它会更快,您只需要对代码进行一些修改即可使其正常工作,例如 CGI:

#include <stdio.h>
#include <time.h>

int main(int argc, char **argv)
{
    time_t timer;
    char time_str[25];
    struct tm* tm_info;

    time(&timer);
    tm_info = localtime(&timer);
    strftime(time_str, sizeof(time_str), "%Y/%m/%d %H:%M:%S", tm_info);

    /* Without this line, you will get 500 error */
    puts("Content-type: text/html\n");

    puts("<!DOCTYPE html>");
    puts("<head>");
    puts("  <meta charset=\"utf-8\">");
    puts("</head>");
    puts("<body>");
    puts("   <h3>Hello world!</h3>");
    printf("   <p>%s</p>\n", time_str);
    puts("</body>");
    puts("</html>");

    return 0;
}

编译它:

$ # 'cgi-bin' path may be different than yours
$ sudo gcc example.c -o /usr/lib/cgi-bin/example
$ wget -q -O - http://localhost/cgi-bin/example
<!DOCTYPE html>
<head>
  <meta charset="utf-8">
</head>
<body>
   <h3>Hello world!</h3>
   <p>2013/01/30 08:07:29</p>
</body>
</html>
$ 

使用 FastCGI:

#include <fcgi_stdio.h>
#include <stdio.h>
#include <time.h>

int main(int argc, char **argv)
{
    time_t timer;
    char time_str[25];
    struct tm* tm_info;

    while(FCGI_Accept() >= 0)   {
        time(&timer);
        tm_info = localtime(&timer);
        strftime(time_str, sizeof(time_str), "%Y/%m/%d %H:%M:%S", tm_info);

        /* Without this line, you will get 500 error */
        puts("Content-type: text/html\n");

        puts("<!DOCTYPE html>");
        puts("<head>");
        puts("  <meta charset=\"utf-8\">");
        puts("</head>");
        puts("<body>");
        puts("   <h3>Hello world!</h3>");
        printf("   <p>%s</p>\n", time_str);
        puts("</body>");
        puts("</html>");
    }

    return 0;
}

编译它:

$ # Install the development fastcgi package, I'm running Debian
$ sudo apt-get install libfcgi-dev 
 ...
$ 
$ # Install Apache mod_fcgid (not mod_fastcgi)
$ sudo apt-get install libapache2-mod-fcgid
 ...
$ 
$ # Compile the fastcgi version with .fcgi extension
$ sudo gcc example.c -lfcgi -o /usr/lib/cgi-bin/example.fcgi
$ # Restart Apache
$ sudo /etc/init.d/apache2 restart
Restarting web server: apache2 ... waiting .
$
$ # You will notice how fast it is
$ wget -q -O - http://localhost/cgi-bin/example.fcgi
<!DOCTYPE html>
<head>
  <meta charset="utf-8">
</head>
<body>
   <h3>Hello world!</h3>
   <p>2013/01/30 08:15:23</p>
</body>
</html>
$
$ # Our fastcgi script process
$ ps aux | grep \.fcgi
www-data  2552  0.0  0.1   1900   668 ?        S    08:15   0:00 /usr/lib/cgi-bin/example.fcgi
$ 

在 Poth 程序中,有:

puts("Content-type: text/html\n");

这将打印:

Content-type: text/html[new line]
[new line]

没有它,Apache 将抛出 500 服务器内部错误。

于 2013-01-30T05:22:34.350 回答
7

您需要编译您的 C 程序。Linux 随 GNU C 编译器 (gcc) 一起分发。在紧要关头,您可以使用命令行编译程序:

gcc -o myprog myprog.c

这意味着您需要 shell 访问权限。在评论中,人们建议使用该system函数通过 PHP 运行 shell 命令。出于安全原因,您的 PHP 安装可能已禁用此命令。

您真的应该询问您的主机是否可以通过 SSH 提供 shell 访问。

如果您的主机可以这样做,您可以运行终端会话(如果您在本地有 Windows,则使用 PuTTY,或者在大多数其他系统上使用命令行 ssh)。

所以你上传你的文件(通过 FTP、SCP 或其他方式),然后编译它。到目前为止一切都很好。

现在你需要你的网络服务器来让它运行。通常,您无法从 Web 服务器的文档根目录执行二进制文件。您需要将二进制文件放入配置的cgi-bin目录中。这通常位于文档根目录的上一级目录。

在我的系统上,我的文件位于:

/srv/httpd/htdocs

我的 cgi-bin 在:

/srv/httpd/cgi-bin

通常,cgi-bin 目录将使用别名,以便它出现在您的文档根目录中。所以你可以通过http://mysite.com/cgi-bin/myprog. 您确实需要在您的网络服务器上启用 CGI。在 Linux 上,您的 Web 服务器可能是 Apache。

此外,服务器需要权限才能运行该文件。这意味着适当用户的执行权限。紧要关头:

chmod 0770 /srv/httpd/cgi-bin/myprog
chown apache:apache /srv/httpd/cgi-bin/myprog

示例适用于我的特定系统。

这一切都假设您想要运行您的程序并通过 HTTP 获取输出。如果不是这种情况,只需拥有 shell 访问权限就足够了。如果您不理解这个答案,那么我建议您认真阅读有关 Linux、网络和 HTTP 的内容。

这是一个让 CGI 工作的 Apache 指南:http ://httpd.apache.org/docs/2.2/howto/cgi.html

于 2013-01-30T03:56:37.543 回答