开发者

Deploying a Custom Program to a Hosting Service

开发者 https://www.devze.com 2022-12-20 19:55 出处:网络
I am a total newbie in servers/hosting etc, although I have some experience in programming in C,Java,etc. 开发者_C百科So excuse me if the question is \'absurd\'.

I am a total newbie in servers/hosting etc, although I have some experience in programming in C,Java,etc. 开发者_C百科So excuse me if the question is 'absurd'.

I recently bought service from a hosting site,namely this(hostmds). I have some code I've written in C++ and I want to run it in the hosting site. So my question is:

  • Is this possible, or will I have to rewrite everything in a new language?
  • What should my approach be?

Edit: I have a Shared-Hosting account.


You will have to get a "virtual private server" account from your host in order to do this. This will enable you to compile your program on your host machine and run it essentially as if it were a separate machine under your control.

This means you will also be responsible for maintaining your own HTTP server program (such as Apache, if running on a Linux/Unix host), and your own database servers and other support.

If you have a "shared hosting" account (the most common low cost option) with SSH support, you may be able to compile your program, and even run it, but you will be subject to the whims (capricious or otherwise) of the administrators of your system (that it, you may find that libraries you need are removed or moved around)


What type of hosting is this? What kind of application is this, is it a daemon?

Depending on the amount of access rights you have, you can run the code in the cgi-bin folder or through the shell of the server.

Depending on the OS/compiler you've used to write your code in you might have to modify some things so that it'll work on the target OS. You should probably add some more details. :)


Many hosting services provide CGI/FastCGI/SCGI that can be used for running C++ webapps. However, it depends on your host whether you can actually do this, as it may be difficult to get binaries built on some other system to run on the web hosting service (if you even can upload them in the first place).

On shell services and virtual servers you can also run daemons (that directly listen to a port), but especially on shell services you cannot listen on low ports (0..1024), for security reasons.

Notice that the cheapest hosting packages generally only allow PHP at most, so you will need something more expensive for more access.

It is best to ask the hosting provider for further information, as these things wildly differ from host to another.

0

精彩评论

暂无评论...
验证码 换一张
取 消