The OpenNET Project / Index page

[ новости /+++ | форум | теги | ]

форумы  помощь  поиск  регистрация  майллист  вход/выход  слежка  RSS
"как установить и настроить nxserver"
Вариант для распечатки  
Пред. тема | След. тема 
Форум Открытые системы на сервере (Система. проблемы, диагностика / FreeBSD)
Изначальное сообщение [ Отслеживать ]

"как установить и настроить nxserver"  +/
Сообщение от metnek (ok) on 13-Окт-10, 20:44 
Как поставить nxserver вернее как правельно node.conf настроить
у мня запущем kde
нужно сделать сервер терминалов для 1с
вот что я делал
cd /usr/ports/net/nxserver
make all istall clean && rehash
потом ввел ./nxserver --start

на клиенте тобишь на windows xp паставил nx client for windows
запускаю а там ошибка:
NX> 203 NXSSH running with pid: 1732
NX> 285 Enabling check on switch command
NX> 285 Enabling skip of SSH config files
NX> 285 Setting the preferred NX options
NX> 200 Connected to address: 178.88.51.119 on port: 22
ssh_exchange_identification: Connection closed by remote host
в чем я провенился вот конфиг node.conf:

# node.conf
#
# This file is provided by FreeNX. It should be placed either into
# /etc/nxserver/node.conf (FreeNX style) or /usr/local/NX/etc/node.conf
# (NoMachine NX style).
#
# It is mostly compatible with NoMachine node.conf. The most important
# difference is that no spaces are allowed when assigning values (eg
# "A=value" is allowed, "A = value" is NOT).
#
# This file is sourced by bash, so you can do some fancy stuff here if you
# want to, but be aware that it is sourced 3 times per connection. If you
# want autostart stuff, set NODE_AUTOSTART instead!
#
#
# You surely are aware that FreeNX is based on the fantastic results that
# the hard work by NoMachine.com has achieved. NoMachine.com released the
# core NX libraries under the GPL. The installation of these libs are the
# precondition for all FreeNX scripts to work. If you are installing this
# software with the help of one of the package management tools of your
# Linux distribution, you can assume that this dependency is taken care of
# by the tool.
#
# You have questions about the inner workings of the NX technology?
#
# Then you are recommended to first check out the rich and very detailed
# NoMachine documentation and their online Knowledge Base at
#
#           http://www.nomachine.com/kb/
#
# Other sources of information are the NoMachine mailing lists
# (nxusers@nomachine.com and nxdevelopers@nomachine.com):
#
#           http://www.nomachine.com/mailinglists.php
#
# The FreeNX (freenx-knx@kde.org) list is here:
#
#           https://mail.kde.org/mailman/listinfo/freenx-knx
#
# SVN: $Id: node.conf.sample 226 2006-07-04 23:38:10Z fabianx $

#########################################################################
# General FreeNX directives
#########################################################################

# The host name which is used by NX server. It's should be used if it's
# different than the default hostname (as returned by `hostname`)
#SERVER_NAME="$(hostname)"

# The port number where local 'sshd' is listening.
#SSHD_PORT=22


#########################################################################
# Authentication / Security directives
#########################################################################

# Authentication directives

# This adds the usermode to the possible authentication methods
# Usermode means that a user can start the nxserver as his shell
# and connect directly to the right server via a custom client.
#ENABLE_USERMODE_AUTHENTICATION="0"

# This adds the passdb to the possible authentication methods
#ENABLE_PASSDB_AUTHENTICATION="1"

# This adds SSH to the possible authentication methods. For it to work sshd
# must be set up at localhost accepting password authentication.
#ENABLE_SSH_AUTHENTICATION="1"

# This adds SU to the possible authentication methods. For it to work the
# "nx" user must be in the wheel (RedHat, Fedora) or the users group (SUSE)
# and the user logging in must have a valid shell that accepts the -c
# parameter.
#ENABLE_SU_AUTHENTICATION="0"

# Require all users to be in the passdb, regardless of authentication method
#ENABLE_USER_DB="0"


# If enabled forces the user to use encryption. This will bail out
# if the user does not have encryption enabled.
#ENABLE_FORCE_ENCRYPTION="0"

