sim3x, дело не в этом. Просто нужен инструмент, с помощью которого можно планировать структуру БД без привязки к конкретной СУБД (и даже без связи с СУБД). Например, как QuickDBD, но там есть недоработки.
OpenSSH_7.5p1, OpenSSL 1.0.2k 26 Jan 2017
debug1: Reading configuration data /c/Users/User/.ssh/config
debug1: /c/Users/User/.ssh/config line 1: Applying options for dev-srv
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to dev.devsrv.local [192.168.1.45] port 28422.
debug1: Connection established.
debug1: identity file /c/Users/User/.ssh/devserver type 1
debug1: key_load_public: No such file or directory
debug1: identity file /c/Users/User/.ssh/devserver-cert type -1
debug1: identity file /c/Users/User/.ssh/devserver type 1
debug1: key_load_public: No such file or directory
debug1: identity file /c/Users/User/.ssh/devserver-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.5
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.7p1 Debian-5+deb8u3
debug1: match: OpenSSH_6.7p1 Debian-5+deb8u3 pat OpenSSH* compat 0x04000000
debug1: Authenticating to dev.devsrv.local:28422 as 'git'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: compression: none
debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:2N6tLwNgUROiR98wR2HaUwvNpl4KDYyf4Lap5sfnfGw
debug1: Host '[dev.devsrv.local]:28422' is known and matches the ECDSA host key.
debug1: Found key in /c/Users/User/.ssh/known_hosts:13
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /c/Users/User/.ssh/devserver
debug1: Authentications that can continue: publickey,password
debug1: Offering RSA public key: /c/Users/User/.ssh/devserver
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: password
Иван Корюков, да, все права расставлены уже были. И StrictModes стоит yes. Наверное проблема в том, что у меня включена опция PasswordAuthentication yes.
В конфиге ssh-сервера опция PasswordAuthentication должна быть yes? Она сейчас у меня стоит как PasswordAuthentication yes. Обязательно ли её ставить no? Просто я хотел, чтобы один пользователь мог по ssh заходить с помощью ключа, а другой с помощью пароля. Такое возможно?
К счастью, всё только начинается :-) Напрямую никто код не редактирует.
Да, я хотел бы, чтобы /var/www/project был bare-репозиторием, чтобы "показать сайт" и чтобы все разработчики пушили только в него. Потому что могу потянуть пока только эту схему (без центрального сервера).
Моб. клиент будет устанавливать с сокет-сервером соединение только после успешной авторизации (YII). Т.е., web-приложение после успеха отдаст моб. клиенту куки с неким ИД. После этого моб. клиент возьмёт этот ИД и инициирует соединение с сокет-сервером (ИД будет передаваться в заголовке сокет-запроса). Коннект будет успешным, если ИД окажется корректным.
Насколько легко реализовать такую схему, если сокет-сервер делать на Go?