Forum Moderators: bakedjake
Anyways I can't seam to connect to my server externally. In the set up I allowed www, telnet and ssl connections. I didn't check the box beside eth0 (my card I assume) as I read that for security reasons you shouldn't.
What's the next step here? Are there files that I need to edit or something before anyone can get in and do anything? I can't even seem to connect to mysql when I'm on the machine.
I've read a bit but I'm thinking there's something small I'm missing.
Thanks.
As for mysql, try opening a shell and typing...
mysql_install_db
This is a one off command so you dont need to run it again.
Then type...
safe_mysqld --user=root &
This should start mysql running.
Hope this helps.
Mack.
Things should go much smoother now. I was just wondering why I can [123.123.123.123...] my computer via a browser but can't ftp or telnet into it. I was sure that I had set that all correctly in the initial setup but I can't seem to get in. (haven't tried ssl yet)
Do I have to run a FTP server of some sort? Telnet server?
I have been reading stuff for the past couple days so dont think that I'm one of those guys looking for answers without doing any work ;)
Thanks again...
In your /etc directory there's a init.d/ or rc.d/ directory. There you find the scripts available to run at boot and shutdown. And you find directories named rc1.d/, rc2.d/ and so on. These directories represent the runlevels of your system. So if you are running a server without an X system the important runlevel for you is 3 (with X it would be 5).
For each process there are 2 files:
1st is named S##$processname
Where S stands for start, the higher the 2digit number is, the later the process will be started during bootup and then comes the name of the file which is in you rc.d/ or init.d/ directory.
2nd is named K##$processname
K is for kill number means the lower, the later it will be shut down and then again the process name.
For each started process there should also be a kill in one of you "basic" runlevels because else you could loose data while shutting down or rebooting.
There's much more about this. If you have any further questions, just ask :-)
So long...
CT