# Refuse the NX client connection if SSHD does not export the
# SSH_CONNECTION and SSH_CLIENT variables in the environment
# passed to the NX server.
# 1: Will check the remote IP and will not accept the
#    connection if it can't be determined.
# 0: Will accept the connection even if the remote IP
#    is not provided.
#SSHD_CHECK_IP="0"


#########################################################################
# Restriction directives
#########################################################################

# The base display number from which sessions are started.
#DISPLAY_BASE=1000

# The maximum number of contemporary sessions that can be run on FreeNX
#SESSION_LIMIT=200

# The maximum number of contemporary sessions that a single user can run
# on FreeNX. Defaults to the value of SESSION_LIMIT.
#SESSION_USER_LIMIT=200

# The number of displays reserved for sessions, it has to be greater or equal
# to the maximum number of contemporary sessions that a server can run.
#DISPLAY_LIMIT=200


# User for which sessions should be persistent. Either the keyword "all" or a
# comma-separated list of usernames or groups in the @groupname syntax.
#ENABLE_PERSISTENT_SESSION="all"

# Users and groups for whom persistent sessions should be disabled.
# Especially useful if ENABLE_PERSISTENT_SESSION="all"
#DISABLE_PERSISTENT_SESSION=""


#########################################################################
# Logging directives
#########################################################################

# This directives controls the verbosity of the server-wide log.
# 0: No Logging
# 1: Errors
# 2: Warnings
# 3: Important information
# 4: Server - Client communication
# 5: Information
# 6: Debugging information
# 7: stderror of some applications
#NX_LOG_LEVEL=0

# By setting this to 0 the nxserver might be a bit faster, but passwords can be found in the log files.
#NX_LOG_SECURE=1

# Before turning logging on, please make sure that NX_LOGFILE is
# writeable for the "nx" user
#NX_LOGFILE=/var/log/nxserver.log

# This directive controls if the temporary session directory
# ($HOME/.nx/C-<hostname>-<display>-<session_id>) should be kept after a
# session has ended. A successfully terminated session will be saved as
# T-C-<hostname>-<display>-<session_id> while a failed session will be saved
# as F-C-<hostname>-<display>-<session_id>.
# The default is to cleanup the directories.
#SESSION_LOG_CLEAN=1

# Amount of seconds nxserver is to keep session history. The default of 2592000
# is equivalent to 30 days. If this is 0 no session history will be kept
# and a negative value denotes infinity.
#SESSION_HISTORY=2592000


#########################################################################
# Forwarding directives
#########################################################################

# FreeNX with ENABLE_SERVER_FORWARD="1" will automatically forward all
# connections to the host specified in SERVER_FORWARD_HOST with the
# secret key SERVER_FORWARD_KEY.
#
# This allows to have a "chain" of NX Servers. Note that you will need to
# use "SSL encryption" for all connections.

#ENABLE_SERVER_FORWARD="0"
#SERVER_FORWARD_HOST=""
#SERVER_FORWARD_PORT=22
#SERVER_FORWARD_KEY="/usr/local/NX/share/client.id_dsa.key"


# FreeNX with ENABLE_NOMACHINE_FORWARD_PORT="1" will automatically forward all
# connections to the commercial NoMachine nxserver installed on the same
# machine, which go in by port NOMACHINE_FORWARD_PORT. This feature is introduced
# to enable the usage of FreeNX and NoMachine NX side by side on the same machine
# without conflicts.
#
# Note: You need to let SSHD listen to several ports to make use of this
#       directive.

#ENABLE_NOMACHINE_FORWARD_PORT="0"
#NOMACHINE_FORWARD_PORT="22"

#NOMACHINE_SERVER="/usr/local/NX/bin/nxserver"
#NOMACHINE_NX_HOME_DIR="/usr/local/NX/home/nx"


# LOAD BALANCING
# ==============
#
# To do load balancing setup some hosts in LOAD_BALANCE_SERVERS and
# make:
#
#   - either sure that all incoming connections are sent to the master
#     server by using forwarding directives on the "slave" servers.
#
#   - or share the session database space via NFS between the servers.
#     (not recommended at the moment as race conditions for DISPLAYs can
#      occur)
#

#LOAD_BALANCE_SERVERS=""

# The following load_balance_algorithms are available at the moment:
#
# "load", "round-robin", "random"
#

#LOAD_BALANCE_ALGORITHM="load"

