码迷,mamicode.com
首页 >  
搜索关键字:kick start    ( 26261个结果
jsp分页
所需要的数据: 1.总记录数: totalRecords select count(*) from table 2.总页数: totalPage 3.当前页数: currentPage = 1 4.每页多少条记录: pageSize :10条 5.每页数据 start = (currentPage- ...
分类:Web程序   时间:2020-12-30 11:16:02    阅读次数:0
四、docker容器的操作
一、容器的启动 方法一:不推荐使用 先创建一个容器 docker create 镜像名称 在启动容器 docker start 镜像名称 方法二:推荐的 docker run -d -p 宿主机端口:镜像端口 镜像名称:version run:创建并运行一个容器 -d:在后台运行 -p:端口映射,把 ...
分类:其他好文   时间:2020-12-29 11:18:54    阅读次数:0
logstash客户端传送symantec日志到elasticsearch
一、安装相应版本的logstash wget https://artifacts.elastic.co/downloads/beats/logstash/logstash-7.5.2-x86_64.rpm rpm -ivh logstash-7.5.2-x86_64.rpm 二、配置rsyslog接 ...
分类:其他好文   时间:2020-12-25 12:34:22    阅读次数:0
使用gitlab-runner本地验证.gitlab-ci.yml
背景 在gitlab上配置新项目的CI的时候,需要编写项目的 .gitlab-ci.yml 文件。 每次修改 .gitlab-ci.yml 文件之后都要执行git push让GitLab去构建来验证当前的CI脚本是否能正确构建,甚是麻烦,同时增加了很多无营养的Git提交。 若我们能够在修改完.git ...
分类:其他好文   时间:2020-12-25 12:01:34    阅读次数:0
KVM_IOEVENTFD KVM_IRQFD
kvm_vm_ioctl(s, KVM_IRQFD, &irqfd); kvm_vm_ioctl(kvm_state, KVM_IOEVENTFD, &kick) Ioctl Cmd Implement function Src file KVM_CREATE_VCPU kvm_vm_ioctl_c ...
分类:其他好文   时间:2020-12-24 12:27:36    阅读次数:0
docker run 命令转化 docker-compose
docker run -d \ --hostname gitlab.example.com \ -p 80:80 \ -p 443:443 \ -p 22:22 \ --name gitlab \ --restart unless-stopped \ -v gitlab-config:/etc/gi ...
分类:其他好文   时间:2020-12-24 11:58:54    阅读次数:0
tomcat 报错显示Server Tomcat v8.5 Server at localhost was unable to start within 45 seconds.
错误: Server Tomcat v8.5 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the ...
分类:其他好文   时间:2020-12-24 11:42:44    阅读次数:0
Delphi 控制摄像头操作
DELPHI控制摄像头操作可以使用TVideoCap控件,或直接使用MS的AVICAP32.DLL就可轻松的实现对摄像头编程。 首先常量定义和函数定义: implementationconst WM_CAP_START = WM_USER;const WM_CAP_STOP = WM_CAP_STA ...
分类:Windows程序   时间:2020-12-23 12:46:58    阅读次数:0
linux部署Tomcat
前提配置过jdk 上传Tomcat到Linux并解压 .gz结束的压缩包 tar -zxvf tomcat 解压完配置环境变量 vi /etc/profile 打上文件所在路径 退出并保存 :wq! 启动Tomcat 进入Tomcat的bin目录下: 启动:./startup.sh 停止:./shu ...
分类:系统相关   时间:2020-12-23 12:29:41    阅读次数:0
linux上的mysql忘记密码
1、查看mysql服务是否起来 2、通过修改mysql的配置文件/etc/my.conf,跳过验证,:wq保存退出 3.重启数据库 运行命令:systemctl restart mysqld 4.进入到mysql数据库 运行命令:mysql -u root 5、修改密码 运行语句:use mysql ...
分类:数据库   时间:2020-12-23 11:52:10    阅读次数:0
26261条   上一页 1 ... 48 49 50 51 52 ... 2627 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!