共享主机上的 Subversion 核心
我已在 bluehost 中注册了共享托管计划,并尝试按照以下说明安装颠覆: bluehost forum svn install script 一开始一切都很顺利,甚至尝试了 svnadmin create project_name
并且成功了,但是当我遍历到 project_name
时我收到此错误“svn: '.'”不是工作副本
”当我运行 svn info 时。
我想我可能在编译过程中遇到了错误,记不清了,但我认为当我运行 make && 时,它与“.so”文件有关。 make install
命令,一些关于权限的事情。
更新:
再次重新运行安装并收到此编译错误:
cp .libs/mod_dav_svn.soT /usr/lib64/httpd/modules/mod_dav_svn.so
cp: cannot create regular file `/usr/lib64/httpd/modules/mod_dav_svn.so': Read-only file system
apxs:Error: Command failed with rc=65536
.
make: *** [install-mods-shared] Error 1
非常感谢任何帮助或建议。谢谢!
I've signed up for a shared hosting plan in bluehost and tried installing a subversion by following this instruction: bluehost forum svn install script all goes well at first even tried svnadmin create project_name
and was a success but then when I traverse to project_name
I got this error "svn: '.' is not a working copy
" when I run svn info
.
I think I may have encountered an error on the compilation process, can't remember exactly but i think it has something to do with a ".so" file when I run the make && make install
command , something about permission.
UPDATE:
Re-run the install again and received this compile error:
cp .libs/mod_dav_svn.soT /usr/lib64/httpd/modules/mod_dav_svn.so
cp: cannot create regular file `/usr/lib64/httpd/modules/mod_dav_svn.so': Read-only file system
apxs:Error: Command failed with rc=65536
.
make: *** [install-mods-shared] Error 1
Any help or suggestion is very much appreciated. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当创建文件/用户或执行命令时,请使用 su、sudo 等为您的发行版在 root 下执行此操作。
编辑:此外,大多数共享主机不允许自定义 apache 扩展。
试试这个。
Blue Host 论坛的赞扬
when creating files/users or executing commands use su, sudo or the like for your distro to do so ad root.
Edit: Also, most shared host do not allow custom apache extensions.
Try this.
Compliments of Blue Host Forum
终于解决了它:DI使用
–-without-apxs
选项重新运行脚本,以便从此 找到,这是新脚本:
finally solved it :D I rerun the script with the
–-without-apxs
optionso to modify it from this find, here's the new script: