So the VE will have 40GB space.
If you want 60 GB then
vzctl set VEID --save --diskspace 60G
and so on...
IndianVPS.com
If you are using WHM, from WHM you can turn off the SSL redirtection as follows:
SSL redirection can be found in WHM >> Tweak Settings >> Redirection
Always redirect to SSL [?] On Off = off
If you want to turn off the SSL login URL for the WHM on the server you can simply do it from command line.
You can follow following steps for this:
Login to server as root
Open the file: /var/cpanel/cpanel.config
root@server [~]# vi /var/cpanel/cpanel.config
Check for the line:
requiressl=1
And reset it to
requiressl=0root@server [~]# /etc/init.d/cpanel restart
Fantastico is not installed at the default location /usr/local/cpanel/3rdparty/fantastico. Either move the Fantastico directory from it's current location to /usr/local/cpanel/3rdparty/fantastico OR enable ioncube loaders in WHM -> Tweak settings. |
/scripts/makecpphp
# vzctl set ${VEID} --save --offline_management yes --offline_service vzpp
When you want to check what rules are in iptables, use –list option as shown below.
# iptables --list
# iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
The above output shows chain headers. As you see, there are no rules in it.
When there is a rule to disable ping reply, you have the iptables list output as like the following. You can see the rule in the OUTPUT chain.
# iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
DROP icmp -- anywhere anywhere icmp echo-request
When you want to delete all the rules, use the flush option as shown below.
# iptables --flush
After doing this, your iptables will become empty, and the “iptables –list” output will look like what is shown in the example 1.
You can also delete (flush) a particular iptable chain by giving the chain name as an argument as shown below.
# iptables --flush OUTPUT