如何在谷歌计算引擎上安装webuzo?以及如何访问它,我已经完成创建规则防火墙,而且我已经完成了观看本教程https://www.youtube.com/watch?v=i7icVRMDXwY,但同样的错误,我的问题总是得到反响“无法达到”
答案 0 :(得分:0)
安装脚本最后会显示一个IP地址,但这是云内部地址。在VM创建期间,您需要使用the static IP address you reserved。如果这能解决你的问题,那很好。
然而,在我自己试图帮助你的过程中,我花了一点时间阅读the install script并且对我看到的内容没有留下深刻印象;关于我的两件非常快速的例子:
# Disable selinux
if [ -f /etc/selinux/config ] ; then
mv /etc/selinux/config /etc/selinux/config_
echo "SELINUX=disabled" >> /etc/selinux/config
echo "SELINUXTYPE=targeted" >> /etc/selinux/config
echo "SETLOCALDEFS=0" >> /etc/selinux/config
fi
和
#----------------------------------
# GET the IP
#----------------------------------
wget $FILEREPO/ip.php >> $LOG 2>&1
ip=$(cat ip.php)
结果,我自己不习惯使用Webuzo;相反,我建议使用Cloud Launcher选项,例如these blog/CMS options。 (作为额外的好处,您还可以避免支付the license fee Webuzo requires。)
你到底想要达到什么目的?如果您告诉我们您最终希望了解的内容,我们可以为您提供一些好的建议。