Proxmox Master OS

Tomsauy

New Member
Jul 17, 2008
3
0
1
Hi,

I'd like to know if it is possible to use the primary OS (the one use by Proxmox) to setup a webserver (Apache + PHP + Mysql) for example.
As I understand it is base on Debian Etch so I thinks it's possible but I'd like to be sure :)

Thanks in advanced.

PS: Sorry for my English
 
Hi,

I'd like to know if it is possible to use the primary OS (the one use by Proxmox) to setup a webserver (Apache + PHP + Mysql) for example.
As I understand it is base on Debian Etch so I thinks it's possible but I'd like to be sure :)

Thanks in advanced.

PS: Sorry for my English

not recommended (apache2 is already used and configured for the web mangement) - what do you wanna do? I suggest you run your applications as openvz appliance.
 
Thanks for this answer.

It's because I have a Dedicated Server host by OVH, and they give me only 2 external IP addresses.
One is use for Primary OS and the second one can be use for Virtual Server.
And I would like to have 2 distinct Web Server, that's why I thought to setup one Virtual Server with Proxmox and a second one on Proxmox OS.

I hope I am clear. :)

If you have a better solution... :confused:
 
Thanks for this answer.

It's because I have a Dedicated Server host by OVH, and they give me only 2 external IP addresses.
One is use for Primary OS and the second one can be use for Virtual Server.
And I would like to have 2 distinct Web Server, that's why I thought to setup one Virtual Server with Proxmox and a second one on Proxmox OS.

I hope I am clear. :)

If you have a better solution... :confused:

maybe such a setup?
http://www.debian-administration.org/articles/412

follow these steps using the OpenVZ debian standard template on Proxmox VE.
 
Thanks for this article but I can't have another Web Server on VPS. The one install on can't be modify that's why I want to install a second Web Server on Master OS.
 
I think that...

Thanks for this article but I can't have another Web Server on VPS. The one install on can't be modify that's why I want to install a second Web Server on Master OS.


Use the 2 addresses on the master os and with iptables redirect the
needed ports/IPS into the 2 openvz/kvm servers.

Hold only the 22 or whatever port you need for ssh and use
the web interface through the wwh tunnel like so:

ssh -L 10443:127.0.0.1:443 me@mybigserver.os.com

then connect the browser(after ssh) to https://localhost:10443.

The other ips are redirected into the two virtuals that have internal lan
ipaddresses like 192.168.0.1 and 192.168.0.2

Simply: give the 2 addresses to the external interface and DNAT the
destinations/ports

iptables -I PREROUTING -t nat -p tcp --dport 443 -d your.ip.public.addr -j DNAT --to-addr 192.168.0.1:443
and so on

hope this helps

Diaolin