linux centos ubuntu
linux centos ubuntu
luochengquan
这个作者很懒,什么都没留下…
展开
-
Minio安装
minio 安装原创 2022-07-19 20:56:17 · 1123 阅读 · 0 评论 -
frps新版本服务端部署,参考freefrps.com
下载github 下载地址 https://github.com/fatedier/frp/releasesLinux下载frp_0.37.1_linux_amd64.tar.gz 并解压配置bind_addr = 0.0.0.0bind_port = 7000vhost_http_port = 7080vhost_https_port = 7443dashboard_addr = 0.0.0.0dashboard_port = 7500dashboard_user = freefrps原创 2021-12-15 23:32:49 · 1256 阅读 · 0 评论 -
内网穿透使用免费的frps服务器
代码联调有时候需要前端直接访问本地电脑测试,这时要处理微信等第三方回调接收问题.网址https://www.freefrps.com/frps.ini配置 [common] server_addr = frp.freefrps.com server_port = 7000 token = freefrps [luo8765] type = http local_ip = 127.0.0.1 local_port = 8765 remote_port = 80 custom_do原创 2021-10-20 14:02:20 · 2411 阅读 · 0 评论 -
微服务linux服务器安装需要的全部程序
#切换阿里源yummv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backupwget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repoyum makecacheyum install ufw nginx docker docker-compose java-devel java8 git原创 2020-12-13 14:08:28 · 226 阅读 · 0 评论 -
docker-compose安装tomcat,mariadb,redis,mongo,rabbitmq,elasticsearch.
version: '3.1'services: tomcat: image: tomcat restart: always ports: - 8080:8080 volumes: - "/app/dockerwork/tomcat-webapps:/usr/local/tomcat/webapps" mariadb: im...原创 2020-03-13 18:38:43 · 345 阅读 · 1 评论 -
centos 安装 新版 php73
1、首先安装 EPEL 源:yum install epel-release安装 REMI 源:yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm2、安装 Yum 源管理工具:yum install yum-utils3、安装 PHP7.3:yum install ...原创 2019-12-12 10:43:45 · 1024 阅读 · 0 评论 -
docker 国内镜像库 可用
ubuntu ubuntu 配置 /etc/docker/daemon.json 文件不存在就创建 { “registry-mirrors”: [“http://hub-mirror.c.163.com“] } ubuntu docker pull hub.c.163.com/nce2/ubuntu:16.04 nginx docker pull daocloud.io/l...原创 2018-01-22 15:33:06 · 919 阅读 · 0 评论 -
全新阿里云centos服务器完整安装配置(二) yum安装 svn nginx docker php nodejs mysql mongodb
切换阿里源1、备份mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors....原创 2018-03-26 18:12:48 · 309 阅读 · 0 评论 -
全新阿里云centos服务器完整安装配置(一) 挂载云盘 设置安全组策略
挂载云盘dffdisk -lfdisk /dev/vdbWelcome to fdisk (util-linux 2.23.2).Changes will remain in memory only, until you decide to write them. Be careful before using the write command.Device...原创 2018-03-26 16:37:05 · 1086 阅读 · 0 评论 -
centos yum 源
1、备份mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/CentOS 5wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyu...原创 2018-03-08 10:25:45 · 183 阅读 · 0 评论