发布时间:2014-09-28 11:41:39
Redhat部署svn服务器 需要的软件包有: apr-1.4.6.tar.gz apr-util-1.4.1.tar.gz pcre-8.30.zip httpd-2.4.10.tar.gz subversion-1.8.10.tar.gz 下载这些包并拷贝到/root/download目录下 1 安装apr # cd/root/download # tar-zxvf apr-1..........【阅读全文】
发布时间:2014-09-25 14:19:42
Redhat下用rpm装完apache后启动报错的解决方案 从光盘里用rpm-ivh httpdXXX的命令装完apache后,在终端输入apachectlstart后,报错:httpd:Could not reliably determine the server's fully qualified domain name, using192.168.245.133 for ServerName 解.........【阅读全文】
发布时间:2014-09-15 11:50:18
Linux设置服务开机启动 比如要设置svn服务开机即启动 在/etc/rc.local或/etc/rc.d/rc.local的末尾加入 su - svn -c "svnserve -d --listen-port9999 -r /opt/svndata" 重启系统用ps -ef | grep svn即可观察到svn服务已默认被启动 .........【阅读全文】
发布时间:2014-09-15 11:42:12
SecureCRT远程登录失败,提示“Passwordauthentication failed” 解决方案: 1 vi服务端的/etc/ssh/sshd_config 把PasswordAuthentication设成yes 把#PermitRootLogin no改为PermitRootLogin yes 2 重启服务器端的sshd服务 /etc/init.d/sshd resta.........【阅读全文】
发布时间:2014-09-13 08:17:43
Linux永久关闭防火墙和SELinux (1) 关闭防火墙 # chkconfig iptables off (2)关闭SELinux 修改/etc/selinux/config 文件 将SELINUX=enforcing改为SELINUX=disabled (3)重启机器 #reboot .........【阅读全文】