# By setting ENABLE_LOADBALANCE="1" you can let users choose their
# preferred host, while being forwarded to another server. Of course
# this is just a preference. The loadbalancing algorithm can completely
# choose to ignore the users choice.

#ENABLE_LOAD_BALANCE_PREFERENCE="0"

#########################################################################
# Services directives
#########################################################################

# FreeNX with ENABLE_ESD_PRELOAD="1" will automatically try to setup
# the sound with the help of the esd media helper.
#
# Currently ESD will be used just by the Windows NX Client.
#
# Be sure that $ESD_BIN_PRELOAD is in your path, does exist and work
# before enabling this directive.

#ENABLE_ESD_PRELOAD="0"
#ESD_BIN_PRELOAD="esddsp"

# FreeNX with ENABLE_ARTSD_PRELOAD="1" will automatically try to setup
# the sound with the help of the artsd media helper.
#
# Currently ARTSD will be used just by the Linux NX Client.
#
# Be sure that $ARTSD_BIN_PRELOAD is in your path, does exist and work
# before enabling this directive.

#ENABLE_ARTSD_PRELOAD="0"
#ARTSD_BIN_PRELOAD="artsdsp"

# FreeNX with ENABLE_KDE_CUPS="1" will automatically write
# $KDE_PRINTRC and put the current used port into it.
# $KDE_PRINTRC is automatically calculated if its not set.

#ENABLE_KDE_CUPS="0"
#KDE_PRINTRC="$KDEHOME/share/config/kdeprintrc"
#CUPS_ETC="/etc/cups"

#########################################################################
# Path directives
#########################################################################

# USER_FAKE_HOME is the base directory for the .nx directory. Use this
# parameter instead of the users home directory if $HOME is on a NFS share.
# Note that this directory must be unique for every user! To accomplish this
# it is recommended to include $USER in the path.
#USER_FAKE_HOME=$HOME

# Add the nx libraries to LD_LIBRARY_PATH before starting nx agents.
# WARNING: This will NOT (and should not) affect applications. ONLY Disable
# this if the nx libraries are in a standard system path (such as /usr/lib)!
#SET_LD_LIBRARY_PATH="1"


# The command binary for the default window manager. If set it is run when a
# 'unix-custom' session is requested by the NX Client and an application
# to run is specified. It defaults to empty (ie no WM is run).
# If KILL_DEFAULT_X_WM is set the WM is terminated after the started
# application finishes. Else FreeNX will wait for the WM to complete.
#DEFAULT_X_WM=""
#KILL_DEFAULT_X_WM="1"

# When a 'unix-default' session is requested by the client the user's X startup
# script will be run if pressent and executable, otherwise the default X
# session will be run.
# Depending on distribution USER_X_STARTUP_SCRIPT might be .Xclients, .xinitrc
# and .Xsession
# Depending on distribution DEFAULT_X_SESSION might be /etc/X11/xdm/Xsession,
# /etc/X11/Sessions/Xsession or /etc/X11/xinit/xinitrc
#USER_X_STARTUP_SCRIPT=.Xclients
#DEFAULT_X_SESSION=/etc/X11/xdm/Xsession

# The key that contains the name of the script that starts a KDE session.
# It's run when a 'unix-kde' session is requested by the client.
COMMAND_START_KDE=startkde

# The key that contains the name of the script that starts a gnome session.
# It's run when a 'unix-gnome' session is requested by the client.
#COMMAND_START_GNOME=gnome-session

# The key that contains the name of the script that starts a CDE session.
# It's run when a 'unix-cde' session is requested by the client.
#COMMAND_START_CDE=cdwm

# The key that contains the name of the complete path of command name
# 'xterm'. It is run when a unix "xterm" session is requested by the
# client.
#COMMAND_XTERM=xterm

# The key that contains the name of the complete path of command name
# 'xauth'.
#COMMAND_XAUTH=/usr/X11R6/bin/xauth

# The key that contains the name of the complete path of command name
# 'smbmount'.
#COMMAND_SMBMOUNT=smbmount

# The key that contains the name of the complete path of command name
# 'smbumount'.
COMMAND_SMBUMOUNT=smbumount

# The key that contains the name of the complete path of the 'netcat' command.
#COMMAND_NETCAT=netcat

