Could not load the Tomcat server configuration at C:\apache-tomcat-7.0.79\conf. The configuration may be corrupt or incomplete.
http://blog.csdn.net/you23hai45/article/details/20000275
检查下你的tomcat的config里面的server.xml文件,如果有必要重新下载一个新版本吧。
权限问题
Eclipse新建Server时,会在 当前workspace目录下新建 /Servers/Tomacat v7.0 Server at localhost-config目录,然后将/opt/ apache-tomacat-7.0.59/conf 目录下的所有文件拷贝到这里。Eclipse没有访问它的权限,所以无法拷贝,那么Server自然创建失败。
sudo cp -r /opt/ apache-tomacat-7.0.59/conf /home/star/workspace/Servers/Tomacat v7.0 Server at localhost-config
cd /home/star/workspace/Servers/Tomacat v7.0 Server at localhost-config
chmod -R 777 conf
然后将conf目录下文件剪切出到conf同级目录,删除空的conf文件夹
完成