\1. 查看Linux启动的服务 . 代码如下: chkconfig --list 查询出所有当前运行的服务 chkconfig --list atd 查询atd服务的当前状态 2.停止所有服务并且在下次系统启动时不再启动,如下所示: . 代码如下: chkconfig --levels 12345 ...
分类:
系统相关 时间:
2021-02-22 11:50:57
阅读次数:
0
NX9+VS2012 #include <uf.h> #include <uf_ui.h> #include <uf_ui_ont.h> #include <uf_cambnd.h> UF_initialize(); //获取当前加工导航器选中的对象数量和TAG int count = 0; tag ...
分类:
移动开发 时间:
2021-02-20 12:38:00
阅读次数:
0
#include<stdio.h> #include<string.h> int main(void){ char ch,stro[1001],stack[1001]; int numstack[1001]; int top=-1,head=-1; /************************ ...
分类:
编程语言 时间:
2021-02-20 12:11:32
阅读次数:
0
tomcat 启动tomcat cd /usr/tomcat/apache-tomcat-7.0.57/bin/ ./startup.sh 停止tomcat ./shutdown.sh 查看tomcat日志信息 tail -200f /usr/tomcat/apache-tomcat-7.0.57/ ...
分类:
其他好文 时间:
2021-02-20 11:58:57
阅读次数:
0
线上故障主要包括cpu 磁盘 内存 网络等问题 依次排查 1.cpu 1) 先用ps找到进程pid 2) top -H -p pid 找到cpu占用高的线程 3)printf '%x\n' pid 获得16进制的nid 4) jstack pid |grep 'nid' -C5 -color 显示堆 ...
分类:
其他好文 时间:
2021-02-20 11:45:56
阅读次数:
0
游客登录鉴权之业务代码实战 系列文章 从0到1使用Golang开发生产级麻将游戏服务器—第1篇 从0到1使用Golang开发生产级麻将游戏服务器—第2篇 从0到1使用Golang开发生产级麻将游戏服务器—第3篇 介绍 这将是一个完整的,完全践行 DevOps/GitOps 与 Kubernetes ...
分类:
其他好文 时间:
2021-02-19 13:15:09
阅读次数:
0
Google Cloud Platform https://cloud.google.com/icons/ Azure https://docs.microsoft.com/en-us/azure/architecture/icons/ CISCO http://www.cisco.com/web/ ...
分类:
其他好文 时间:
2021-02-19 12:57:52
阅读次数:
0
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:
其他好文 时间:
2021-02-18 13:06:04
阅读次数:
0
一、MySQL安装 0、下载社区版安装包 官网下载地址:https://dev.mysql.com/downloads/installer/ 1、进入安装页面,这里不选择默认安装的所有工具,仅选择Server only。 2、如果没有VC++环境就点击execute安装,已安装就继续下一步。 3、安 ...
分类:
数据库 时间:
2021-02-17 15:08:41
阅读次数:
0
##数据库相关概念 **DB:**数据库(database):存储数据的“仓库”。它保存了一系列有组织的数据 **DBMS:**数据库管理系统,又称为数据库软件(产品),用于管理DB中的数据 **SQL:**结构化查询语言,用于和DBMS通信的语言 文件目录介绍 my.ini文件下存在 端口号,字符 ...
分类:
数据库 时间:
2021-02-17 15:04:21
阅读次数:
0