# The key that contains the name of the complete path of the 'ssh' and
# 'ssh-keygen' command.
#COMMAND_SSH=ssh
#COMMAND_SSH_KEYGEN=ssh-keygen

# The key that contains the name of the complete path of the 'cupsd' command.
#COMMAND_CUPSD=/usr/sbin/cupsd

# The tool to generate md5sums with
#COMMAND_MD5SUM=md5sum

#########################################################################
# Misc directives
#########################################################################

# When you installed a 2.0.0 NX Backend, set this to 1.
#ENABLE_2_0_0_BACKEND="0"

# When set to 1 this will automatically resume started sessions
#ENABLE_AUTORECONNECT="0"

# When set to 1 this will automatically resume started sessions
# but only if an older client version is used
#ENABLE_AUTORECONNECT_BEFORE_140="1"

# When set to 1 exports NXUSERIP / NXSESSIONID in nxnode
#EXPORT_USERIP="0"
#EXPORT_SESSIONID="1"

# This can be set to any executable, which is started after session startup
# like: $NODE_AUTOSTART {start|restore}
#NODE_AUTOSTART=""

# When set to 1 will start nxagent in rootless mode.
#ENABLE_ROOTLESS_MODE="1"

# If enabled writes entries via the COMMAND_SESSREG program
# into utmp/wtmp/lastlog database.
# Note: You have to make sure that you add the nx user to the
#       utmp or tty group or how its called on your system
#       before this directive works.
#ENABLE_USESSION="0"
#COMMAND_SESSREG="sessreg"

# Extra options sent to the different nx agents. See !M documentation
# for examples of useful parameters.
#AGENT_EXTRA_OPTIONS_RFB=""
#AGENT_EXTRA_OPTIONS_RDP=""
#AGENT_EXTRA_OPTIONS_X=""

# The number of seconds we wait for the nxagent to start before
# deciding startup has failed
#AGENT_STARTUP_TIMEOUT="60"

# The font server the agent will use. If set to "" no font server is used.
# For this to do any good, the client has to have the same font server set
# in /etc/X11/XF86Config
#AGENT_FONT_SERVER=""

# Disable or enable use of 'tcp nodelay' on proxy. Old versions of Linux
# kernels have problems using this option on sockets that will cause a loss
# of TCP connections. This option is not set by default to allow clients to
# specify whether to enable or disable TCP nodelay. Setting this option to
# the value of "0" NX proxy avoids using 'tcp nodelay' but it will cause a
# loss of interaction in sessions.
#PROXY_TCP_NODELAY=""

# Extra options to nxproxy. See !M documentation for useful parameters.
#PROXY_EXTRA_OPTIONS=""

вчем косяк помогите запустить плиз!!!

Высказать мнение | Ответить | Правка | Cообщить модератору

Оглавление

Сообщения по теме [Сортировка по времени | RSS]


1. "как установить и настроить nxserver"  +/
Сообщение от sHaggY_caT (ok) on 13-Окт-10, 22:01 
> вчем косяк помогите запустить плиз!!!

Почитайте документацию etersoft-а, там все исчерпывающе, по настройке FreeNX, описано.
И.. лучше ставить FreeNX с патчами Etersoft'а, он свободный и бесплатный, а еще, wine@etersoft + 1c + фря это маразм, и не поддерживается тем же Etersoft'ом. Хотите себе бесплатный глюкодром на свою голову?

Они рекомендуют, в первую очередь, ALT или Ubuntu, но и ту же CentOS, на которой у нас у трех клиентов успешно крутится терминалка с 1с-семеркой, тоже поддерживают.

З.Ы. KDE не нужен, бухи от него звереют: юзайте бесшовный режим.


Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

2. "как установить и настроить nxserver"  +/
Сообщение от metnek (ok) on 13-Окт-10, 22:36 
>> вчем косяк помогите запустить плиз!!!
> Почитайте документацию etersoft-а, там все исчерпывающе, по настройке FreeNX, описано.
> И.. лучше ставить FreeNX с патчами Etersoft'а, он свободный и бесплатный, а
> еще, wine@etersoft + 1c + фря это маразм, и не поддерживается
> тем же Etersoft'ом. Хотите себе бесплатный глюкодром на свою голову?
> Они рекомендуют, в первую очередь, ALT или Ubuntu, но и ту же
> CentOS, на которой у нас у трех клиентов успешно крутится терминалка
> с 1с-семеркой, тоже поддерживают.
> З.Ы. KDE не нужен, бухи от него звереют: юзайте бесшовный режим.

