遇到的问题和解决方法

1.问题: apache 启动问题
#httpd start
httpd:could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for servername
原因:
解决方法:
编辑/www/conf/httpd.conf,加入下面内容,可以解决上面问题:
ServerName localhost:80

2.
问题:
localhost 不能访问
原因:
localhost 也是一个服务器名称,他必须要对应ip地址的。
解决方法:
/etc/hosts添加
127.0.0.1  localhost   localhost

3.
报错了:
# svn checkout svn://localhost/project1  /home/test_svn
svn 畸形的网络数据

原因:是linux中xined下的svn配置文件问题

解决方法:修改成正确的svn配置文件

你可能感兴趣的:(apache,linux,server,SVN,服务器,domain)