Please help resolve the following. It could be similar to a need to restart the server.
I get the following error when I update my packages.
(@v1.12) pkg> update
┌ Warning: could not download https://pkg.julialang.org/registries
│ exception = RequestError: HTTP/2 301 (Failed to connect to in.pkg.julialang.org port 443 after 94 ms: Could not connect to server) while requesting https://pkg.julialang.org/registries
└ @ Pkg.Registry ~/.julia/juliaup/julia-1.12.1+0.aarch64.apple.darwin14/share/julia/stdlib/v1.12/Pkg/src/Registry/Registry.jl:77
Updating registry at `~/.julia/registries/General.toml`
Project No packages added to or removed from `~/.julia/environments/v1.12/Project.toml`
Manifest No packages added to or removed from `~/.julia/environments/v1.12/Manifest.toml`
My Julia instance.
julia> versioninfo()
Julia Version 1.12.1
Commit ba1e628ee49 (2025-10-17 13:02 UTC)
Build Info:
Official https://julialang.org release
Platform Info:
OS: macOS (arm64-apple-darwin24.0.0)
CPU: 11 × Apple M3 Pro
WORD_SIZE: 64
LLVM: libLLVM-18.1.7 (ORCJIT, apple-m3)
GC: Built with stock GC
Threads: 1 default, 1 interactive, 1 GC (on 5 virtual cores)
Thanks. I think this explains it. No actionable on our part then. I hope they get this resolved soon. Both loadbalancers and backends show “No data” on my side.
I do hope there’s a way to change the default mirror URL from any part of the world…
You can set the environment variable JULIA_PKG_SERVER .
# Use default server (or leave unset)
export JULIA_PKG_SERVER="https://pkg.julialang.org"
# Disable package server (slower, uses Git directly)
export JULIA_PKG_SERVER=""
# Use European mirror
export JULIA_PKG_SERVER="https://eu-central.pkg.julialang.org"