读好书,交益友
发布时间:2016-04-28 14:39:28
ipsec pki --gen --type rsa --size 4096 --outform pem > private/centosKey.pemchmod 600 private/centosKey.pemipsec pki --self --ca --lifetime 3650 --in private/centosKey.pem --type rsa --dn "C=CH, O=centos, CN=centos Root CA" --outform pem > cacerts/centosCert.pemipsec pki --print --in cacerts/cent.........【阅读全文】
发布时间:2016-04-26 19:48:59
1、直接关闭防火墙systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止firewall开机启动2、设置 iptables serviceyum -y install iptables-services如果要修改防火墙配置,如增加防火墙端口3306vi /etc/sysconfig/iptables 增加.........【阅读全文】
发布时间:2016-04-26 18:34:20
git 1.7.10之后,有时候git pull的时候 会自动发送merge 信息如下配置可以关闭编辑~/.gitconfig [core] mergeoptions = --no-edit 或者终端中执行git config --global core.mergeoptions --no-edit......【阅读全文】
发布时间:2016-04-21 17:32:33
use db_name; SET autocommit=0 ; source the_sql_file.sql ; COMMIT ;......【阅读全文】