How to enable commenting system in WordPress

Edit your comments.php template and add in

<ol class="commentlist">
    <?php wp_list_comments(); ?>
</ol>

This should display comments, pingbacks and trackbacks. See the Codex for wp_list_comments() for help on how to style and separate or to display just comments.