mirror of https://github.com/apache/cloudstack.git
add sertupxenserver.sh back
This commit is contained in:
parent
2b6b9e96a0
commit
21fffb09fa
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/bash
|
||||
|
||||
#set -x
|
||||
|
||||
usage() {
|
||||
printf "Usage: \n" $(basename $0)
|
||||
|
||||
}
|
||||
|
||||
# avoid disk full
|
||||
mv /etc/cron.daily/logrotate /etc/cron.hourly 2>&1
|
||||
|
||||
# more aio thread
|
||||
echo 1048576 >/proc/sys/fs/aio-max-nr
|
||||
|
||||
#set iptables
|
||||
iptables -D RH-Firewall-1-INPUT -p tcp -m tcp --dport 5900:6099 -j ACCEPT 2>&1
|
||||
iptables -I RH-Firewall-1-INPUT -p tcp -m tcp --dport 5900:6099 -j ACCEPT 2>&1
|
||||
|
||||
iptables-save > /etc/sysconfig/iptables
|
||||
|
||||
# listen vnc on all interface
|
||||
sed -i 's/127\.0\.0\.1/0\.0\.0\.0/' /opt/xensource/libexec/vncterm-wrapper 2>&1
|
||||
sed -i 's/127\.0\.0\.1/0\.0\.0\.0/' /opt/xensource/libexec/qemu-dm-wrapper 2>&1
|
||||
|
||||
# disable the default link local on xenserver
|
||||
sed -i /NOZEROCONF/d /etc/sysconfig/network
|
||||
echo "NOZEROCONF=yes" >> /etc/sysconfig/network
|
||||
|
||||
|
||||
echo "success"
|
||||
|
||||
Loading…
Reference in New Issue