搜索 CentOS 共找到 31 条记录
Docker   2023-11-29 16:40   18   0  
搜索RocketMQ镜像:docker search rocketmq,​下载RocketMQ镜像:docker pull apache/rocketmq
服务器   2023-11-28 11:42   35   0  
镜像仓库:https://hub.docker.com,搜索rabbitMq,进入官方的镜像 选择带有“mangement”的版本(包含web管理页面),拉取镜像:docker pull rabbitmq:3.8.17-management
Docker   2023-11-26 16:19   32   0  
docker run -d \ --name=qbittorrent \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Asia/Shanghai \ -e WEBUI_PORT=8080 \ -p 8080:8080 \ -p 6881:6881 \ -p 6881:6881/udp \ -v /data/qbit//config:/config \ -v /data/qbit/downloads:/downloads \ --restart unless-stopped \ lscr.io/linuxserver/qbittorrent:latest
Docker   2023-11-26 16:17   28   0  
进入CentOS7运行命令并启动FileBrowser服务:docker run -d \ -v /root/data/docker_data/qbittorrent/qBittorrent/downloads:/srv \ -p 8082:80 \ --name filebrowser \ langren1353/filebrowser-ckplayer访问:http://0.0.0.0:8083
Docker   2023-11-26 11:04   34   0  
官网:https://www.portainer.io/,云服务开启端口:8000,9000,9443,2375,创建一个容器数据卷,进入根目录/data运行:docker volume create portainer_data
CentOS   2023-11-25 11:33   37   0  
centos查看IP的方法:ifconfig,ip addr,hostname -I命令
五花八门   2023-11-24 16:17   38   0  
​CentOS安装chrome浏览器:yum -y install google-chrome-stable
CentOS   2023-06-19 07:55   13   0  
一、开放端口用 --add-port firewall-cmd --permanent --add-port=8080/tcp 二、移除端口用 --remove-port firewall-cmd --permanent --remove-port=8080/tcp
CentOS   2023-06-01 09:53   34   0  
CentOS服务器设置本地数据库可以被连接的命令行: mysql -u root -p; grant all privileges on *.* to 'root'@'%' identified by 'mima' with grant option; flush privileges; exit; service mysqld restart;
CentOS   2023-05-31 08:18   44   0  
查看已安装的PHP版本:ls -l /usr/bin/php 修改PHP其他版本:ln -sf /www/server/php/74/bin/php /usr/bin/php