
其他技术
这家伙很懒,还没填写该栏目的介绍呢~

通过rpm包安装的,结果无法打开
找了个教程
首先配置一个账号:
[root@localhost soft]# firewall-cmd --state
not running
[root@localhost soft]# rabbitmqctl list_users
Listing users ...
user tags
guest [administrator...

其他技术Failed to download metadata for repo 'AppStream': Cannot prepare internal mirrorlist: No URLs in mirrorlist
前几天还安装更新了东西的,再次使用yum localinstall的时候就报错了
然后发现yum install还是报错了
百度了一下解决方案,说什么dns问题的,改repo加阿里云镜像的都不行。
后来谷歌了一个解决方案,同样修改了repo,就可以更新了。
附上解决方案:
[#zeyu#]
[root@autocontroller ~]# cd ...

其他技术VueCompilerError: Unquoted attribute value cannot contain U+0022 ("), U+0027 ('), U+003C (<), U+003D (=), and U+0060 (`).
问题很简单,el-tag的type错误,主要是没怎么用过vue造成的。
报错的代码:
<el-tag
:type=(scope.row.data_status=='1'?'success':(scope.row.data_status=='2'?'warning':'danger'))
>
正确的代码:
<el-tag
:type="(scope.r...

其他技术Linux Centos操作系统下,oracle 19c使用sqlplus / as sysdba登录报ora-01017错误
数据库一直正常使用,突然出现问题:
[oracle@03 admin]$ sqlplus /nolog
SQL*Plus: Release 19.0.0.0.0 - Production on Fri Feb 11 16:35:51 2022
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle. All rights re...

其他技术The Process class relies on proc_open, which is not available on your PHP installation
原因是:
php.ini中禁用了proc_open函数,在disabled_functions中移除即可。

其他技术rm: 无法删除'.user.ini': Operation not permitted
文件是由lnmp生成的,ll -a可以看到。
删除提示:
rm: 无法删除'.user.ini': Operation not permitted
需要先修改属性。
chattr -i .user.ini
然后再删除,即可。

其他技术在 VirtualBox 中的 Centos 挂载共享文件夹
mkdir /mnt/aaa
mount -t vboxsf share /mnt/aaa
需要先把增强工具安装好。

其他技术mount:未知的文件系统 `vboxsf'
virtualbox下的centos8 配置共享文件夹提示如题报错:
sudo mount -t vboxsf gongxiang /home/user/Desktop/test/
原因是没有安装增强工具,但是目前,virtualbox6.1.14安装增强工具报错
Verifying archive integrity... All good.
Uncompressing Virt...

其他技术centos8配置rc.local开机启动
虽然官方不建议,但是有的时候还是有用
参考地址:
https://www.cnblogs.com/architectforest/p/12467474.html
给文件添加可执行属性
chmod +x /etc/rc.d/rc.local
配置rc.local的服务
vi /usr/lib/systemd/system/rc-local.service
在上面...

其他技术oracle生成awr报告时,报错:SP2-0606: Cannot create SPOOL file
参照:
https://www.modb.pro/issue/568
主要是生成报告目录无权限。
awr报告生成时,是以进入sqlplus 的命令的目录为当前目录的。
可以在sql>提示符下面输入:!pwd,查看进入的目录,如果需要切换,需要退出sqlplus,切换目录后,再次进入即可。
需要在oracle有读写权限的目录下,执行sqlplus ...

其他技术CDH6.3.2升级zookeeper版本,解决:Apache ZooKeeper安全限制绕过漏洞(CVE-2018-8012)
原文参考:
https://blog.csdn.net/eyeofeagle/article/details/117286325
文章步骤写的很细,按步骤操作即可,但是我按步骤操作后,出现问题:
执行:
echo stat|nc localhost 2181
会提示:
stat is not executed because it is not in the whitelist.
...

其他技术微信调试时,通过frp映射本机的https,出现no such domain的问题处理
https://www.cnblogs.com/shook/p/12790532.html
这一篇文章已经写的很详细了,如果你有一个域名,直接配置frp的https2http,很好用,参照上面文章或者查看官方的配置文件就行。
核心代码就是
[plugin_https2http]
type = https
custom_domains = test.yourdomain....

其他技术未能装入appscan standard许可证
win7 新装的系统,虚拟机,提示如题。
网上有说补丁,找了一圈没有找到离线补丁。在线更新提示错误码:80072efe
网上找到的解决方案:
win7虚拟,替换完dll,双击运行后报错“无法载入许可证”,后面做了window update 更新,更新完成后,可以打开。
关键就是这个更新问题,在线更新,更新不了了,我的解决方案是:
[#zeyu#]
...

其他技术Elasticsearch did not exit normally - check the logs at /opt/sonarqube/logs/sonarqube.log
docker安装的sonarqube,之前安装后运行一直都正常,今天第二次启动的时候,就会自动关闭。
通过命令查看日志:
docker logs --since 30m da005eba84b7
看到报错信息如标题:
2021.11.12 01:13:05 INFO es[][o.e.n.Node] initialized
2021.11.12 01:13:05 INFO ...

其他技术Could not find package meabed/php-parallel-soap,composer安装的时候提示
composer require meabed/php-parallel-soap
[InvalidArgumentException]
Could not find package meabed/php-parallel-so...

其他技术mysql主从同步报错的解决及忽略指定表
报错的排查,登录到slave的mysql:
show slave status\G;
查看错误原因。根据原因进行调整,调整完毕后,再次执行:
start slave;
最后再用show slave status查看状态就可以了。
如果遇到需要忽略的表,参考:
master 端
binlog-do-db 二进制日志记录的数据库(多数据库用逗号,隔开)
binl...

其他技术centos查看服务的详细启动日志
在服务报错的时候,或者服务启动成功,但是运行不正常的时候,就需要查看启动日志了。
运行命令:
systemctl status cloudera-scm-server -l
查看更详细,还可以使用如下命令:
[#zeyu#]
journalctl -u cloudera-scm-server.service --since todaycloudera-scm-se...

其他技术手工处理问题:ORA-00020:maximum number of processes (500) exceeded
结束掉进程,sysdba才能连接上
# 两种写法都可以,结束掉前10个进程[root@oramod ~]# ps -ef|grep LOCAL=NO|grep -v grep|awk '{print $2}'|head|xargs kill -9[root@oramod ~]# ps -ef|grep LOCAL=NO|grep -v grep|cut -c 9-15|head|xar...