跳至主要内容

博文

目前显示的是 五月, 2019的博文

proftp设置匿名模式

groupadd ftp useradd -ftp -d / ftp ServerName                        "ProFTPD" ServerType                        standalone DefaultServer                        on timesGMT off # Port 21 is the standard FTP port. Port                                21 # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask                                022 IdentLookups                             off UseReverseDNS                            off # To prevent DoS attacks, set the maximum number of child processes # to 30.  If you need to allow more than 30 concurrent connections # at once, simply increase this value.  Note that this ONLY works # in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd) MaxInstances                        30 DefaultRoot      / # Set the user and group that the server normally runs at. User                    

centos7安装dkms

Download the newest version of epel-release for EL7 from https://fedoraproject.org/wiki/EPEL , and install it: # rpm -ivh epel-release-7-0.2.noarch.rpm Install DKMS: # yum -y install dkms

go开启profile

import ( _ "net/http/pprof" ) http.ListenAndServe( "0.0.0.0:8080" , nil)     然后 http://127.0.0.1:8080/debug/pprof 查看整体信息    下载profile文件 执行 go tool pprof profile cpu_profile 直接top看 或者 安装graphviz 然后web