安装DataX-Web
原创 精选 2024-02-02 09:31:17
1896阅读
第一步配置网络确保网络通畅,dns能解析第二步 vi /etc/yum.repos/iou-web.repo [iou-web] name=IOUWeb Interface baseurl=http://public.routereflector.com/iou-web/yum enabled=1 gpgcheck=1 gpgkey=http://p
原创 2013-08-27 17:07:38
2160阅读
有没有想过在浏览器连接终端?一般情况下咱们使用终端工具通过ssh协议连接服务器,端口号默认是22。假如有网络限制22端口通信或者其他什么原因,你可以试试这款工具。先看看它长什么样子本文以centos为例介绍安装过程安装epel-release[root@localhost ~]# yum install epel-release - 已加载插件:fastestmirror Loading mirr
原创 2023-12-05 14:48:13
266阅读
1、安装Apache[root@localhost ~]# yum -y install httpd# 开机自启动[root@localhost ~]#chkconfig httpd on# 启动httpd 服务[root@localhost ~]# service httpd start现在直接在浏览器键入http://localhost 或 http://本机IP ...
原创 2019-01-13 12:53:35
30阅读
 1、安装apache2、安装php3、安装mysql1、安装apache安装:直接使用yum安装apache:yum install httpd          rpm使用:          
转载 2023-12-13 12:23:16
43阅读
环境:虚拟机centos7+jdk8+tomcat8+mariadb(相当于mysql) 注:命令提示符里面输入任何密码都不会显示,所以不要认为自己没输入,只是你没看到而已。安装的工具: 在yum源安装了:vim、tree、wget、mariadb-server、mariadb、nginx、keepalived 命令:yum -y install vim ; yum -y install t
转载 2024-05-03 22:07:51
65阅读
1、WebBench安装:yum install ctags(先安装依赖库)mkdir /usr/local/man (创建一个目录不然会报错)wget http://home.tiscali.cz/~cz210552/distfiles/webbench-1.5.tar.gztar zxvf webbench-1.5.tar.gzcd webbench-1.5makemake installwe
原创 2017-04-05 16:33:10
1351阅读
目录什么是Cassandra Web?环境规格:第一步:CentOS 8上安装Ruby第二步:安装Cassandra Web必备软件包第三步:安装Cassandra Web界面第四步:Cassandra Web配置CentOS 8防火墙第五步:Cassandra Web创建数据库用户第六步:Cassandra Web界面启动第七步:Cassandra Web创建系统服务结论:在本文中,您将学习如何
转载 2021-02-04 12:48:59
592阅读
2评论
Centos/RHCL/Fedora安装web管理平台 Centos从8以后就自带了cockpit管理平台,之前的版本也可以手动安装,如果你系统没有这个功能可以往下看来安装。 访问方式 https://IP:9090 安装教程 关闭防火墙 安装了并且启用了访问不了 最大的原因就是防火墙没关。 # 关闭防火墙 [root@fedora ~]# systemctl stop firewalld #
原创 2023-07-04 14:23:58
136阅读
在本文中,您将学习如何在CentOS 8上安装Cassandra Web界面。 什么是Cassandra Web? Cassandra Web是带有AngularJS和服务器发送的事件的Apache Cassandra的Web界面。Cassandra Web是免费的开放源代码,其源代码可在GitHu ...
转载 2020-12-21 20:15:00
235阅读
2评论
Centos安装java web的环境 ,本次例子尽量不用yum形式安装(因为我不知道yum安装怎么指定目录,想把java,tomcat,mysql安装到指定的文件夹下,好管理). (java和tomcat是下载tar后解压,配置环境变量和开机启动,mysql用源码安装) 搭建前的准备: 需要安装
转载 2020-06-04 16:45:00
55阅读
2评论
Centos/RHCL/Fedora安装web管理平台
原创 2023-04-03 19:30:50
247阅读
一、网站拓扑ansible主机inventory的情况:# cat ansible_inventory.txt [front]10.11.7.224 ansible_connection=ssh ansible_ssh_user=root ansible_ssh_pass=xuAK10.11.5.209 ansible_connection=ssh ansible_ssh_user=ro
原创 2017-04-15 10:52:18
2087阅读
1点赞
Caddy Web 服务器是一个开源的、支持 /2 的 Web 服务器,使用 Go 语言编写。Caddy 最显着的功能之一是自动为托管网站启用 TLS。Caddy 自动从 Let's Encrypt 获取和更新 TLS 证书。Caddy 也可以配置为反向代理服务器。在本文中,将在 CentOS 8 中安装 Caddy Web 服务器并在 Caddy 上配置 网站
原创 2022-04-05 13:36:50
581阅读
1点赞
(Introduction)The Apache HTTP server is the most widely-used web server in the world. It provides many powerful features including dynamically loadable modules, robust media support, and extensive int
转载 2024-03-21 16:56:52
48阅读
Webbench是有名的网站压力测试工具编译安装:1. wget http://www.sfr-fresh.com/unix/privat/webbench-1.5.tar.gz2. tar zxvf webbench-1.5.tar.gz3. cd webbench-1.54. make && make installwebbench安装报错没有安装ctags如果没有安装 cta
原创 2013-11-05 10:15:10
938阅读
一、安装Yum –y install subversion建立版本库目录Mkdir –p /mnt/svn建立svn库Svnadmin create /mnt/svn/delieato启动svn:Svnserve –d –r /mnt/svn 二、配置库针对每一个库,其conf目录下有三个配置文件(authz、passwd、svnserve.conf)1、  authz,设置用
原创 2014-12-30 16:18:44
271阅读
Webbench是有名的网站压力测试工具编译安装:1. wget http://www.sfr-fresh.com/unix/privat/webbench-1.5.tar.gz2. tar zxvf webbench-1.5.tar.gz3. cd webbench-1.54. make && make installwebbench安装报错没有安装ctags如果没有安装 cta
转载 精选 2014-12-27 22:47:53
5195阅读
centos6.6安装gogs参考文档 http://gogs.io/docs/installation我使用的是包管理的方式进行安装的。[root@yy ~]# cat /etc/redhat-release  CentOS release 6.6 (Final) [root@yy ~]# cat
原创 精选 2015-09-17 15:32:46
2570阅读
1评论
1.概述centos6.4安装Python, setuptool, pip, virtualenv, mysql, django, libevent, memcache, nginx, git, beyond compare, jdk, eclipse, pydev 2.参考命令centos6.4自带Python2.6, 反正2.x区别不大,也就将就着用了.1.安装setuptool[p
转载 2017-07-13 20:26:10
668阅读
  • 1
  • 2
  • 3
  • 4
  • 5