FreeBSD 7.1 Install - Elber - 10-21-2009 09:02 PM
Hello, I have a problem with the installation
I run make -f BSDmakefile install and go to /usr/local/www/ispcp/engine/setup next i run perl ./ispcp-setup and ERROR
Code:
pixelmeal# perl ./ispcp-setup
Use of uninitialized value in string ne at /usr/local/www/ispcp/engine/setup/../ispcp_common_methods.pl line 1772.
Use of uninitialized value in concatenation (.) or string at /usr/local/www/ispcp/engine/setup/../ispcp_common_methods.pl line 1784.
Use of uninitialized value in concatenation (.) or string at /usr/local/www/ispcp/engine/setup/../ispcp_common_methods.pl line 1784.
Generating database keys, it may take some time, please wait...
If it takes to long, please check http://www.isp-control.net/documentation/frequently_asked_questions/what_does_generating_database_keys_it_may_take_some_time_please_wait..._on_setup_mean
Use of uninitialized value in concatenation (.) or string at /usr/local/www/ispcp/engine/setup/../ispcp_common_code.pl line 58.
Use of uninitialized value in concatenation (.) or string at /usr/local/www/ispcp/engine/setup/../ispcp_common_code.pl line 58.
Use of uninitialized value in concatenation (.) or string at /usr/local/www/ispcp/engine/setup/../ispcp_common_code.pl line 58.
Can't open perl script "/keys/rpl.pl": No such file or directory
Use of uninitialized value in string ne at /usr/local/www/ispcp/engine/setup/../ispcp_common_methods.pl line 1772.
Use of uninitialized value in concatenation (.) or string at /usr/local/www/ispcp/engine/setup/../ispcp_common_methods.pl line 1784.
Use of uninitialized value in concatenation (.) or string at /usr/local/www/ispcp/engine/setup/../ispcp_common_methods.pl line 1784.
Use of uninitialized value in concatenation (.) or string at ./ispcp-setup line 55.
Welcome to ispCP '' Setup Dialog.
This program will set up ispCP OMEGA system on your server.
Next you are asked to enter a "fully qualified hostname" (FQHN).
For more infos read http://en.wikipedia.org/wiki/FQDN.
usage: hostname [-fs] [name-of-host]
ERROR: External command '/bin/hostname CMD_IFCONFIG = /sbin/ifconfig CMD_IPTABLES = no CMD_LN = /bin/ln CMD_MYSQL = /usr/local/bin/mysql CMD_MV = /bin/mv 1>/tmp/ispcp-setup.hostname' returned '1' status !
Please help my and sorry to my English
RE: FreeBSD 7.1 Install - gOOvER - 10-21-2009 09:34 PM
Which guide did you use?
RE: FreeBSD 7.1 Install - Elber - 10-21-2009 10:26 PM
(10-21-2009 09:34 PM)gOOvER Wrote: Which guide did you use?
I use this guide http://www.isp-control.net/documentation/doku.php?id=start:installation:freebsd
RE: FreeBSD 7.1 Install - gOOvER - 10-22-2009 02:01 AM
Hmmmm, this is a old one. Please use the guide, which is shipped in the archive.
RE: FreeBSD 7.1 Install - Elber - 10-24-2009 02:49 AM
No i have problem with make -f Makefile.fbsd install
Code:
# make -f Makefile.fbsd install
make: don't know how to make install. Stop
RE: FreeBSD 7.1 Install - skillcoder - 10-24-2009 10:02 PM
(10-24-2009 02:49 AM)Elber Wrote: No i have problem with make -f Makefile.fbsd install
Code:
# make -f Makefile.fbsd install
make: don't know how to make install. Stop
I have same problem.
Any suggestions ?
RE: FreeBSD 7.1 Install - Elber - 10-26-2009 04:27 AM
Help please
RE: FreeBSD 7.1 Install - kilburn - 10-26-2009 09:50 PM
Try replacing the "Makefile.fbsd" contents with the following, and report any success/errors please:
Code:
#!/usr/bin/make -f
#
# ispCP ω (OMEGA) a Virtual Hosting Control Panel
# Copyright (c) 2001-2006 by moleSoftware GmbH
# http://www.molesoftware.com
# Copyright (c) 2006-2009 by isp Control Panel
# http://isp-control.net
#
#
# License:
# This program is free software; you can redistribute it and/or
# modify it under the terms of the MPL Mozilla Public License
# as published by the Free Software Foundation; either version 1.1
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# MPL Mozilla Public License for more details.
#
# You may have received a copy of the MPL Mozilla Public License
# along with this program.
#
# An on-line copy of the MPL Mozilla Public License can be found
# http://www.mozilla.org/MPL/MPL-1.1.html
#
#
# The ispCP ω Home Page is at:
#
# http://isp-control.net
#
ifndef INST_PREF
INST_PREF=/tmp/ispcp
endif
HOST_OS=freebsd
ROOT_CONF=$(INST_PREF)/usr/local/etc
SYSTEM_WEB=/usr/local/www
SYSTEM_ROOT=$(INST_PREF)$(SYSTEM_WEB)/ispcp
SYSTEM_CONF=$(INST_PREF)/usr/local/etc/ispcp
SYSTEM_LOG=$(INST_PREF)/var/log/ispcp
SYSTEM_APACHE_BACK_LOG=$(INST_PREF)$(SYSTEM_WEB)/logs/backup
SYSTEM_VIRTUAL=$(INST_PREF)$(SYSTEM_WEB)/data/virtual
SYSTEM_AWSTATS=$(INST_PREF)$(SYSTEM_WEB)/awstats
SYSTEM_FCGI=$(INST_PREF)$(SYSTEM_WEB)/data/fcgi
SYSTEM_MAIL_VIRTUAL=$(INST_PREF)/var/mail/virtual
SYSTEM_MAKE_DIRS=/bin/mkdir -p
SYSTEM_MAKE_FILE=/bin/touch
.PHONY: install uninstall clean
export
install:
cd ./tools && $(MAKE) install
$(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_ROOT)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_LOG)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_LOG)/ispcp-arpl-msgr
$(SYSTEM_MAKE_DIRS) $(SYSTEM_VIRTUAL)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_FCGI)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_SCOREBOARDS)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_AWSTATS)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_MAIL_VIRTUAL)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_APACHE_BACK_LOG)
cd ./configs && $(MAKE) install &
cd ./engine && $(MAKE) install
cd ./gui && $(MAKE) install
cd ./keys && $(MAKE) install
uninstall:
cd ./tools && $(MAKE) uninstall &
cd ./configs && $(MAKE) uninstall &
cd ./engine && $(MAKE) uninstall &
cd ./gui && $(MAKE) uninstall &
cd ./keys && $(MAKE) uninstall &
rm -rf $(SYSTEM_CONF)
rm -rf $(SYSTEM_ROOT)
rm -rf $(SYSTEM_LOG)
rm -rf $(SYSTEM_VIRTUAL)
rm -rf $(SYSTEM_FCGI)
rm -rf $(SYSTEM_SCOREBOARDS)
rm -rf $(SYSTEM_MAIL_VIRTUAL)
rm -rf $(SYSTEM_APACHE_BACK_LOG)
#rm -rf ./*~
clean:
cd ./tools/daemon && $(MAKE) clean
rm -rf $(INST_PREF)
.PHONY: install uninstall clean
RE: FreeBSD 7.1 Install - skillcoder - 10-29-2009 06:56 AM
(10-26-2009 09:50 PM)kilburn Wrote: Try replacing the "Makefile.fbsd" contents with the following, and report any success/errors please:
Code:
#!/usr/bin/make -f
#
# ispCP ω (OMEGA) a Virtual Hosting Control Panel
# Copyright (c) 2001-2006 by moleSoftware GmbH
# http://www.molesoftware.com
# Copyright (c) 2006-2009 by isp Control Panel
# http://isp-control.net
#
#
# License:
# This program is free software; you can redistribute it and/or
# modify it under the terms of the MPL Mozilla Public License
# as published by the Free Software Foundation; either version 1.1
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# MPL Mozilla Public License for more details.
#
# You may have received a copy of the MPL Mozilla Public License
# along with this program.
#
# An on-line copy of the MPL Mozilla Public License can be found
# http://www.mozilla.org/MPL/MPL-1.1.html
#
#
# The ispCP ω Home Page is at:
#
# http://isp-control.net
#
ifndef INST_PREF
INST_PREF=/tmp/ispcp
endif
HOST_OS=freebsd
ROOT_CONF=$(INST_PREF)/usr/local/etc
SYSTEM_WEB=/usr/local/www
SYSTEM_ROOT=$(INST_PREF)$(SYSTEM_WEB)/ispcp
SYSTEM_CONF=$(INST_PREF)/usr/local/etc/ispcp
SYSTEM_LOG=$(INST_PREF)/var/log/ispcp
SYSTEM_APACHE_BACK_LOG=$(INST_PREF)$(SYSTEM_WEB)/logs/backup
SYSTEM_VIRTUAL=$(INST_PREF)$(SYSTEM_WEB)/data/virtual
SYSTEM_AWSTATS=$(INST_PREF)$(SYSTEM_WEB)/awstats
SYSTEM_FCGI=$(INST_PREF)$(SYSTEM_WEB)/data/fcgi
SYSTEM_MAIL_VIRTUAL=$(INST_PREF)/var/mail/virtual
SYSTEM_MAKE_DIRS=/bin/mkdir -p
SYSTEM_MAKE_FILE=/bin/touch
.PHONY: install uninstall clean
export
install:
cd ./tools && $(MAKE) install
$(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_ROOT)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_LOG)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_LOG)/ispcp-arpl-msgr
$(SYSTEM_MAKE_DIRS) $(SYSTEM_VIRTUAL)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_FCGI)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_SCOREBOARDS)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_AWSTATS)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_MAIL_VIRTUAL)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_APACHE_BACK_LOG)
cd ./configs && $(MAKE) install &
cd ./engine && $(MAKE) install
cd ./gui && $(MAKE) install
cd ./keys && $(MAKE) install
uninstall:
cd ./tools && $(MAKE) uninstall &
cd ./configs && $(MAKE) uninstall &
cd ./engine && $(MAKE) uninstall &
cd ./gui && $(MAKE) uninstall &
cd ./keys && $(MAKE) uninstall &
rm -rf $(SYSTEM_CONF)
rm -rf $(SYSTEM_ROOT)
rm -rf $(SYSTEM_LOG)
rm -rf $(SYSTEM_VIRTUAL)
rm -rf $(SYSTEM_FCGI)
rm -rf $(SYSTEM_SCOREBOARDS)
rm -rf $(SYSTEM_MAIL_VIRTUAL)
rm -rf $(SYSTEM_APACHE_BACK_LOG)
#rm -rf ./*~
clean:
cd ./tools/daemon && $(MAKE) clean
rm -rf $(INST_PREF)
.PHONY: install uninstall clean
Code:
[/usr/local/src/ispcp/ispcp-omega-1.0.2]# sudo make -f Makefile.fbsd install
"Makefile.fbsd", line 33: Need an operator
"Makefile.fbsd", line 35: Need an operator
"Makefile.fbsd", line 54: Need an operator
"Makefile.fbsd", line 59: Need an operator
"Makefile.fbsd", line 61: Need an operator
"Makefile.fbsd", line 62: Need an operator
"Makefile.fbsd", line 63: Need an operator
"Makefile.fbsd", line 64: Need an operator
"Makefile.fbsd", line 65: Need an operator
"Makefile.fbsd", line 66: Need an operator
"Makefile.fbsd", line 67: Missing dependency operator
"Makefile.fbsd", line 68: Need an operator
"Makefile.fbsd", line 69: Need an operator
"Makefile.fbsd", line 70: Need an operator
"Makefile.fbsd", line 72: Need an operator
"Makefile.fbsd", line 73: Need an operator
"Makefile.fbsd", line 74: Need an operator
"Makefile.fbsd", line 75: Need an operator
"Makefile.fbsd", line 80: Need an operator
"Makefile.fbsd", line 81: Need an operator
"Makefile.fbsd", line 82: Need an operator
"Makefile.fbsd", line 83: Need an operator
"Makefile.fbsd", line 84: Need an operator
"Makefile.fbsd", line 86: Need an operator
"Makefile.fbsd", line 87: Need an operator
"Makefile.fbsd", line 88: Need an operator
"Makefile.fbsd", line 89: Need an operator
"Makefile.fbsd", line 90: Need an operator
"Makefile.fbsd", line 91: Missing dependency operator
"Makefile.fbsd", line 92: Need an operator
"Makefile.fbsd", line 93: Need an operator
"Makefile.fbsd", line 99: Need an operator
"Makefile.fbsd", line 100: Need an operator
make: fatal errors encountered -- cannot continue
RE: FreeBSD 7.1 Install - server801 - 10-29-2009 11:17 PM
gmake
|