首页 > 数据库 >SQL Prompt安装不上(报错:1603)

SQL Prompt安装不上(报错:1603)

时间:2024-07-19 16:53:09浏览次数:11  
标签:Prompt netsh Service 1603 iplisten Client 报错 Redgate http

 一开始一直跟踪服务看到是RedGate Client 运行不起来(报错信息代码是这个1603),

后面查询到官网:https://productsupport.red-gate.com/hc/en-us/articles/360015772598-Redgate-Client-Service-fails-to-start

使用管理员运行CMD执行:
netsh http add iplisten 127.0.0.1

 之后再安装就可以了

官网原文:

Redgate Client Service fails to start
FollowNot yet followed by anyone
The Redgate Client Service is a Windows Service that is installed along with any Redgate client tool. Our tools will use the service in order to validate your licenses. In the first instance ensure you're on the latest version of the RCS, you can find the installer at the bottom of this page. 

In some cases, a Redgate tool may fail because the Redgate Client Service can't be installed or updated. You may see one of these messages:

'Redgate Client' (RedGateClient) failed to start. Verify that you have sufficient privileges to start system services.

'Redgate Client' (RedGateClient) failed to Stop. Verify that you have sufficient privileges to stop system services.

If you experience one of these errors, please try the following troubleshooting steps:

Open your Services panel. If the Redgate Client service already exists, right-click on the service and choose Stop. If the service fails to stop, manually stop the process by opening Task Manager > Details > sort by Name > locate Redgate.Client.Service.exe > right-click on it and choose End task.
Delete any file in C:\Program Files (x86)\Common Files\Red Gate\Shared Client that looks like ".rgupdate_bad_xxxx", and then try running the installer again.
Should that fail, run 'netsh http show iplisten' from a command prompt running as administrator and take a screenshot of what is listed (see below).
Check Event Viewer > Windows log > Application for any related errors.
Raise a support ticket and send over the screenshot, the Event Viewer errors, and the full service log files from C:\ProgramData\Red Gate\Shared Client\Log  
You may also be getting an error message that the Redgate Client Service won't start that's unrelated to an installation. This error message could mean a firewall rule may be preventing the local use of HTTP. Please open an administrative command prompt and try the following commands:

This first command shows if any rules are defined:

>netsh http show iplisten

If there are no rules, then by default all services are on the AllowList. However, if the default is changed or if there is at least one rule then it may be necessary to add an extra one.