я free BSD-у сам компильнул я просто никогда неработал во фреенксе freenx а мануала там нету
у мня фриипзда лучше всех пингвинов работает да с zfs круто работает так что мне нужно чтобы фринкс работал на фрибсде так как в zfs сохранность информации намного выше!

Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

3. "как установить и настроить nxserver"  +/
Сообщение от sHaggY_caT (ok) on 13-Окт-10, 23:29 
> я free BSD-у сам компильнул

Ничего не поняла,

> я просто никогда неработал во фреенксе freenx
> а мануала там нету

Читайте внимательно документацию Этерсофта, все там есть, и заводится с пол-пинка.
Мы можем помочь (не бесплатно, конечно), а можете купить у них самих купон на внедрение.

> у мня фриипзда лучше всех пингвинов работает

Знаете, нужно правильный инструмент подбирать под задачу, а не задачу под инструмент, если Вы не религиозный фанатик, конечно.

> да с zfs круто работает

Что значит "круто" в контексте данной задачи? Имхо, в данном случае, особенно, если 1с-ина файловая, нужна высокая производительность по i/o, которую Zfs(да и btrfs, конечно, тоже), в отличие от UFS, XFS, ext3, ext4 (или вообще raw device для SQL) выдать не сможет просто по своей природе.

> так что мне нужно чтобы фринкс работал на фрибсде так как
> в zfs сохранность информации намного выше!

Для сохранности информации используйте, прежде всего, ECC память, и офф-сайт бэкап за пределы дата-центра или офиса размещения сервера, все остальное, в т.ч. сквозные контроли четности, особенно на несерверном железе(какое у Вас, конечно, не знаю), отлукавого!

Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

5. "как установить и настроить nxserver"  +/
Сообщение от metnek (ok) on 15-Окт-10, 23:42 
>[оверквотинг удален]
> если 1с-ина файловая, нужна высокая производительность по i/o, которую Zfs(да и
> btrfs, конечно, тоже), в отличие от UFS, XFS, ext3, ext4 (или
> вообще raw device для SQL) выдать не сможет просто по своей
> природе.
>> так что мне нужно чтобы фринкс работал на фрибсде так как
>> в zfs сохранность информации намного выше!
> Для сохранности информации используйте, прежде всего, ECC память, и офф-сайт бэкап за
> пределы дата-центра или офиса размещения сервера, все остальное, в т.ч. сквозные
> контроли четности, особенно на несерверном железе(какое у Вас, конечно, не знаю),
> отлукавого!

Люди что вы мне говорите какой я глупый ! Я недурак платить за rx@etersoft пошли они на х... мне нужна полная халява что мы хуже их чтоли ! FreeNX бусплатная утилита мне просто нужно чтобы вы подскахали как ее запутить ! ЕЕ а не другой софт который вы там за бабки рекламируете засньте своЮ рекламу куды подальше это форум а не рекламный стэнд! Я уже разобрался и все работает ! А насчет ZFS природа там нормальная для sql можно использовать mysql а вот почему именно zfs за то что можно слегкостью инфу востановить для баз 1с это классное решение! В топку ваши советы это несоветы а навязываение своего софта ! Когда хош узнать то шо те надо все пишут всякую хе....! Удачи рекламные агенты!!!

Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

7. "как установить и настроить nxserver"  +/
Сообщение от sHaggY_caT (ok) on 15-Окт-10, 23:49 
> Люди что вы мне говорите какой я глупый ! Я недурак платить
> за rx@etersoft пошли они на х...

Он свободный и бесплатный. Но можно купить саппорт, о чем и написано на их сайте, но это я Вам и не предлагала.

Кроме того, без wine@Etersoft 1с-ина нормально все равно не работает в терминале, там куча проблем с фокусом и др(некоторые решаются воровством винды и ее dll-к, к чему неизбежно придеруться проверяющие легальность софта, если придут более-менее грамотные спецы из управления "К", которые не боятся никсов), в результате которых бухи Вас проклянут, в контору пригласят вендо-интегратора, и контора купит и Win Server, и терминальные лицензии, и клиенские, а, заодно, и внедрение 1с-ины за солидную стоимость, только на волне проблем от Вашей глупости.

