Hello,
> 1). The system does not DHCP. It comes up with a 138 address. while
> this is fine, just where is this being set? what file controls the
> network IP address?
The TS-7300 uses Debian Linux, you can refer to "Linux for ARM on TS-7000
User's Guide" for documentation on how to modify the network scripts.
For more documentation on Debian you can refer to www.debian.org.
http://www.embeddedarm.com/Manuals/linuxarm-guide-rev2.2.pdf
> 2). I cannot seem to get the apache stuff up and running. during the
> boot process, this and mysql complain. I'm an "old" unix hacker from
> way back, and have consulted my Linux books - but am unable to find
> out what the problems are. Again, the doc's i've received are pretty
> much no help. the do not correspond to the loaded system. When I try
> and hit the 192.168.1.138 adress I can ping, but not view or open any
> html access. Firefox just cannot find (or does not have access to)
> the system.
The default installation of apache-ssl on Debian requires a certificate
as https(port 443) is enabled. If you would like to use a https you
would need to install a certificate. You can refer to the apache-ssl
homepage for information on how to install a certificate.
http://www.apache-ssl.org/#Digital_Certificates
Alternatively you can disable https, to do this you will need to modify
your apache configuration file(/etc/apache-ssl/httpd.conf).
--- httpd.conf.orig 1969-12-31 17:01:33.000000000 -0700
+++ httpd.conf 1969-12-31 17:03:36.000000000 -0700
@@ -187,7 +187,7 @@
#
# The default port for SSL is 443...
-Listen 443
+#Listen 443
Listen 80
#
@@ -246,7 +246,7 @@
#
# The default port for SSL is 443...
-Port 443
+#Port 443
#
# If you wish apache to run as a different user or group, you must run
@@ -1240,9 +1240,9 @@
# If you want, you can disable SSL globally, and enable it in a virtual
# host...
#SSLDisable
-<VirtualHost _default_:443>
- SSLEnable
-</VirtualHost>
+#<VirtualHost _default_:443>
+# SSLEnable
+#</VirtualHost>
# Automatically added by the post-installation script
# as part of the transition to a config directory layout
//Eddie
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ts-7000/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/ts-7000/join
(Yahoo! ID required)
<*> To change settings via email:
<*> To unsubscribe from this group, send an email to:
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|