What you may see is "::" as a rule after running the above command. This is a rule that likely would have been added by another app. (changes to these rules are not audited so it isn't possible to tell which app added it). If that is the case though then you will need to apply the rule below:

>netsh http add iplisten 127.0.0.1

Once added, please navigate to http://localhost:22221/redgate/status.html again to activate the license.

If this doesn't help, or if other non-RG services are affected then please raise a support ticket. The rule can be removed using the command below:

>netsh http delete iplisten 127.0.0.1

 

 

百度翻译:

Redgate客户端服务无法启动
Follow还没有人关注
Redgate客户端服务是与任何Redgate客户端工具一起安装的Windows服务。我们的工具将使用该服务来验证您的许可证。首先,确保您使用的是RCS的最新版本,您可以在本页底部找到安装程序。
在某些情况下,由于无法安装或更新Redgate客户端服务,Redgate工具可能会失败。您可能会看到以下消息之一:
“Redgate客户端”(RedGateClient)启动失败。请验证您是否有足够的权限启动系统服务。
“Redgate客户端”(RedGateClient)停止失败。请验证您是否有足够的权限停止系统服务。
如果您遇到这些错误之一,请尝试以下故障排除步骤:
打开“服务”面板。如果Redgate客户端服务已存在,请右键单击该服务并选择停止。如果服务无法停止,请打开“任务管理器”>“详细信息”>“按名称排序”>“定位Redgate”手动停止进程。客户。Service.exe>右键单击它并选择结束任务。
删除C:\Program Files(x86)\Common Files\Red Gate\Shared Client中看起来像“.rgupdate_bad_xxxx”的任何文件,然后再次尝试运行安装程序。
如果失败,请从以管理员身份运行的命令提示符运行“netsh http show iplisten”,并对所列内容进行截图(见下文)。
检查事件查看器>Windows日志>应用程序是否有任何相关错误。
提交支持工单,并从C:\ProgramData\Red Gate\Shared Client\log发送屏幕截图、事件查看器错误和完整的服务日志文件
您可能还会收到一条错误消息,提示Redgate客户端服务无法启动,这与安装无关。此错误消息可能意味着防火墙规则可能阻止本地使用HTTP。请打开管理命令提示符并尝试以下命令:
第一个命令显示是否定义了任何规则:
>netsh http显示iplisten
如果没有规则,则默认情况下所有服务都在AllowList上。但是,如果更改了默认值或至少有一条规则,则可能需要添加一条额外的规则。
运行上述命令后,您通常会看到“::”。这是另一个应用程序可能添加的规则。(对这些规则的更改不会经过审核,因此无法分辨是哪个应用程序添加了这些更改)。如果是这样的话,那么您需要应用以下规则:
>netsh http添加iplisten 127.0.0.1
添加后,请导航到http://localhost:22221/redgate/status.html再次激活许可证。
如果这没有帮助,或者其他非RG服务受到影响,请提出支持票。可以使用以下命令删除该规则:
>netsh http删除iplisten 127.0.0.1

 

标签:Prompt,netsh,Service,1603,iplisten,Client,报错,Redgate,http
From: https://www.cnblogs.com/dzw159/p/18311813

相关文章

  • PHP curl 模拟GET请求接口报错HTTP Status 400 – Bad Request 问题
    网上查的解决方案:https://blog.csdn.net/sunsijia21983/article/details/123204143问题:PHP用curl模拟GET请求接口报错HTTPStatus400–BadRequesthttp://xxx/api/getZList?page=1&limit=20&zName=测试参数zName是英文、数字的时候都不会报错,输入汉字就报错400;解决方案:h......
  • 服务启动报错: [ main] c.a.n.c.config.http.ServerHttpAgent : no available server
    场景:一个服务,注册中心使用nacos 服务启动时报错:2024-07-1913:11:17.466ERROR32188---[main]c.a.n.c.config.http.ServerHttpAgent:[NACOSSocketTimeoutExceptionhttpGet]currentServerAddr:http://localhost:8848,err:connecttimedout2024-07-1913:11:18.......
  • Seata 1.3.0 Oracle 回滚测试验证 报错 ORA-02289: 序列不存在
    使用Seata1.3.0版本,测试A服务调用B服务,且A方法中,手动写了一个异常,测试是否正常回滚(Mysql已经测试过)发现报错:ORA-02289:序列不存在 一看就是undo_log这张表的sequence没有建立,导致数据保存不了,太久没有用oracle了,之前搜索undo_log的建表SQL是直接在网上搜索的,所以缺少了建seq......
  • WebGL-编译报错,如何定位sendfile报错位置
    1)WebGL-编译报错,如何定位sendfile报错位置2)设置DepthBufferBits和设置DepthStencilFormat的区别3)Unity打包exe后,游戏内拉不起Steam的内购4)使用了PlayAssetDelivery提交版本被Google报错这是第395篇UWA技术知识分享的推送,精选了UWA社区的热门话题,涵盖了UWA问答、社区帖子等技术......
  • 20240713 报错fcntl
    消费机报错:昨天晚上消费机连不上网了,今早依旧,同事重启了一下docker,就好了。抽空要学一下docker和服务器部署。消费机同步订单接口:因为昨天没连上网,我尝试刷脸消费,结果成功了。多了一条离线消费记录。也爆露出来少个离线同步订单的接口。请求的数据:{"Count":"1","D......
  • 20240718 数据库外键报错
    报错1. 1452-Cannotaddorupdateachildrow:aforeignkeyconstraintfails(bvn'.'user_user_role^,CONSTRAINT^user_user_role_user_id_e615b4e0_fk_user_user_idFOREIGNKEY(user_id’)REFERENCES^user_user(id'))翻译:不能添加或更新子行:外键约束失败(bvn&#......
  • datagrip启动报错Exception Type:EXC_BAD_ACCESS (SIGABRT)
    本人电脑背景:mac10.15安装datagrip2024版本,根据官方描述,这个版本是不支持的,但是本着试试的态度安装,毕竟也想用新版本。结果遇到了问题。启动打不开,由于错误信息较多,大概整理出来描述如下:ExceptionType:EXC_BAD_ACCESS(SIGABRT)ExceptionCodes:KERN_INVALID_......
  • .NET|--杂类|--json文件未释放, 就开始反序列化, 报错Newtonsoft.Json Unexpected cha
    前言一个看起来很莫名其妙的错误,json文件我打开看了下,格式也都正确,但是在vs中调试的时候,监视--查看--JSON可视化工具查看json字符串的话,会提示"字符串未设置为JSON格式","监视--查看--文本可视化工具",发现json格式确实看不出来任何问题.报错#报......
  • vue3中使用@作为引用根目录报错
    在Vue3中使用 @ 作为引用根目录(通常是 src 目录)报错,通常是因为配置未正确设置或者配置未被项目正确识别。1.1.排查和解决此类问题的步骤:确认配置文件:对于使用Vite的项目,需要在 vite.config.ts 文件中配置路径别名。确保你已经正确导入了 path 模块,并设置了......
  • 数据科学入门之关于jupyter notebook的基本使用及numpy数据库的基本调用(内含一些报错
    前言介绍一下数据科学  在IBM(国际商用机器公司)官网上对数据科学的解释是数据科学将数学和统计学、专业编程、高级分析,人工智能和机器学习与特定主题专业知识相结合,获取隐藏在组织数据中的切实可行的洞察。这些洞察可用于指导决策和战略规划。  关于数据科学,我十分喜......