> В
> топку ваши советы это несоветы а навязываение своего софта ! Когда
> хош узнать то шо те надо все пишут всякую хе....! Удачи
> рекламные агенты!!!

Я уже поняла, что Вас интересует процесс(с секса с FreeBSD, ZFS, и wine), а не результат(решение поставленной задачи). Слабо через 6 месяцев после запуска в production опубликовать где-нибудь информацию о Вашем внедрении с контактами конторы, что контора Вас не ненавидит, не послала на три буквы из-за многочисленных проблем которые Вы неизбежно наживете, а, наоборот, очень довольна?


Зачем Вы вообще разместили этот пост, если Вам не нравится критика? Я практически не слышала о внедрениях вроде Вашего (и не слышала о успешных) вместе с тем, по стандартной схеме (в которой фряхи и ZFS нет, как это не обидно фанатикам), успешные внедрения измеряются в сотнях штук.

З.Ы. Кстати, Вы не прокомментировали вопрос про оборудование: Если Вы так экономите на всем, можно подозревать, что у Вас не серверное железо, а просто мощная(?) рабочая станция без ECC памяти. А если так, то сквозной контроль целостности ZFS просто-напросто бесполезен и вреден, так как Вы не можете гарантировать того, что в любой момент на диски ляжет уже испорченная, в ОЗУ, информация.

З.З.Ы. Конечно, мой ответ вызывает у Вас злость, но всего через пару месяцев Вы поймете, как заблуждались, повзрослеете, и, даже если и не вспомните меня добрым словом, на другом внедрении, что бы оно не закончилось Epic Failo'м, будете использовать отработанные решения, которые работают, а не с котороми есть желание поиграться!

Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

9. "как установить и настроить nxserver"  +/
Сообщение от DeadLoco (ok) on 16-Окт-10, 15:15 
> еще, wine@etersoft + 1c + фря это маразм, и не поддерживается
> тем же Etersoft'ом. Хотите себе бесплатный глюкодром на свою голову?

Еще непременно будет извращенный сех с хаспом по причине отсутствия порта во фре. Сам потоптался на этих граблях в свое время. Для себя решил, что если уж фря, то лучше безголовый виртуалбокс с вендой внутре, даже с двумями вендами - на одной одноэс и терминалка, на другой - базы. Зато обслугой одноэса может заниматься человек, незнакомый с никсами. А от "К" можно уберечься криптованием контейнеров, дхцп и ручным стартом с разделяемыми ключиками.

Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

4. "как установить и настроить nxserver"  +/
Сообщение от log (ok) on 14-Окт-10, 11:01 
Весь конфиг закомментирован, это неправильно.
Вообще, да, вам сюда http://wiki.etersoft.ru/RX/install?v=o7g  
Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

6. "как установить и настроить nxserver"  +/
Сообщение от metnek (ok) on 15-Окт-10, 23:44 
> Весь конфиг закомментирован, это неправильно.
> Вообще, да, вам сюда http://wiki.etersoft.ru/RX/install?v=o7g

Спасибо за совет log обязательно посмотрю
и отпишусь спсибо!!!

Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

8. "как установить и настроить nxserver"  +/
Сообщение от log (ok) on 16-Окт-10, 10:23 
>> Весь конфиг закомментирован, это неправильно.
>> Вообще, да, вам сюда http://wiki.etersoft.ru/RX/install?v=o7g
> Спасибо за совет log обязательно посмотрю
> и отпишусь спсибо!!!

Да не за что.
Кстати, совет о приобретении Wine@Etersoft поддерживаю.
Так же советую прислушаться к тому, что не надо цепляться за фряху в данном конкретном случае. По поводу сохранности данных -ежедневные/ежечасные бекапы спасут отца русской демократии.

Высказать мнение | Ответить | Правка | ^ | Наверх | Cообщить модератору

Архив | Удалить

Рекомендовать для помещения в FAQ | Индекс форумов | Темы | Пред. тема | След. тема




Партнёры:
PostgresPro
Inferno Solutions
Hosting by Hoster.ru
Хостинг:

Закладки на сайте
Проследить за страницей
Created 1996-2024 by Maxim Chirkov
Добавить, Поддержать, Вебмастеру