| | |||||
| ||||||||
| Webmaster Tutorials Instructional webmaster-related how-to's and tutorials. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Account Suspended Join Date: Dec 2008 Location: Boston, Ma
Posts: 650
![]() ![]() ![]() ![]() ![]() ![]() | Commands all cPanel for Linux admins should know Commands all cPanel for Linux admins should know Tips that every cPanel for Linux admin should know. | PHP Tips and Linux Tips These are common commands that I think all Linux for cpanel admin should know, some are just linux commands but quite handy anyway. Note: Never use the command line unless you know Linux quite well. Update Awstats and Webalizer for a certain user: /scripts/runweblogs username Set all files in a directory recursively to secure permissions. Never do at root level. find . -type d -exec chmod 755 {} \; find . -type f -exec chmod 644 {} \; This corrects file owerships for webusers: /scripts/chownpublichtmls ????: NamePros.com http://www.namepros.com/webmaster-tutorials/655079-commands-all-cpanel-linux-admins-should.html Update cPanel via command line: /scripts/upcp Edit root cron jobs command line: crontab -e Change default linux editor (I selected VI): VISUAL=vi;export VISUAL;EDITOR=vi;export EDITOR; Edit commands to run at boot time: vi /etc/rc.local Fix cPanel license after hostname change (I run at boot time): /usr/local/cpanel/cpkeyclt Clone directory to another directory (Permissions and all): rsync -rHDgopt --progress /sourcedirectory/* /destinationdirectory Backup only php files recursively and retain directory structure: find . -name '*.php' | xargs tar -rf BACKUP.tar; Import large SQL files faster: mysql -u db_user_here -p'db_pass_here' db_name_here < Name_Of_Backup_File.sql Export large SQL files faster: mysqldump -u db_user -p'db_pass' db_name > Name_Of_Backup_File.sql Limit webuser resources (cpu / memory / etc): vi /etc/security/limits.conf Edit mysql configuration file: vi /etc/my.cnf Edit php.ini: vi /etc/php.ini |
| |
| | #2 (permalink) |
| New Member Join Date: Apr 2010
Posts: 10
![]() | Helpful guide, thanx for sharing.
__________________ Computer Tips |
| |