Home > 运维 基础架构 >

应用服务器

应用服务器 栏目

proftpd:error: no valid servers configured 错误修复

评分4.0, 满分 5 星26 次阅读
0 条评论
   今天服务的ftp连接不上,赶紧上服务查看,日志显示: - warning: unable to determine IP address of 'pms.cc' - error: no valid servers configured - Fatal: error processing configuration file '/etc/proftpd.conf' 根据错误提示,是主机名和IP解析没法对应。 解决方法: 1,在配置文件/etc/proftpd.conf里面增加VPS IP; Def...   

阅读全文...

标签:

CentOS6.5 配置VNC配置

评分4.6, 满分 5 星1409 次阅读
0 条评论
VNC是Linux上的一款非常优秀的远程控制工具软件,通常我们在Windows上面安装vnc客户端软件来远程访问Linux机器,VNC由著名的 AT&T的欧洲研究实验室开发的。VNC是在基于UNIX和Linux操作系统的免费的开放源码软件,远程控制能力强大,高效实用,其性能可以和 Windows和MAC中的任何远程控制软件媲美。   1. 检查是否已经安装了VNC server [root@loca...   

阅读全文...

标签: ,

CentOS 6.5 安装图形界面

评分4.6, 满分 5 星1503 次阅读
0 条评论
    安装的时候没有安装图像界面。安装步骤如下: 1.yum -y groupinstall Desktop 2.yum -y groupinstall "X Window System" 3.init 5   由字符界面切换到图形界面可用两种简单方法实现: 1、在字符界面输入startx或init 5 。 2、通过编辑/etc/inittab文件实现默认进入图形界面。 把其中的id:3:initdefault中的3改为5,...   

阅读全文...

标签:

xampp:You don’t have permission to access the requested directory

评分4.2, 满分 5 星72 次阅读
0 条评论
找到\xampp\apache\conf\httpd.conf配置文件 Access forbidden! You don’t have permission to access the requested directory. There is either no index document or the directory is read-protected. If you think this is a server error, please contact the webmaster. Error 403 解决方法 找到Directory 目录然后进行复制权限;主要红色...   

阅读全文...

标签:

mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication

评分4.0, 满分 5 星21 次阅读
0 条评论
 mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. If this user is used in other scripts executed by PHP 5.2 or ...   

阅读全文...

proftpd 550 permission denied

评分4.5, 满分 5 星876 次阅读
0 条评论
今天采用配置proftpd后。能登入看到目录。但上传文件,创建文件,目录都不可以,如下: 命令: PASV 响应: 227 Entering Passive Mode (106,186,23,11,197,135). 命令: STOR aaa 响应: 550 aaa: Permission denied 因为采用的是proftpd + mysql 权限都有了。就是不可以。 查看ftp的sql日志才发现是:user UID 510 below SQLMinUserUI...   

阅读全文...

标签:

nginx: error while loading shared libraries: libpcre.so.1

评分4.4, 满分 5 星293 次阅读
0 条评论
今天编译nginx 1.2.9。用-t提示: [root@pms.cc download]# /usr/local/nginx/sbin/nginx -t /usr/local/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory   查了下: cd /lib ln -s libpcre.so.0.0.1 libpcre.so.1 配置成功: [root@pms.cc lib]# /usr/local...   

阅读全文...

标签:

Linode ssh login fail

评分4.3, 满分 5 星195 次阅读
0 条评论
订了一个新的Linode vps. 但登入ssh一会就掉了。很奇怪。选的是东京的服务器。 于是测试:ping 超时,tracert在最后一调,time out了 跟linode客服联系,估计是被墙,然后是换了ip,情况还是一样。 用mtr 丢包:  [root@li385-xxx ssh]# mtr --report 115.231.247.81 HOST: li385-xxx           ...   

阅读全文...

标签: ,

Nginx 301域名重定向

评分4.4, 满分 5 星384 次阅读
0 条评论
301重定向方法 进行了301重定向,把www.pms.cc 和pms.cc 合并,并把之前的域名也一并合并. 有两种实现方法,第一种方法是判断nginx核心变量host(老版本是http_host): server { server_name www.pms.cc pms.cc ; if ($host != 'www.pms.cc') {         rewrite ^/(.*)$ http://www.pms.cc/$1 permanent; } ... } 第...   

阅读全文...

标签: ,