Delete content/posts/create-user-keytab.md.save

This commit is contained in:
Руслан 2023-09-15 17:04:07 +06:00 committed by GitHub
parent 0ac50e5fc2
commit db7a135d02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
```