- 浏览: 91284 次
- 性别:
- 来自: 北京
最新评论
-
pyzheng:
angjunwen 写道这样能解决问题吗,我遇到的错误信息是: ...
maven 故障解决 -
langwang0771:
哥子,视频转换后不能播放!!!能不能给我你的源代码!!!
java调用FFmpeg及mencoder转换视频为FLV并截图 -
zwm:
手机录音.amr怎么转成.mp3,通过java程序调menco ...
mencoder和ffmpeg参数详解 -
angjunwen:
这样能解决问题吗,我遇到的错误信息是:The containe ...
maven 故障解决
文章列表
配置vsftpd,修改/etc/vsftpd/vsftpd.conf:
增加chroot_list文件,内容可以为空。
配置文件如下:注意红色字体部分,基本按照默认值配置即可。
# Example config file /etc/vsftpd/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 ...
关闭端口
iptables -A INPUT -p tcp --dport 111 -j DROP
打开端口
iptables -A INPUT -p tcp --dport 111 -j ACCEPT
sqlldr newweb/newweb@ora10g36 control=import_mdmc.ctl log=log.log bad=bad.bad errors=1000
import_mdmc.ctl内容:
load data infile 'contentid.txt'
into table mm_tmp_contentid
append
fields terminated by ','
trailing nullcols
(
contentid
)
vi /etc/ssh/sshd_config
Port 22
Protocol 2
SyslogFacility AUTHPRIV
LogLevel INFO
LoginGraceTime 30
PermitRootLogin no
AllowUsers if_* xx_* sy_* co_mnservice
StrictModes yes
PermitEmptyPasswords no
PasswordAuthentication yes
ChallengeResponseAuthentication no
GSSAPIAuthentication yes
GSS ...