默认使用 pecl 安装的 PHP 扩展是最新版本的,例如以下将安装 oci8-3.3.0
pecl install oci8
假如我们想安装 oci8-2.2.0 则需要需要使用以下的命令进行安装
pecl install oci8-2.2.0
默认使用 pecl 安装的 PHP 扩展是最新版本的,例如以下将安装 oci8-3.3.0
pecl install oci8
假如我们想安装 oci8-2.2.0 则需要需要使用以下的命令进行安装
pecl install oci8-2.2.0
dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
dnf module install php:remi-8.2
dnf install php
[root@rocky8 yum.repos.d]# php -v
PHP 8.2.11 (cli) (built: Sep 26 2023 11:11:58) (NTS gcc x86_64)
Copyright (c) The PHP Group
Zend Engine v4.2.11, Copyright (c) Zend Technologies
with Zend OPcache v8.2.11, Copyright (c), by Zend Technologies
yum install conda
source /etc/profile.d/conda.sh
conda create -n python311 python=3.11
conda activate python311
当前 python 就变成 3.11 的环境了
sudo sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list sudo apt update sudo apt install -y tasksel sudo tasksel install ubuntu-desktop-minimal
然后正常重启就可以了
brew install visual-studio-code
通过 brew 安装 mosquitto,并启动
brew install mosquitto
mosquitto -v
打开终端订阅 topic1
mosquitto_sub -t topic1
打开新的终端往 topic1 发消息
mosquitto_pub -t topic1 -m "HelloWorld"
docker run -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin -p 8080:8080 quay.io/keycloak/keycloak:14.0.0
使用浏览器访问 http://localhost:8080,用户名:admin,密码:admin 访问
首先对源仓库执行 clone
git clone --mirror git@domain1.com:group1/repo1.git
然后对目标仓库执行 push
git push --mirror git@domain2.com:group2/repo2.git
这样 2 个仓库内容就完全一致了
curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh" | sudo bash
yum install -y gitlab-runner
在 gitlab 后台注册新的 runner,按照提示输入命令,运行方式选择 docker, 默认镜像选择 docker:stable
gitlab-runner register --url http://172.20.103.21 --token xxxxxxxx
systemctl enable gitlab-runner
systemctl restart gitlab-runner
curl https://get.acme.sh | sh -s email=admin@domain.com
acme.sh --issue --dns -d yourdomain.com \
--yes-I-know-dns-manual-mode-enough-go-ahead-please
根据提示创建相应的 TXT 记录,再执行
acme.sh --renew -d yourdomain.com \
--yes-I-know-dns-manual-mode-enough-go-ahead-please
如果DNS服务器支持API,可以与acme.sh对接,一步完成,以 CLOUDFLARE 为例,如果直接使用 Global API Key,则使用命令:
export CF_Key=00000000000000000000000000000000
acme.sh --issue --dns dns_cf -d yourdomain.com
如果使用首先的 API 权限,则使用命令:
export CF_Token=00000000000000000000000000000000
acme.sh --issue --dns dns_cf -d yourdomain.com
当前版本的 acme.sh 默认使用的是 zerossl 作为证书签发服务器,如果你想更换为 letsencrypt,可以使用 server 参数来实现:
acme.sh --issue --dns dns_cf -d yourdomain.com --server letsencrypt