在使用gitlab的时候,如果服务器IP变动,之前的domain写入了配置文件了,如下路径: [root@gitlab-server ~]# vim /var/opt/gitlab/gitlab-rails/etc/gitlab.yml 把这里的host 改成所需的doamin,IP即可 分割线 如何检查gitlab版本: [root@gitlab-server ~]# gitlab-rake gitlab:env:info System information System: Current…
一. 安装并配置依赖包 在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开 系统防火墙中的HTTP和SSH端口访问 安装前准备 命令:iptables -F      #清除防火墙规则 gitlabserver    192.168.175.100       gitlab服务端 安装前了解 gitlab常用命令 gitlab-ctl start:启动全部服务 gitlab-ctl restart:重启全部服务 gitlab-ct…
public class A { public int Property1 { get; set; } } static void Main(){ A aa = new A(); Type type = aa.GetType();//获取类型 System.Reflection.PropertyInfo propertyInfo = type.GetProperty("Property1"); propertyInfo.SetValue(aa, , null);//给对应属性赋值 in…
在ejabberd中可以支持多个domain,我讲一下我的配置过程我的ejabberd系统是:ejabberd server+sql server+openldap+gateway.我总共使用了5台机器,用两台机器组成了ejabberd cluster,另外3台机器分别做sql server,openldap server和gateway.gateway机器上可以安装多个不同的gateway软件,这样我们就可以同时使用多种服务,如icq,aim,msn,yahoo通等等.我是在公司做的,sql…
除了老版本的ie, 就已经没有浏览器能支持js添加收藏夹和设置首页, 浏览器没有开放这个权限了,external.addFavorite这个给禁了. 不过AddFavorite可以起到提醒用户自行操作加入收藏的作用 <a href="javascript:void(0);" onclick="SetHome(this,document.domain);">设为首页</a><a href="javascript:void(0);…
[root@xuegod63 ~]# git config --global user.name "zsl3"[root@xuegod63 ~]# git config --global user.email "245305579@qq.com" [root@xuegod63 ~]# cat ~/.gitconfig #查看 cd zsl-web/llll -a  vi .git/config [user]email = 245305579@qq.comname =…
总述     今天来一篇简单的操作文章吧,VSCODE是我们经常用的软件,我之前也写过关于VSCODE远程办公的一些的操作(有兴趣的朋友可以点击进去看看),今天我再稍微介绍一些我其他地方用到的一些操作快捷键设置.C/C++的debug.代码路径配置,做个整理分享给大家. 作者:良知犹存 转载授权以及围观:欢迎添加微信公众号:Conscience_Remains 1 快捷键的设置 首先vscode自带很多方便的快捷键: ·       注释:[ctrl+k,ctrl+c] 或 ctrl+/ ·  …
在用PySpark操作HBase时默认是scan操作,通常情况下我们希望加上rowkey指定范围,即只获取一部分数据参加运算.翻遍了spark的python相关文档,搜遍了google和stackoverflow也没有具体的解决方案.既然java和scala都支持,python肯定也支持的. 翻了一下hbase源码 org.apache.hadoop.hbase.mapreduce.TableInputFormat setConf方法里原来是根据特定的字符串对scan进行配置,那么在Python…
本文实例讲述了JS封装cookie操作函数.分享给大家供大家参考,具体如下: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 /*设置cookie*/ function setCookie(name, value, iDay) {   var oDate=new Date();   oDate.setDate(oDate.getDate()+iDay);   document.cook…
一.单元格内容的操作 *****// 取得当前单元格内容 Console.WriteLine(DataGridView1.CurrentCell.Value); // 取得当前单元格的列 Index       Console.WriteLine(DataGridView1.CurrentCell.ColumnIndex); // 取得当前单元格的行 Index       Console.WriteLine(DataGridView1.CurrentCell.RowIndex); ******…