摘要: 转载:https://jingyan.baidu.com/article/a3a3f811ea5d2a8da2eb8aa1.html 阅读全文
posted @ 2020-07-13 21:42 binjia 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Git 全局设置 git config --global user.name "张文彬" git config --global user.email "zhangwenbin@linrai.com" 创建一个新存储库 git clone http://139.9.133.148:8000/cp/c 阅读全文
posted @ 2020-07-09 16:11 binjia 阅读(721) 评论(0) 推荐(0) 编辑
摘要: -- 加文件加入待提交区 git add file -- 提交,并加上描述 git commit -m '描述 -- push到远程仓库 git push origin master - - clone分支 git clone http://***/***.git -- 拉取并合并 git pull 阅读全文
posted @ 2020-07-09 14:03 binjia 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 格式:/usr/local/mysql/bin/mysqldump -hip -Pport -uuser -ppasswd --set-gtid-purged=off --database aa > aa.sql 注意:加入 --set-gtid-purged=off 避免导出GTID_EXECUT 阅读全文
posted @ 2020-07-09 13:58 binjia 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 用xshell登录linux系统之后,用命令>ulimit -a 注意到系统模式是1024个 使用>ulimit -n 数量,可临时更改,生效范围为当前会话 永久修改的方法: > vim /etc/security/limits.conf 添加: * soft nofile 65536 * hard 阅读全文
posted @ 2020-07-08 22:46 binjia 阅读(4068) 评论(0) 推荐(0) 编辑
摘要: which java 阅读全文
posted @ 2020-07-08 16:47 binjia 阅读(1399) 评论(0) 推荐(0) 编辑
摘要: systemctl status firewalld firewall-cmd --zone=public --add-port=80/tcp --permanent firewall-cmd --reload firewall-cmd --zone=public --list-ports 阅读全文
posted @ 2020-07-06 16:54 binjia 阅读(121) 评论(0) 推荐(0) 编辑
摘要: vi /etc/sysconfig/network-scripts/ifcfg-ens33 BOOTPROTO=static 设置网卡引导协议为 静态 ONBOOT=yes 网卡开机自启动配置[IP/子网掩码/网关] IPADDR=192.168.1.111 NETMASK=255.255.255. 阅读全文
posted @ 2020-07-06 00:23 binjia 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-06 00:20 binjia 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 安装jdk之后,可以通过jps命令查看是否安装成功 jps java process status java 进程状态 通过which jps可以看到在哪个目录 阅读全文
posted @ 2020-07-06 00:00 binjia 阅读(235) 评论(0) 推荐(0) 编辑