Difference between revisions of "Useradd add user"
From Wiki2
(Created page with "====useradd - setting up accounts==== useradd -d/home/sitebuil sitebuil passwd sitebuil create a publichtml and set permissions [root@openeyeworld home]# chmod 711 /home/s...") |
|||
Line 1: | Line 1: | ||
====useradd - setting up accounts==== | ====useradd - setting up accounts==== | ||
useradd -d/home/ | useradd -d/home/newdir newdir (makeit <=8 char) | ||
passwd | passwd newdir | ||
create a publichtml and set permissions | create a publichtml and set permissions | ||
cd /home | |||
mkdir /newdir | |||
chmod 711 /home/newdir | |||
cd sitebuil/ | |||
chmod ugo+rx -R public_html | |||
=====apache etc/httpd.conf setup===== | =====apache etc/httpd.conf setup===== |
Revision as of 16:06, 27 February 2013
useradd - setting up accounts
useradd -d/home/newdir newdir (makeit <=8 char) passwd newdir
create a publichtml and set permissions
cd /home mkdir /newdir chmod 711 /home/newdir cd sitebuil/ chmod ugo+rx -R public_html
apache etc/httpd.conf setup
<IfModule mod_userdir.c> # # UserDir is disabled by default since it can confirm the presence # of a username on the system (depending on home directory # permissions). # #UserDir disable # # To enable requests to /~user/ to serve the user's public_html # directory, remove the "UserDir disable" line above, and uncomment # the following line instead: # UserDir public_html </IfModule> # # Control access to UserDir directories. The following is an example # for a site where these directories are restricted to read-only. # <Directory /home/*/public_html> AllowOverride FileInfo AuthConfig Limit Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec <Limit GET POST OPTIONS> Order allow,deny Allow from all </Limit> <LimitExcept GET POST OPTIONS> Order deny,allow Deny from all </LimitExcept> </Directory>
in sites available add and entry for new domain
<VirtualHost *:80> DocumentRoot /home/abvbread/public_html ServerName www.abvbreadandroses.info # Other directives here </VirtualHost>
cd /etc/apache2/sites-enabled ln -s ../sites-available/webeshop webeshop sudo /etc/init.d/apache2 restart