mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 09:27:17 +03:00
Delete content/posts/create-user-keytab.md.save
This commit is contained in:
parent
0ac50e5fc2
commit
db7a135d02
@ -1,44 +0,0 @@
|
||||
---
|
||||
title: Создание keytab файла для пользователя
|
||||
description: В *nix системах
|
||||
date: 2022-11-25T17:57:00+05:00
|
||||
tags: [linux, krb5]
|
||||
---
|
||||
## Настройка NFS-сервера
|
||||
|
||||
### Установка пакета
|
||||
```shell
|
||||
apt -y install nfs-kernel-server
|
||||
```
|
||||
|
||||
### Создание каталога, который будет расшарен
|
||||
```shell
|
||||
mkdir /nfs
|
||||
chmod 777 /nfs
|
||||
```
|
||||
|
||||
### Разрешение сетевого доступа
|
||||
```shell
|
||||
/nfs <client-ip>(rw,sync,no_root_squash,no_subtree_check)
|
||||
|
||||
# /etc/exports
|
||||
```
|
||||
|
||||
## Настройка NFS-клиента
|
||||
|
||||
### Установка пакета
|
||||
```shell
|
||||
apt -y install nfs-common
|
||||
```
|
||||
|
||||
### Запуск службы
|
||||
``` shell
|
||||
systemctl enable --now rpcbind
|
||||
```
|
||||
|
||||
### Автомонитрование
|
||||
```shell
|
||||
<server-ip>:/nfs /nfs nfs defaults 0 0
|
||||
|
||||
# /etc/fstab
|
||||
```
|
Loading…
Reference in New Issue
Block a user