lgvwiki/acts/digital/backlog.md

239 lines
7.2 KiB
Markdown
Raw Normal View History

2022-07-09 13:45:10 +02:00
---
title: Feuille de route pour le digital des Grands Voisins
description: Ceci est une feuille de route pour le digital des Grands Voisins
published: true
2022-07-15 13:50:36 +02:00
date: 2022-07-15T11:50:34.207Z
2022-07-09 13:45:10 +02:00
tags:
editor: markdown
dateCreated: 2022-07-09T11:45:07.076Z
---
# Feuille de route
2022-07-10 08:23:39 +02:00
## Développement applicatif
### Popup Expos
## Mise en containeurs à faire
2022-07-10 08:22:35 +02:00
2022-07-10 08:24:07 +02:00
https://discuss.linuxcontainers.org/t/howto-use-lxd-p2c/3574
2022-07-10 10:45:31 +02:00
https://blog.simos.info/how-to-compile-lxd-p2c-to-migrate-physical-servers-to-lxd-containers/
https://linuxcontainers.org/lxd/docs/latest/installing/
2022-07-10 12:15:41 +02:00
```
apt install sqlite3
aptitude install -y build-essential acl libacl1-dev libcap-dev liblxc1 \
libsqlite3-dev libudev-dev libuv1-dev attr autoconf automake \
dnsmasq-base git golang libacl1-dev libcap-dev libtool libudev-dev liblz4-dev \
libuv1-dev make pkg-config rsync squashfs-tools tar tcl xz-utils ebtables \
lxc-dev
cd /root
git clone https://github.com/canonical/raft.git
cd raft
autoreconf -i
./configure
make
sudo make install
cd ..
2022-07-10 12:39:19 +02:00
export CGO_CFLAGS="-I/deps/raft/include/ -I/deps/dqlite/include/"
export CGO_LDFLAGS="-L/deps/raft/.libs -L/deps/dqlite/.libs/"
export LD_LIBRARY_PATH="/deps/raft/.libs/:/deps/dqlite/.libs/"
export CGO_LDFLAGS_ALLOW="(-Wl,-wrap,pthread_create)|(-Wl,-z,now)"
2022-07-10 12:15:41 +02:00
```
2022-07-10 10:45:31 +02:00
```bash
wget https://github.com/lxc/lxd/archive/refs/heads/master.zip
unzip master.zip
cd lxd-master/
2022-07-10 11:49:14 +02:00
aptitude update
aptitude -y upgrade
2022-07-10 12:15:41 +02:00
apt install -y build-essential acl libacl1-dev libcap-dev liblxc1 liblxc-dev \
libsqlite3-dev libudev-dev libuv1-dev libdqlite-dev attr autoconf automake \
dnsmasq-base git golang libacl1-dev libcap-dev libtool libudev-dev liblz4-dev \
libuv1-dev make pkg-config rsync squashfs-tools tar tcl xz-utils ebtables \
go-dqlite golang-github-canonical-go-dqlite-dev
aptitude install -y build-essential acl libacl1-dev libcap-dev liblxc1 \
libsqlite3-dev libudev-dev libuv1-dev attr autoconf automake \
dnsmasq-base git golang libacl1-dev libcap-dev libtool libudev-dev liblz4-dev \
libuv1-dev make pkg-config rsync squashfs-tools tar tcl xz-utils ebtables \
aptitude install -y lxc-dev libdqlite-dev go-dqlite golang-github-canonical-go-dqlite-dev
2022-07-10 12:39:19 +02:00
wget https://github.com/lxc/lxd/archive/refs/heads/master.zip
unzip master.zip
cd lxd-master/
2022-07-10 10:45:31 +02:00
make deps
2022-07-10 11:49:14 +02:00
echo 'export CGO_CFLAGS="-I/root/go/deps/raft/include/ -I/root/go/deps/dqlite/include/"' >> /root/.bashrc
echo 'export CGO_LDFLAGS="-L/root/go/deps/raft/.libs -L/root/go/deps/dqlite/.libs/"' >> /root/.bashrc
echo 'export LD_LIBRARY_PATH="/root/go/deps/raft/.libs/:/root/go/deps/dqlite/.libs/"' >> /root/.bashrc
echo 'export CGO_LDFLAGS_ALLOW="(-Wl,-wrap,pthread_create)|(-Wl,-z,now)"' >> /root/.bashrc
source /root/.bashrc
2022-07-10 10:45:31 +02:00
make
echo 'export PATH="${PATH}:$(go env GOPATH)/bin"' >> /root/.bashrc
echo 'export LD_LIBRARY_PATH="$(go env GOPATH)/deps/dqlite/.libs/:$(go env GOPATH)/deps/raft/.libs/:${LD_LIBRARY_PATH}"' >> /root/.bashrc
source /root/.bashrc
root@contabob:~/lxd-master# lxd-migrate
Please provide LXD server URL: https://ikoulaf.appgv.com:8443
Certificate fingerprint: 7843bcb8cb...
ok (y/n)? y
1) Use a certificate token
2) Use an existing TLS authentication certificate
3) Generate a temporary TLS authentication certificate
Please pick an authentication mechanism above: 3
Your temporary certificate is:
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
It is recommended to have this certificate be manually added to LXD through `lxc config trust add` on the target server.
Alternatively you could use a pre-defined trust password to add it remotely (use of a trust password can be a security issue).
Would you like to use a trust password? [default=no]:
Press ENTER after the certificate was added to the remote server:
Remote LXD server:
Hostname: ikoulaf
Version: 5.3
Would you like to create a container (1) or virtual-machine (2)?: 1
Name of the new instance: contabob
Please provide the path to a root filesystem: /
Do you want to add additional filesystem mounts? [default=no]:
Instance to be created:
Name: contabob
Project: default
Type: container
Source: /
Additional overrides can be applied at this stage:
1) Begin the migration with the above configuration
2) Override profile list
3) Set additional configuration options
4) Change instance storage pool or volume size
5) Change instance network
Please pick one of the options above [default=1]:
Transferring instance: contabob: 1.39GB (6.05MB/s)
```
2022-07-10 10:46:48 +02:00
```bash
2022-07-10 12:39:19 +02:00
dnf makecache --refresh
dnf config-manager --set-enabled powertools
dnf install epel-release epel-next-release
2022-07-10 12:15:41 +02:00
dnf update
2022-07-10 10:46:48 +02:00
wget https://github.com/lxc/lxd/archive/refs/heads/master.zip
unzip master.zip
cd lxd-master/
2022-07-10 12:15:41 +02:00
dnf install acl attr autoconf automake dnsmasq git golang libacl-devel libcap-devel lxc-libs lxc-devel sqlite-devel libtool libudev-devel lz4-devel libuv make pkg-config rsync squashfs-tools tar tcl xz ebtables
2022-07-10 10:46:48 +02:00
make deps
export CGO_CFLAGS="-I/root/go/deps/raft/include/ -I/root/go/deps/dqlite/include/"
export CGO_LDFLAGS="-L/root/go/deps/raft/.libs -L/root/go/deps/dqlite/.libs/"
export LD_LIBRARY_PATH="/root/go/deps/raft/.libs/:/root/go/deps/dqlite/.libs/"
export CGO_LDFLAGS_ALLOW="(-Wl,-wrap,pthread_create)|(-Wl,-z,now)"
source /root/.bashrc
2022-07-10 12:39:19 +02:00
cd /root
2022-07-10 10:46:48 +02:00
wget https://go.dev/dl/go1.18.1.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.18.1.linux-amd64.tar.gz
2022-07-10 12:39:19 +02:00
echo 'export PATH=$PATH:/usr/local/go/bin' >> /etc/profile
source /root/.bashrc
cd /root/lxd-master
2022-07-10 10:46:48 +02:00
make
echo 'export PATH="${PATH}:$(go env GOPATH)/bin"' >> /root/.bashrc
echo 'export LD_LIBRARY_PATH="$(go env GOPATH)/deps/dqlite/.libs/:$(go env GOPATH)/deps/raft/.libs/:${LD_LIBRARY_PATH}"' >> /root/.bashrc
source /root/.bashrc
2022-07-10 10:48:15 +02:00
firewall-cmd --zone=public --add-port=8443/tcp --permanent
systemctl reload firewalld
vi ../tempcert
lxc config trust add /root/tempcert
2022-07-10 10:46:48 +02:00
```
2022-07-10 08:22:35 +02:00
### forge.appgv.com
### wiki.appgv.com
### id.appgv.com
### drive.appgv.com
### blog.appgv.com
### list.appgv.com
### web.appgv.com
2022-07-10 08:20:54 +02:00
## Validations à obtenir
### Préparer validation d'appgv.com
### Préparer validation des grandsvoisins.com
### Préparer validation des goodvillagers.com
2022-07-10 08:22:35 +02:00
## Noms de domaine à migrer
2022-07-09 13:45:10 +02:00
2022-07-10 06:48:19 +02:00
### Migrer drive.lesgv.com à drive.appgv.com
2022-07-09 13:59:22 +02:00
2022-07-10 06:48:19 +02:00
### Migrer forge.lesgv.com à forge.appgv.com
2022-07-09 13:45:10 +02:00
2022-07-10 06:48:19 +02:00
### Migrer wiki.lesgv.com à wiki.appgv.com
2022-07-09 13:45:10 +02:00
2022-07-10 06:48:19 +02:00
### Migerer id.lesgv.com à id.appgv.com
2022-07-09 13:45:10 +02:00
### Migrer mail.lesgv.com à mail.appgv.com
2022-07-10 06:48:19 +02:00
### Introduire pad.appgv.com
2022-07-09 13:45:10 +02:00
2022-07-10 06:48:19 +02:00
### Introduire paste.appgv.com
### Introduire monitoring.appgv.com
2022-07-09 13:45:10 +02:00
### Migrer com.lesgrandsvoisins.com à forum.appgv.com
### Alias \*.appgv.com à \*.grandsvoisins.com
2022-07-10 06:48:19 +02:00
blog, app (doneish), mail, pass, ...
2022-07-09 13:45:10 +02:00
### Migrer blog.lesgrandsvoisins.com à blog.grandsvoisins.com
### Migrer blog.agoodvillage.com à blog.goodvillagers.com
### Migrer fossil.lesgrandsvoisins.com à fossil.appgv.com
### Migrer web.lesgv.com à web.appgv.com avec alias
### Migrer list.lesgrandsvoisins.com à emailing.appgv.com
2022-07-10 06:48:19 +02:00
## Fait
2022-07-10 08:19:19 +02:00
### Migrer www.lesgrandsvoisins.com à www.grandsvoisins.com
Duplicated it actually.
2022-07-10 08:18:12 +02:00
### Migrer www.lesgv.com à www.appgv.com
2022-07-10 08:10:02 +02:00
### Migrer admin.village.tel à admin.appgv.com
### Alias vers www.grandsvoisins.com
### Alias vers www.goodvillagers.com
### Migrer agoodvillage.com vers goodvillagers.com
Corrected redriects and implemented a www redirect on base.
2022-07-10 06:48:19 +02:00
### Migerer lesgv.com à appgv.com
### Migrer visio.lesgv.com à meet.appgv.com
Intoroduit meet.appgv.com et lien changé sur lesgv.com.