четверг, 12 апреля 2018 г.

samba multiple connections to a server or shared resource by the same user are not allowed

Решение.
To solve this problem, try the following steps:
  1. Select the “Start” button, then type “cmd“.
  2. Right-click the “Command Prompt” option, then choose “Run as administrator“.
  3. Type “net use“, then press “Enter“.
  4. Look for any drives listed that may be questionable. In many cases where this problem occurs, the drive may not be assigned a letter. You’ll want to remove that drive.
  5. From the Command Prompt, type:
    net use /delete \\servername\foldername(where the servername\foldername is the drive that you wish to delete.)
In some extreme cases, you may want to simply use the command net use * /delete

среда, 4 апреля 2018 г.

Windows XP просмотр подключении

net config server

net session - список клиентов

NFS монтирование пример

Проверка расшаренных директории на удаленном сервере:

showmount -e 172.27.1.50


само монтирование: mount -o nfsvers=4 -vv 172.27.1.50:/remote/folder /local/folder

на некоторых системах ключ монтирования прописывается так:
mount -t nfs4 -vv 172.27.1.50:/volume1/remote /vol/backupdisk/


для fstab172.27.1.50:/volume1/remote/folder /local/folder nfs rsize=32768,wsize=32768,timeo=600,intr,noexec,hard,nosuid,user


вторник, 3 апреля 2018 г.

nginx разрешить доступ только для подсети к папке

Понадобилось закрыть доступ с интернета в папку на сайте, нашел решение.

В директиву server файла /etc/nginx/ssl.conf (для https) добавляем такой location и перезапускаем nginx.


location /folder/ {
allow   172.27.0.0/16;
deny    all;
}

для нескольких папок

location ~* ^/(folder1|folder2)($|\/){
allow   172.27.0.0/16;
deny    all;

}