Parallels Plesk features a major enhancement to the user interface - Plesk Desktop. The new release is designed to increase the administrator, client, and user interface experience.
The demo can be experienced as an Admin, Client, Domain Owner or Mail User:
Demo Plesk as an AdministratorLogin: adminPassword: plesk
Demo Plesk as a ClientLogin: clientPassword: plesk
Demo Plesk as a Domain OwnerLogin: demo.parallels.comPassword: plesk
Demo Plesk as a Mail UserLogin: mailuser@demo.parallels.comPassword: plesk
Proceed to Linux/Unix Demo
Proceed to Windows Demo
2008-05-15
PLESK DEMO
2008-05-10
Plesk For Linux 创建站点以后不能浏览
Plesk For Linux上,当创建好一个站点的时候,浏览显示为这个服务器的默认站点页面,而不是新创建的这个站点。
这是因为,在Plesk For Linux上,默认是每900秒重新检测apache的配置,开站后并不是立刻重新加载新站点配置的。如果想缩短这个的周期,可以做如下的设置:
使用admin帐号登陆 https://ip:8443 管理地址,点击左侧的“服务器”,点击“服务器首选项”,找到“Apache 重启间隔”,将默认的900秒,修改为自己希望的时间。
注意:
1) 这个所谓的重新启动,实际上是graceful调用,不是真的停止服务的重新启动。
2) 检测周期如果改的太小,则会影响服务器的实际性能,建议120秒左右。
另外,如果您的apache参数配置有问题,则graceful调用会发现有错误而不能进行,也将导致新开的站点不生效。
例如,plesk使用的是linux自带的httpd程序,默认情况下所有模块都处于enable状态。
这些模块如果有的不能正常工作,也将导致apache重新启动失败,导致新开的站点不能浏览。
这种情况下,请查看/var/log/httpd/error_log来确认是什么原因导致apache不能启动
From http://www.parallels.com.cn/support.php?x=&mod_id=2&root=103&id=257
Linux的VPS上执行iptables命令报错的解决方法
在linux的vps上,可能需要配置iptables的一些模块,例如:iptables -t nat -A POSTROUTING -s 10।8।0.0/24 -o eth1 -j SNAT --to-source 192.168.1.2执行上边命令的时候,会报错无法继续iptables v1.2.11: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)Perhaps iptables or your kernel needs to be upgraded.
Linux的VPS支持iptables的很多模块的在默认情况下,nat等模块是处于未打开的状态所以直接执行iptables -t nat的命令会报错
编辑/etc/sysconfig/vz找到如下一行,并加入iptable_nat进去,如下IPTABLES="iptable_nat ipt_REJECT ipt_tos ipt_limit ipt_multiport iptable_filter iptable_mangle ipt_TCPMSS ipt_tcpmss ipt_ttl ipt_length"保存退出并重启vz和iptables服务/etc/init.d/vz restart/etc/init.d/iptabls restart
现在NAT模块在整个节点上已经被支持了我们继续给某个要使用NAT模块的vps去启用nat模块使用VZMC连接到硬件节点,选择要管理的VPS点击鼠标右键,选择属性在iptables标签下边,可以看到详细的iptables模块清单相当一部分iptables的模块默认是禁用的例如nat等在这里打开他们的支持,vps上即可运行相应的iptables命令了
From http://www.parallels.com.cn/support.php?x=&mod_id=2&root=92&id=554