Merge 区分 2. 服务器、本地 对比 ...
分类:
其他好文 时间:
2021-04-30 12:20:28
阅读次数:
0
场景 在CentOS中安装gitlab时,需要配置SSH为开机启动。 所以需要检查和配置服务器上是否已经启动。 注: 博客: https://blog.csdn.net/badao_liumang_qizhi 关注公众号 霸道的程序猿 获取编程相关电子书、教程推送与免费下载。 实现 首先查看SSH是 ...
分类:
其他好文 时间:
2021-04-30 12:00:16
阅读次数:
0
拼接字符串 1.CONCAT(s1,s2...sn) 字符串 s1,s2 等多个字符串合并为一个字符串。 SELECT CONCAT("str1", "str2") AS str; + + | str | + + | str1str2 | + + 2.CONCAT_WS(x, s1,s2...sn) ...
分类:
数据库 时间:
2021-04-28 12:13:16
阅读次数:
0
vmnet8重启网卡 sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --start sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli - ...
分类:
系统相关 时间:
2021-04-28 12:12:40
阅读次数:
0
# 安装依赖包 yum install -y yum-utils # 添加Docker软件包源 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo # 安装Docker CE yu ...
分类:
其他好文 时间:
2021-04-28 12:12:26
阅读次数:
0
1.求每个部门最高薪水的人员名称 解决思路:1 先求每个部门最高的薪水 SELECT e.deptno,MAX(e.sal) as maxsal from emp e GROUP BY e.deptno; 2. 将第一步得出来的结果,当成临时表 SELECT e.deptno,ename,t.max ...
分类:
数据库 时间:
2021-04-27 14:59:14
阅读次数:
0
# CentOS7 rm -f /etc/yum.repos.d/*.repo curl -L "http://mirrors.163.com/.help/CentOS7-Base-163.repo" -o /etc/yum.repos.d/CentOS7-Base-163.repo curl -L ...
分类:
其他好文 时间:
2021-04-27 14:17:29
阅读次数:
0
create-react-app构建TypeScript项目 create-react-app my-app --template typescript 然后进入项目并启动 cd my-app/ npm run start 项目启动成功,浏览器默认打开http://localhost:3000/ 持 ...
分类:
其他好文 时间:
2021-04-27 14:13:35
阅读次数:
0
一些crontab调度示例 10 6 * * * root reboot 10 7 * * * python /root/confluence_backup.py */5 * * * * flock -xn /tmp/stargate.lock -c '/usr/local/qcloud/starg ...
分类:
其他好文 时间:
2021-04-27 14:12:22
阅读次数:
0
线程 创建线程 #include <pthread.h> int pthread_create(pthread_t *restrict thread,const pthread_attr_t *restrict attr,void *(*start_routine)(void*), void *re ...
分类:
其他好文 时间:
2021-04-26 13:53:31
阅读次数:
0