Автор: human
- Сайт
- https://itc-life.ru/
Записи автора human
Parted – работа с дисками linux
Как создать новую таблицу разделов mbr и раздел с файловой системой fat32, который займет все место. <pre>parted -s /dev/sdd mklabel msdos mkpart primary fat32 0% 100%</pre> […]
Vsun cluster vmware
As Microsoft, VMware has a Software-Defined Storage solution called vSAN which is currently in version 6.2. This solution enables to aggregate local device storages as mechanical disks or SSD and create a highly available datastore. There are two deployment models: hybrid solution and full-flash solution. In hybrid solution, you must have flash cache devices and […]
Добавляем права на чтение пользователю в postgres. ОШИБКА: нет доступа к отношению
Добавляем права на чтение пользователю в postgres. ОШИБКА: нет доступа к отношению CREATE ROLE newuser2 WITH LOGIN ENCRYPTED PASSWORD 'newpass'; ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO newuser2; GRANT USAGE ON SCHEMA public to newuser2; GRANT SELECT ON ALL SEQUENCES IN SCHEMA public TO newuser2; GRANT SELECT ON ALL TABLES IN […]