Unix новичок здесь, установка MYSQL.
В соответствии с указаниями от администратора сервера, я просто добавил две строки в конце моего .cshrc файл для создания 2 новых переменных окружения:
setenv MYSQL_UNIX_PORT /home/userX/mysql.sock
setenv MYSQL_TCP_PORT 11023
далее в инструкции сказано
затем сделайте ' source .cshrc ' для изменений, которые вы только что сделали.
вот результат:
server.edu(45): source .cshrc
: Command not found.
exit: Badly formed number.
в чем ошибка? Почему команда не найдена?
любой помощь очень ценится.
Спасибо.
#
# $Header: /src/common/usc/skel/RCS/dot.cshrc,v 1.5 1994/06/20 20:48:05 ucs Exp $
#
#
# If this is not an interactive shell, then we exit here.
#
if (! $?prompt) then
exit 0
endif
#
# RC Revision Date
#
set rcRevDate=930824
#
# Set User Level of expertise.
#
set UserLevel=novice
###############################################################################
#
# Source a global .cshrc file.
#
# DO NOT DELETE THIS SECTION!
#
# If you wish to customize your own environment, then add things AFTER
# this section. In this way, you may override certain default settings,
# but still receive the system defaults.
#
if (-r /usr/lsd/conf/master.cshrc) then
source /usr/lsd/conf/master.cshrc
else if (-r /usr/local/lib/master.cshrc) then
source /usr/local/lib/master.cshrc
endif
###############################################################################
#
# Put your changes/additions, here.
#
setenv MYSQL_UNIX_PORT /home/user/mysql.sock
setenv MYSQL_TCP_PORT 51023