centos
文章平均质量分 66
云寻觅
没有做不到,只有想不到,专注人工智能,物联网,大数据,分布式,云计算、搜索引擎研发、实时语音通讯、APP、ESB企业服务总线研发、数据路由器、ERP、CRM、呼叫中心 等领域
展开
-
原创:centos7.1下 ZooKeeper 集群安装配置+Python实战范例
centos7.1下 ZooKeeper 集群安装配置+Python实战范例下载:http://apache.fayea.com/zookeeper/zookeeper-3.4.9/zookeeper-3.4.9.tar.gz解压: tar zxvf zookeeper-3.4.9.tar.gz -C /opt/改名:cd /opt/ && mv zookeeper-3.4原创 2016-12-09 16:58:28 · 445 阅读 · 0 评论 -
css 、js 多文件请求合并返回 之 Apache Models代码及编译配置(CentOS 7)
一、Apache Models代码mod_mergecss.c#include "httpd.h"#include "http_config.h"#include "http_protocol.h"#include "ap_config.h"#include "apr_pools.h"#include "apr_strings.h"#include <st原创 2018-10-12 17:03:03 · 541 阅读 · 0 评论 -
odoo (open erp) 12.0 Centos下的源码安装及配置
odoo 12.0 Centos下的安装及配置postgres密码:XXXXXX1. 安装 PostgreSQL首先,首先我们需要更新CentOS 7的软件包来确保是最新的包,补丁和安全更新。要更新我们的系统,我们要在shell下运行下面的命令。# yum clean all# yum update现在我们要安装PostgreSQL,因为OpenERP使用PostgreSQL作为它的数据库。要安装...原创 2018-06-15 10:26:53 · 2740 阅读 · 0 评论 -
手把手教你用delphi 10.2.3 在windows上编译Centos 7下的命令行程序,适合中小学生
手把手教你用delphi 10.2.3 在windows上编译Centos 7下的命令行程序,适合中小学生1、下载并安装 a)下载:delphicbuilder10_2_3_2631.iso 官网下载即可 b)安装及破解 .iso加载之后执行setup.exe 到了选择语言之后点下一步,到了Input License 这个界面之后打开 delp...原创 2018-06-15 10:05:55 · 1481 阅读 · 0 评论 -
这两周服务器被攻击,封锁了600多个IP地址段后今天服务器安静多了
这两周服务器被攻击,封锁了600多个IP地址段后今天服务器安静多了建议大家在自己的服务器上也封杀这些瘪三的地址iptables -I INPUT -s 123.44.55.0/24 -j DROP iptables -I INPUT -s 58.217.166.0/24 -j DROPiptables -I INPUT -s 5.101.40.0/24 -j DRO原创 2017-07-12 16:10:42 · 6714 阅读 · 2 评论 -
centos shell 编程-通过端口号kill对应的进程
centos shell 编程-通过端口号kill对应的进程方式一、端口固定------------------killportprocess.shfSum(){ pid=$(lsof -F p -i:12345 | cut -b 2-);}fSum;kill -9 $pid;调用方式:./killportprocess.sh原创 2017-05-08 18:59:13 · 1133 阅读 · 0 评论 -
java编写service详细笔记 - centos7.2实战笔记(windows类似就不在重复了)
java编写service详细笔记 - centos7.2实战笔记(windows类似就不在重复了) 目标效果(命令行启动服务):service xxxxd start #启动服务 service xxxxd stop #停止服务详细步骤一、编译并安装jsvc 官网 https://commons.apache.org/daemon/ 1)原创 2017-05-02 22:27:54 · 1026 阅读 · 0 评论 -
C语言-apache mod(模块开发)-采用apxs开发实战(centos7.2 linux篇)
C语言-apache mod(模块开发)-采用apxs开发实战(centos7.2 linux篇)名词解释:apxsapxs is a tool for building and installing extension modules for the Apache HyperText Transfer Protocol (HTTP) server. apxs是用来编译和安装原创 2017-04-12 14:09:45 · 1218 阅读 · 0 评论 -
在linux上安装 sql server for linux
在linux上安装 sql server for linuxInstall SQL Server on Red Hat Enterprise LinuxInstall SQL ServerTo install the mssql-server package on RHEL, follow these steps:Enter superuser mo原创 2016-12-14 11:26:57 · 376 阅读 · 0 评论 -
centos6,centos7 根据ip地址列表文件进行防火墙封杀的shell脚本
centos6 shell脚本如下:cat $1 | while read linedo iptables -I OUTPUT -s ${line%.*}.0/24 -j DROP iptables -I INPUT -s ${line%.*}.0/24 -j DROP echo "File:${line%.*}"doneservice ipta...原创 2018-10-10 17:15:56 · 922 阅读 · 0 评论