ICode9

精准搜索请尝试: 精确搜索
  • gitlab reconfigure 卡住 ruby_block[wait for redis service socket] action run2022-01-26 16:36:02

    gitlab  12.3.5 安装卡在ruby_block[wait for redis service socket] action run   在安装gitlab的时候,安装完毕,执行sudo gitlab-ctl reconfigure,在/etc/gitlab/gitlab.rb文件的时候,会卡在这地方       然后等了很久也没有看到这个控制台输出的日志信息发生变化。 解决方案

  • ROS dynamic_reconfigure 动态参数配置2022-01-25 19:32:26

    参考 Python dynamic_reconfigure 但是文件updatePID_node.py 第一行添加如下代码 #! /usr/bin/env python C++ ros之动态配置参数

  • Sqlserver中使用DLL定义的函数2022-01-19 19:03:59

    参考: https://blog.csdn.net/y13156556538/article/details/62223855 https://www.cnblogs.com/xiaozhi1236/p/5730468.html 引入前先执行: EXEC sp_configure 'clr enabled' , 1; --0代表不允许,1代表运行 RECONFIGURE; EXEC sp_configure 'clr strict security', 0;

  • SQLServer 开启cmd命令2021-11-18 13:31:35

    参考地址https://www.cnblogs.com/OliverQin/p/5032014.html   shell是用户与操作系统对话的一个接口,通过shell告诉操作系统让系统执行我们的指令 xp_cmdshell在sqlserver中默认是关闭的存在安全隐患。 --打开xp_cmdshell EXEC sp_configure 'show advanced options', 1;RECONF

  • ubuntu 18.04时区修改2021-10-12 12:00:08

    dpkg-reconfigure tzdata 依次选择Asia/Shanghai即可      

  • The operation could not be performed because OLE DB provider "SQLNCLI10" for linked server2021-08-30 19:00:06

    需要对执行链接数据库时,出现标题异常。那是因为目标数据没有配置好:目标数据打开以下几个选项: EXECUTE sp_configure 'show advanced options',1; GO RECONFIGURE; GO EXECUTE sp_configure 'remote access',1; GO RECONFIGURE; GO EXECUTE sp_configure 'remote admi

  • ROS进阶(二): dynamic_reconfigure功能包详解2021-01-23 09:30:50

    之前在ros基础系列中的第三章,我们详细讲解了ROS系统中的参数配置。 ROS的参数服务器有缺陷:talker向master更改了参数数值,如果listener不去重新查询的话,仍然保持原来数值。 本节我们来详细探究下,在ros中如何实现动态配置参数。

  • 转 linux gitlab-ctl reconfigure报错问题修复 5022020-05-12 18:53:10

    Running handlers:There was an error running gitlab-ctl reconfigure: bash[migrate gitlab-rails database] (gitlab::database_migrations line 51) had an error: Mixlib::ShellOut::ShellCommandFailed: Expected process to exit with [0], but received '1'

  • SQL SERVER数据库账号提取服务器权限2020-04-16 11:57:24

    描述 1、基于安全考虑,MSSQL2005及以上版本默认禁用了xp_cmdshell。直接调用该扩展存储过程会提示: exec master..xp_cmdshell "whoami" 2、只要该扩展存储过程没被删除,我们就可以使用一句话启用它(不支持多句执行的话,请单独执行每句操作): EXEC sp_configure 'show advanced opti

  • sql server OpenDataSource查询excel数据2020-01-15 22:54:22

    -- 启用: exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure   SELECT * FROM OpenDataSource( 'Microsoft.ACE.OLEDB.12.0','Data Source="d:\test.xlsx&quo

  • SQL Server启动/关闭xp_cmdshell2019-10-23 18:00:20

    1 ==》启用xp_cmdshell 2 USE master 3 EXEC sp_configure 'show advanced options', 1 4 RECONFIGURE WITH OVERRIDE 5 EXEC sp_configure 'xp_cmdshell', 1 6 RECONFIGURE WITH OVERRIDE 7 EXEC sp_configure 'show advanced options',

  • 跨服务器、跨库操作SQL2019-09-27 12:01:26

    --在执行跨服务器查询之前,运行exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure insert into OPENDATASOURCE( 'SQLOLEDB', 'Data Source=地址;User ID=用户;Password=密码

  • Linux 安装gitlab2019-08-16 13:40:28

    gitlab-ctl reconfigure 让配置生效 gitlab-ctl restart 重启 改变 /etc/gitlab/gitlab.rb 下的 external_url配置 重装时执行 gitlab-ctl reconfigure 卡在 ruby_block[supervise_redis_sleep] action run 执行 systemctl restart gitlab-runsvdir 然后在 gitlab-ctl

  • D435i安装时遇到的问题2019-07-22 21:04:36

    1.要用usb3.0接口,不然会检测不到摄像头 2.安装ROS Wrapper时可能会提示 ddynamic_reconfigure 没有安装,通过以下连接下载后安装在ros工作空间即可https://github.com/pal-robotics/ddynamic_reconfigure/tree/kinetic-devel 3.运行时用roslaunch realsense2_camera rs_camer

  • 解决SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasourc2019-07-03 22:03:04

    1.开启Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句: exec sp_configure 'show advanced options',1reconfigureexec sp_configure 'Ad Hoc Distributed Queries',1reconfigure 2.关闭Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句: exec sp_co

  • SQL SERVER-邮件配置2019-05-30 09:40:16

                   执行 USE masterGOsp_CONFIGURE 'show advanced', 1GORECONFIGUREGOsp_CONFIGURE 'Database Mail XPs', 1GORECONFIGUREGO    JOB属性中alert system中配置如下,不然job不会发送邮件。      

  • sqlserver同一个局域网内,把服务器数据库备份到客户端2019-05-02 19:41:08

    1、客户端主机创建网络共享文件夹 2、远程服务器运行: EXEC sp_configure 'show advanced options', 1;-- 允许配置高级选项--配置选项'show advanced options' 已从1 更改为1。请运行RECONFIGURE 语句进行安装。RECONFIGURE;-- 重新配置--命令已成功完成。EXEC sp_configure 'xp_cm

  • Linux安装gitlab2019-04-29 12:55:08

    安装包下载 gitlab官方安装包仓库选择合适的版本进行下载即可。下载完成后。 安装包下载可能会非常缓慢,需要一些耐心等待下载完成。 安装gitlab #使用yum安装 #> yum install -y gitlab-ce-11.6.10-ce.0.el7.x86_64.rpm #使用rpm安装 #>rpm -ivh gitlab-ce-11.6.10-ce.0.el7.x86_64

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有