Jump to content
xisto Community

aciminsk

Members
  • Content Count

    19
  • Joined

  • Last visited

Everything posted by aciminsk

  1. OK, Dreamveawe seems to achive overall support. Let me throw a stone. What I don't like about dreamveawer.When doing ASP pages I finally gave up attempts to use Dreamveawer asp features. It's easier to learn ASP then to figure out how to use them in Dreamveaver. So I do it old good manual way. (Luckily, there are not so many options for PHP, so did not waist time trying to use them).Not sure about the latest Dreamveawer, but the one I have (Do not remember the release, the last one wich did not require activation) does not handle css properly (One more reason why I started to use notepad).FTP feature of Dreamveawer is stripped off. You could not set it to view hidden files like .htaccess for example.Yes, it's feature rich, but it takes time to learn how to use it so it does things for you. And in many cases it's easier to learn how to do the same things yourself
  2. Agree, if you want to keep you password and user name secure, you shoud use ssh. Telnet sends all the information unencrypted and is a big hole for peepers. As for the ssh client for Windows, it's available at ssh home site. Other third party options are available as well. I'm using SecureCRT.
  3. As probably many did, I have started my first site in Front Page. Was wery proud of it for a couple of month untill realised that it's just junk. Moved to DreamVeawer later on and still am using it. FireWorks for graphics. But lately I've cought myself more and more using notepad (Notepad++). Somehow it's easier for me to work with PHP code in simple, or better colored text.
  4. Do they require something for exchange for their service? I mean for example, banner or text link or something else? And what if the site does not have IP address?
  5. So, reinstall the whole stuff from scratch. Yes, and not once, but still with the same failure result when trying to enable logical RAID5 drives. Chill out guys, I’m not going to tell the whole story from the very beginning, though there were quite a few rakes that I’ve luckily avoided during my first install, but did not miss later on. Just the solution. Turned out to be not soft but hard related. One of the physical SCSI hard drives failed. Took some efforts to figure out which of twelve. So, finally I have ended up removing two and replacing one. Besides I’ve changed NetRAID configuration to 1xRAID1 and 1xRAID5 logical drives. After this I did the base system installation already by heart. As to the final system, I’ve done it a little bit different. Instead of installing prepackaged Apache+MySQL+PHP+GD bundle, I got the latest releases of each and did three steps configure – make – make install for each. A bit time consuming and no automatic updates. But it will serve for awhile.Seems as if that’s the end. Unless I recall something worth telling
  6. So, the next task is to enable remaining two RAID5 logical drives. And I want do it from the comfort of my chair. OKOn the Debian box open SU terminal and do#ssh user@192.xxx.xxx.xxx // to connect to the serverNo problems, just supply the password and you are in. Now, to partition the disk you have to have admin rights. Should not be difficult.$su //Switch to super user mode, worked fine on my Debian machineResponce is ...Well, no responce and no SU. OK, once more... No responce, no SU. RTF1300pagesM. Found the reason on page 428. Turns out that in FreeBSD to be able to switch to SU mode, the user must belong to WHEEL group. Fine. Now, How to assign my User to the WHEEL group? Turns out 1300 pages are not enough to explain. Read the f****g pw manual page. Took some time to make up sense out of 100 or so switches options and what else and several runs to the server to log-on as root to came up with the command I need. (See some of you smiling).#pw usershow -n User -P //to see human description of User's properties#pw usermod -n User -g wheel //To assign Users to wheel groupGood, done. Back to my chair and back to configuring the drives. Handbook comes handy. Chapter 16.3 at page 536 lists three options to add disks, one for dummies, and two for users. Who am I? Well, after all I've gone through definitely not a dummy. So, go to section 16.3.2.2 "Dedicated" and look at method 1. Easy, I can do it. Strictly follow the steps... No luck. OK, may be method 2 is better. Try it. No luck. Well, probably I've overestimated myself a little bit. Go back to Section 16.3.1 "Using sysinstall" (For dummies). Follow the guidance to configure both my RAID5 drives, commit changes, reboot.What a surprise! After spitting at me quite a few error messages, my so well behaving so far server went into single user mode. After 20 min of trying to make use of it, I've decided that 30 min installation is not that bad after all. So, one more installation. Though next time...
  7. So, what did I finally get after all the above? Here is the layout.Decommissioned HP NetServer LH3000U, with two P4/1.2GHz processors, RAM 4GB, NetRaid SCSI controller and 12 SCSI physical hard drives configured into three logical drives, 5GB RAID1 and 2x90GB RAID5 drives, connected to a small test w2K3 LAN. (You might guess that I have thrown in quite a few of available resources scattered around in a Network Center). The server has been happy with FreeBSD6.0.The Apache2.4+MySQL+PHP4+GD bundle has been installed, slightly configured and properly serving test pages. X server has been running serving as Gnome so KDE. SSHD has been running giving me an option to access the server from a remote workstation. The only tail to cut was those 2x90GB RAID5 logical drives. As one might guess I have installed everything on one 5GB RAID1 logical drive planning to enable other two later on.That’s where the problems started…
  8. ^^^ AgreeGood addon. Thanks. Though if you want the latest version of Apache+mysql+php+perl+gd +Whatever else you want Bundle, you will have to download and install it manually. The shadow site of this kind of installation is that you would not be able to update it using BSD pkg system.
  9. Yes, decommissioned HP Netserver LH3000u. (Huge box btw) I have mentioned it somewhere at the beginning As you might have guessed, it's not the end of the whole story. What would be better, continue it here or start a new thread?
  10. Well, the story of success seems to become a little bit boring. So, to wrap it up, a final touch. When the feet started to feel mileage of running between server and workstation, I’ve configured ssh (Secure Shell). Men, I was impressed. Add terminal Server Client for W2K3, and you can access W2K3 and BSD servers from the comfort of your armchair… Cool!Next time I'll start discovering the rakes....
  11. So, where did I leave?Yeah, about happy end... Not yet. I have to use the server for something. So, let's add some useful stuff and do a test web server. Easy.#pkg_add -r mcAnd you have Midnight commander.#mcWorks, great...#pkg_add -r mysqlA little bit of humming, installed.#cd /user/local/bin#mysql_safe --user=mysql &No error messages#ps -ax | grep mysqlLists mysql daemon running. Great#mysqladmin -u root statusStatistics displayed. CoolLet's do Apache#pkg_add -r apache2Brake for a smoke, done#/usr/local/sbin/httpd -k startNo error messages. Good#ps -ax | grep httpdapache daemon running. Go to my Debian machine, open Mozilla, type in URL192.xxx.xxx.xxxGet this lovely Apache feather. Think that I'm probably not that bad in BSDDo PHP. Go back to the server...#pkg_add -r phpYees, done#vi test.phpmake this little test file<?php phpinfo()?>Save it to the apache document root. Go back to my Mozilla, type in192.xxx.xxx.xxx/test.phpHere you are. I'm php info page, I'm here....One might say that it just could not be that easy and fast. Yeah, but who cares about those little shadows during the happy hour?Well, enough for today.Still to be continued if you do not mind...
  12. May be later on. When the saga is over Yeah, know it's foollish. But sometimes could not resist doing foollish things
  13. A couple more jokes...Did you ever know, that one Therapist equals to 1024 Gigapists and to 1048576 MegapistsWhat is the difference between a user and a programmer?The user thinks, that there are 1000KB in 1MB.The programmer is sure that there are 1024 m in one Km
  14. OK, show goes on... I went to https://www.freebsd.org/, spent some time looking around, reading to make sure I know what I'm doing. Though quite a few questions, it did not look too scary, so I went to http://forums.xisto.com/no_longer_exists/ and grabbed all three disk images (ISOs ) of FreeBSD6.0, which was the latest at that time. One for basic system and network install, and two for complete distribution (Doesn't it seem, well... a little bit too light-weight comparing to 14 CDs Debian distribution?) just in case network install does not work. Burned CDs on my Debian machine. Then I have opened FreeBSD handbook as a single file from http://forums.xisto.com/no_longer_exists/, saved it to the local disk and hit Print. (This has been the first rake I've stepped on. For those who wonders how rakes are related to the subject you might wish to check up the thread at http://forums.xisto.com/topic/88591-topic/?findpost=1064337135 for explanation. The HandBook turned out to be 1300 plus pages, took several hours to print out on an HP DeskJet, has eaten month's supply of paper and cartridges). Everything seems ready to commence the installation. Popped Network Install CD into the retired guy, reboot. Carefully reading prompts, suggestions and handbook and mainly accepting defaults has completed base system installation in about twenty min, another 15 min for initial configuration like creating a user. Another reboot and here you are, welcome, please login. Too good to be true. Nevertheless, I'm logging-in as root. It works. Running some basic commands like ls and ps, works. What about something more complicated? Starting GNOME? Works. KDE? Works, got this beautifull masterpice of GUI design. Unbelievable. Happy end? Well, I'll tell you next time
  15. Then a little bit more. Again my loose translation System administrators' services price list Asking a question - $10 Asking a stupid question - $20 Asking a stupid question which you could not express clearly - $30 Asking a question on the phone before reading Help - $10 Asking questions explained in User's manual - $100 Asking the same question again - $100 Request to come to your desk - $5/step Being interrupted while working on other problem - $45/hour If you insist on resolving your problem right now - $50/hour If you expect that I'll explain how did I solve your problem - $60/hour If you report a problem which I'm trying to resolve at the moment. - $70/hour If you ask to fix a problem that was fixed yesterday. - $75/hour Fixing you broken mouse by cleaning - $50 Fixing your broken printer by replacing the cartridge - $35 Fixing whatever is broken by using power switch to turn it on - $250
  16. I need hosting. Well, how to get those golden points? Hope you wouldn’t mind if I tell my FreeBSD story.A little foreword. I’m working in a pure MS shop, where Open Source is big NO-NO. Nevertheless I have a small test-bed LAN where I can test whatever I think is appropriate. Lately not the latest and greatest but quite decent server has been decommissioned. I had been using Debian Linux workstation already for quite a while, so I’ve decided to setup a Debian Linux server into W2k3 LAN. Honestly, I don’t like to give up, but this time I had to. The machine is HP Netserver LH3000 U3. The older Debian distribution version (Called woody) installs base system but does not recognize NIC, so I could not connect to mirror site to continue installation. The newer stable version completely refuses to recognize NetRAID controller and does not go even as far as the base system. Describing everything what I’ve tried would be way too long, so just the result. I’ve given up. What’s next to try? The criteria was that it should be not as huge as Debian (The whole distro is 14 CDs), and it should be somewhere nearby so that it would not take me forever to download. It turned out to be FreeBSD.Hope you would not mind if I continue later on….
  17. Thanks for reminder (really thanks). Shall try my best to abide the rules
  18. Greets and thanks for warm welcome. Looking for spring and trying to figure out how to get those golden points to get hosted. Cheers neighbour
  19. Hello to everybody.Have found this site when searching for hosting. Browsed the forum for awhile, liked the community. Signed up.
  20. Well, some input from Russian computer geeks' folklore (My loose translation), if you would not mind...1. User is a person who steps on the rake> 2. Dummy is a user who did not step on the rake as yet and so he is sure that there are no rakes at all.> 3. Luser is a user who regularly steps on the rake, but who is still sure that no rakes exist.> 4. Narrow specialist is a user who has mastered in stepping on the same rake.> 5. Programmer is a person for whom in the process of stepping on the rake the most important thing is the result. Getting tired of stepping on somebody's rake he invents his own rake.> 6. Advanced programmer is a programmer who steps on the same rake no more then twice.> 7. Copyright is a concept, which limits the number of available rakes by the financial abilities of the user.> 8. Gamer is a user for whom in stepping on the rake the most important is the process itself. As a rule the gamer cannot make the rake of his own.> 9. Cheater is special kind of gamers, who prefers rakes with soft pads and usually does not step on the same rake more then once.> 10. Hacker is a person who can step on the rake even if it's hidden in a shed and locked by a pad-lock.> 11. Hacker idealist is a noble fighter for the everyone's right to step on the unlimited number of rakes.> 12. Microsoft is a corporation, worldwide leader in manufacturing the rakes.> 13. Bill Gates is a mythical creature from programmers' folklore. Malicious spirit who is the patron of the rakes.> 14. Upgrade is a never-ending process of spending money on buying new rakes, each of which hurts more then previous.> 15. Beta version is a version where rake could be seen from the first glance.> 16. Release is a version where the rake is hidden under the leaves.> 17. Versions compatibility is a principle, which insures that the new version of rake hits the same spot as the previous one.> 18. Assembler is a programming language which enables stepping on the rake several millions times per second.> 19. Local Area Network is a technology, which enables an opportunity to get hit even if somebody else has stepped on the rake.> 20. Internet is a technology, which enables one to step on a rake even if the rake is located on the other side of the globe.> 21. Lamer is a user, who concideres himself a very advanced user. He thinks he knows all the rakes in the world and knows how to avoid them. Usually steps on the rake even where there is no rake at all.> 22. Multitasking is a concept which enables one to step on several rakes simalteniously.> 23 . SysAdmin (System Administrator) is a person who gets hit when any user steps on the rake
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.